/* ============================================================
   unohtumattomat — globaalit tyylit
   Teema: "polar night" — syvä muste-laivastonsininen pohja,
   aurora-grafiensävyt (teal -> violet), lämmin kulta.
   Bootstrap 5 hoitaa ruudukon/komponentit; kustomi-CSS pidetään ohuena.
   ============================================================ */

:root {
  --ink: #0c1220;
  --ink-2: #101a2e;
  --surface: #141f36;
  --surface-2: #1a2742;
  --line: rgba(255, 255, 255, 0.09);
  --text: #e9edf6;
  --text-muted: #97a3ba;
  --teal: #5eead4;
  --violet: #a78bfa;
  --gold: #e8c26a;
  --aurora: linear-gradient(115deg, #5eead4 0%, #6ea8fe 48%, #a78bfa 100%);
  --radius-lg: 1.4rem;
  --radius-md: 0.9rem;
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;overflow-x:hidden
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::selection {
  background: rgba(94, 234, 212, 0.35);
  color: #fff;
}

h1, h2, h3, .display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #9ff3e3;
}

img {
  max-width: 100%;
}

/* ---------- jaetut palaset ---------- */

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section--tight {
  padding: 4.5rem 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  color: var(--text);
  margin: 0.8rem 0 1rem;
}

.aurora-text {
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead {
  font-size: 1.12rem;
}

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

/* kuvasectiot — build-skripti täyttää tyhjät url(../images/unohtumattomat_916a766b783c1.81021097.jpg):t myöhemmin */
.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* koristeelliset hehkupallot, pelkkää CSS:ää */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.glow-orb--teal {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.55), transparent 65%);
}

.glow-orb--violet {
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.45), transparent 65%);
}

/* ohut koristerengas */
.ring-deco {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* hienovarainen yläjakaja, näyttää tarkoitukselliselta */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

/* ---------- painikkeet ---------- */

.btn-aurora {
  background: var(--aurora);
  border: 0;
  color: #081018;
  font-weight: 800;
  padding: 0.85rem 1.9rem;
  border-radius: 3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-aurora:hover {
  color: #081018;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(94, 234, 212, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  font-weight: 700;
  padding: 0.85rem 1.9rem;
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(94, 234, 212, 0.06);
  transform: translateY(-2px);
}

.btn-sm-pill {
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
}

/* ---------- yläpalkki ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(12, 18, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.site-header__topbar {
  font-size: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

.site-header__topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.site-header__topbar i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.site-header__topbar a {
  color: var(--text-muted);
}

.site-header__topbar a:hover {
  color: var(--teal);
}

.site-nav .navbar-brand img {
  height: 44px;
  width: auto;
}

.site-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  position: relative;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--aurora);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  transform: scaleX(1);
}

.site-nav .nav-link.active {
  color: var(--teal);
}

.navbar-toggler {
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1.1rem;
  padding: 0.45rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.25);
}

/* ---------- hero-osio ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  /* pehmeä häivytys seuraavaan osioon */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
}

.hero .lead {
  max-width: 34rem;
}

.stat-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(16, 26, 46, 0.55);
  backdrop-filter: blur(8px);
}

.stat-chip strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
}

.stat-chip span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-hint i {
  animation: bob 1.8s ease-in-out infinite;
  color: var(--teal);
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* pienempi hero sisäsivuille */
.page-hero {
  position: relative;
  padding: 7rem 0 5.5rem;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.page-hero .lead {
  max-width: 40rem;
}

.crumbs {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.crumbs a {
  color: var(--gold);
}

/* ---------- yleiskortit ---------- */

.glass-card {
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.icon-tile {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 1.35rem;
  color: #081018;
  background: var(--aurora);
  margin-bottom: 1.1rem;
}

.icon-tile--gold {
  background: linear-gradient(135deg, #f3d795, var(--gold));
}

/* matka- / kohde- / casino-kortit */

.offer-card {
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.offer-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-card__media img {
  transform: scale(1.06);
}

.offer-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 3rem;
  background: rgba(8, 16, 24, 0.75);
  color: var(--teal);
  border: 1px solid rgba(94, 234, 212, 0.4);
  backdrop-filter: blur(6px);
}

.offer-card__tag--gold {
  color: var(--gold);
  border-color: rgba(232, 194, 106, 0.45);
}

.offer-card__body {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.offer-card__meta i {
  color: var(--teal);
  margin-right: 0.35rem;
}

.offer-card__title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.offer-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.offer-card__list li {
  padding: 0.25rem 0 0.25rem 1.4rem;
  position: relative;
}

.offer-card__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
  top: 0.55rem;
}

.offer-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
}

.price-tag small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

/* ominaisuuslista ikoneilla */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 2rem;
  color: var(--text-muted);
}

.check-list li i {
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--teal);
}

/* tilastonauha */
.stat-big {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(20, 31, 54, 0.55);
}

.stat-big strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-big span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* vaiheet / prosessi */
.step-card {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  height: 100%;
}

.step-card__num {
  position: absolute;
  top: -1.2rem;
  left: 1.4rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--aurora);
  color: #081018;
  box-shadow: 0 8px 24px rgba(94, 234, 212, 0.3);
}

/* arvostelut */
.review-card {
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.review-card__text {
  font-style: italic;
  color: var(--text);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.review-card__author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(94, 234, 212, 0.5);
}

.review-card__author strong {
  display: block;
  font-size: 0.95rem;
}

.review-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ukk-haitari — Bootstrapin uusittu tyyli */
.faq .accordion-item {
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.faq .accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 700;
  padding: 1.15rem 1.4rem;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--teal);
}

.faq .accordion-button::after {
  /* vaihdetaan oletus-svg-nuoli FA-nuoleksi */
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  width: auto;
  height: auto;
  color: var(--gold);
}

.faq .accordion-body {
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}

/* aikajana (meistä-sivu) */
.timeline {
  position: relative;
  padding-left: 2.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--violet));
  border-radius: 2px;
  opacity: 0.6;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--teal);
}

.timeline__year {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
}

/* tiimi- ja projektikortit */
.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card__overlay {
  padding: 1.4rem;
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
}

/* disclaimer-lohko (18+) */
.disclaimer {
  border: 1px solid rgba(232, 194, 106, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(232, 194, 106, 0.07), rgba(20, 31, 54, 0.6));
  padding: 2.4rem;
}

.disclaimer h3 {
  color: var(--gold);
}

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

.disclaimer ul li {
  margin-bottom: 0.5rem;
}

.disclaimer__warning {
  margin-top: 1.6rem;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  background: rgba(220, 90, 90, 0.12);
  border: 1px solid rgba(220, 90, 90, 0.4);
}

.disclaimer__warning h4 {
  color: #f2a0a0;
}

.help-orgs a {
  margin-right: 1.4rem;
  font-weight: 700;
}

/* lomakkeet */
.form-control,
.form-select {
  background: rgba(16, 26, 46, 0.7);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.8rem 1.1rem;
  border-radius: 0.7rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(16, 26, 46, 0.9);
  border-color: var(--teal);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.18);
}

.form-control::placeholder {
  color: #6b7891;
}

.form-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.form-check-input {
  background-color: var(--surface);
  border-color: var(--line);
}

.form-check-input:checked {
  background-color: var(--teal);
  border-color: var(--teal);
}

/* inline-onnistumisilmoitus (ei koskaan alert()) */
.form-notice {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  border-radius: 0.7rem;
  background: rgba(94, 234, 212, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.45);
  color: var(--teal);
  font-weight: 600;
}

.form-notice.is-visible {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* varausmodaali */
.booking-modal .modal-content {
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.booking-modal .modal-header {
  border-bottom-color: var(--line);
}

.booking-modal .modal-footer {
  border-top-color: var(--line);
}

.booking-modal .btn-close {
  filter: invert(1);
}

/* cta-nauha */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4rem 3rem;
  background: linear-gradient(120deg, rgba(94, 234, 212, 0.14), rgba(167, 139, 250, 0.14)), var(--surface);
  border: 1px solid var(--line);
}

/* rullaava nauha etusivulla */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee__track i {
  color: var(--gold);
  margin-right: 3rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* evästebanneri — vain etusivulla */
.cookie-banner {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1050;
  max-width: 26rem;
  background: rgba(16, 26, 46, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

/* kuvakehys siirretyllä reunalla — toimii split-osioissa */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
}

.img-frame img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  width: 100%;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: -0.9rem -0.9rem auto auto;
  width: 55%;
  height: 55%;
  border: 2px solid rgba(94, 234, 212, 0.35);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.float-badge {
  position: absolute;
  bottom: 1.4rem;
  left: -1.2rem;
  z-index: 3;
  background: rgba(16, 26, 46, 0.92);
  border: 1px solid rgba(232, 194, 106, 0.4);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
}

.float-badge strong {
  color: var(--gold);
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* yhteystietokortit */
.contact-tile {
  text-align: center;
  padding: 2rem 1.4rem;
}

.contact-tile i {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 26rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 0;
  display: block;
}

/* lakiteksti-sivut */
.legal-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  margin-bottom: 1.6rem;
}

.legal-block h2 {
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
}

.legal-block ul {
  color: var(--text-muted);
}

/* ---------- alapalkki ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink), #080d18);
  padding: 4.5rem 0 0;
  margin-top: 2rem;
}

.site-footer__brand img {
  height: 48px;
  margin-bottom: 1.1rem;
}

.site-footer h5 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

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

.site-footer ul li {
  margin-bottom: 0.6rem;
}

.site-footer ul a {
  color: var(--text-muted);
}

.site-footer ul a:hover {
  color: var(--teal);
}

.site-footer__contact li {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}

.site-footer__contact i {
  color: var(--teal);
  width: 1.3rem;
}

.site-footer__contact a {
  color: var(--text-muted);
}

.site-footer__legal {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding: 1.6rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

.site-footer__bottom a {
  color: var(--text-muted);
  margin-left: 1.2rem;
}

/* some-linkit */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  margin-right: 0.6rem;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: #081018;
  background: var(--teal);
  border-color: var(--teal);
}

/* ---------- responsiivisuus ---------- */

@media (max-width: 991.98px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: 80vh;
  }

  .site-header__topbar .container {
    justify-content: center;
    text-align: center;
  }

  .float-badge {
    left: 1rem;
  }

  .cta-band {
    padding: 3rem 1.6rem;
  }
}
