/* ============================================================
   Lapland Tours — Design System
   Fonts: DM Serif Display (headings) + Inter (body)
   Palette: Snow White / Arctic Mist / Aurora Green / Arctic Blue / Golden Sunset
   ============================================================ */

:root {
  /* Backgrounds */
  --snow-white:   #FAFBFC;
  --arctic-mist:  #EEF4F7;
  --white:        #FFFFFF;

  /* Brand */
  --aurora-green: #2CB67D;
  --aurora-green-dark: #23945F;
  --arctic-blue:  #0F4C81;
  --arctic-blue-dark: #0A3A63;
  --golden-sunset:#E6A93D;

  /* Text */
  --ink:          #16232E;
  --slate:        #4A5A67;
  --stone:        #8595A1;
  --silver:       #D6E0E6;

  /* Utility */
  --shadow-sm: 0 1px 2px rgba(15,76,129,.06);
  --shadow-md: 0 6px 18px rgba(15,76,129,.10);
  --shadow-lg: 0 16px 40px rgba(15,76,129,.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --font-head: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --header-h: 68px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--snow-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--arctic-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--mist { background: var(--arctic-mist); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section__head p { color: var(--slate); font-size: 1.08rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; font-size: .78rem;
  color: var(--aurora-green-dark); margin-bottom: 12px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--arctic-blue); color:#fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  padding: 14px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--aurora-green); color: #fff; box-shadow: 0 6px 18px rgba(44,182,125,.34); }
.btn--primary:hover { background: var(--aurora-green-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(44,182,125,.42); }
.btn--blue { background: var(--arctic-blue); color:#fff; }
.btn--blue:hover { background: var(--arctic-blue-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color:#fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--outline { background: transparent; color: var(--arctic-blue); border-color: var(--arctic-blue); }
.btn--outline:hover { background: var(--arctic-blue); color:#fff; }
.btn--sm { padding: 10px 20px; font-size: .92rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(250,251,252,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--silver);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.35rem; color: var(--arctic-blue); }
.brand:hover { text-decoration: none; }
.brand svg { flex: none; }
.nav { display: none; align-items: center; gap: 26px; }
.nav a { color: var(--ink); font-weight: 500; font-size: .96rem; }
.nav a:hover { color: var(--aurora-green-dark); text-decoration: none; }
.header-cta { display: none; }
.hamburger { background: none; border: 0; padding: 8px; cursor: pointer; color: var(--arctic-blue); }
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--white);
  transform: translateX(100%); transition: transform .3s ease; z-index: 99;
  padding: 24px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 1.1rem; padding: 14px 8px; border-bottom: 1px solid var(--arctic-mist); color: var(--ink); }
.mobile-menu .btn { margin-top: 18px; }

@media (min-width: 900px) {
  .nav, .header-cta { display: flex; }
  .hamburger { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,25,45,.55) 0%, rgba(10,30,55,.45) 40%, rgba(9,32,60,.78) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding: 80px 0; }
.hero h1 { color:#fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__sub { font-size: 1.18rem; color: rgba(255,255,255,.94); max-width: 620px; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; color: rgba(255,255,255,.92); font-size: .92rem; font-weight: 500; }
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { color: var(--aurora-green); }

/* ---------- Trust band ---------- */
.trust { background: var(--arctic-blue); color:#fff; }
.trust .container { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px 12px; padding-top: 34px; padding-bottom: 34px; }
.trust__item { text-align: center; }
.trust__num { font-family: var(--font-head); font-size: 1.9rem; color: var(--golden-sunset); line-height: 1; }
.trust__label { font-size: .85rem; color: rgba(255,255,255,.82); margin-top: 6px; }
@media (min-width: 760px){ .trust .container { grid-template-columns: repeat(4,1fr); } }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 620px){ .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .cat-grid { grid-template-columns: repeat(3,1fr); } }
.cat-card {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 300px; box-shadow: var(--shadow-md); isolation: isolate;
}
.cat-card:hover { text-decoration: none; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index:0; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card__grad { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(9,28,52,0) 30%, rgba(9,28,52,.85) 100%); }
.cat-card__body { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 22px; color:#fff; }
.cat-card__tag { display:inline-block; font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  background: var(--aurora-green); color:#fff; padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 10px; }
.cat-card h3 { color:#fff; margin: 0 0 6px; }
.cat-card p { color: rgba(255,255,255,.9); font-size: .92rem; margin: 0; }
.cat-card__more { display:inline-flex; align-items:center; gap:6px; margin-top: 12px; font-weight:600; font-size:.9rem; color: var(--golden-sunset); }

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 620px){ .tour-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .tour-grid { grid-template-columns: repeat(3,1fr); } }
.tour-card {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--arctic-mist);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tour-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.tour-card__media img { width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-card__media img { transform: scale(1.05); }
.tour-card__cat { position:absolute; top:12px; left:12px; z-index:2; font-size:.7rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; background: rgba(15,76,129,.92); color:#fff; padding:5px 10px; border-radius: var(--radius-pill); }
.tour-card__free { position:absolute; top:12px; right:12px; z-index:2; font-size:.7rem; font-weight:600;
  background: var(--aurora-green); color:#fff; padding:5px 10px; border-radius: var(--radius-pill); }
.tour-card__body { display:flex; flex-direction:column; flex:1; padding: 18px 18px 20px; }
.tour-card__meta { display:flex; flex-wrap:wrap; gap: 10px 16px; font-size:.82rem; color: var(--slate); margin-bottom: 8px; }
.tour-card__meta span { display:inline-flex; align-items:center; gap:5px; }
.tour-card h3 { font-size: 1.18rem; margin: 0 0 8px; line-height: 1.2; }
.tour-card h3 a { color: var(--ink); }
.tour-card h3 a:hover { color: var(--arctic-blue); text-decoration:none; }
.tour-card__abstract { font-size: .92rem; color: var(--slate); margin-bottom: 16px; flex: 1; }
.rating { display:inline-flex; align-items:center; gap:5px; font-weight:600; color: var(--ink); }
.rating .stars { color: var(--golden-sunset); letter-spacing: 1px; }
.rating small { color: var(--stone); font-weight: 500; }
.tour-card__foot { display:flex; align-items:center; justify-content:space-between; gap: 12px; margin-top: auto; }
.price { font-family: var(--font-head); font-size: 1.5rem; color: var(--arctic-blue); line-height: 1; }
.price small { display:block; font-family: var(--font-body); font-size:.72rem; color: var(--stone); font-weight:500; }

/* ---------- Category hub intro ---------- */
.cat-intro { max-width: 820px; }
.cat-intro p { font-size: 1.08rem; color: var(--slate); }
.info-strip { display:flex; flex-wrap:wrap; gap: 14px; margin: 24px 0 8px; }
.info-chip { display:inline-flex; align-items:center; gap:8px; background: var(--arctic-mist); color: var(--arctic-blue);
  padding: 10px 16px; border-radius: var(--radius-pill); font-weight:600; font-size:.9rem; }

/* ---------- Feature / why band ---------- */
.feature-grid { display:grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px){ .feature-grid { grid-template-columns: repeat(3,1fr); } }
.feature { text-align:center; padding: 8px; }
.feature__icon { width: 56px; height:56px; margin: 0 auto 14px; display:grid; place-items:center;
  background: var(--arctic-mist); color: var(--arctic-blue); border-radius: var(--radius-pill); }
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--slate); font-size:.95rem; }

/* ---------- Plan your trip ---------- */
.plan-grid { display:grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px){ .plan-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .plan-grid { grid-template-columns: repeat(3,1fr); } }
.plan-card { background: var(--white); border:1px solid var(--silver); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.plan-card .feature__icon { margin: 0 0 14px; }
.plan-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.plan-card p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ---------- Aurora months ---------- */
.months { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 620px){ .months { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 980px){ .months { grid-template-columns: repeat(6,1fr); } }
.month { background: var(--white); border:1px solid var(--silver); border-radius: var(--radius-sm); padding: 14px; border-top: 4px solid var(--silver); }
.month--high { border-top-color: var(--aurora-green); }
.month--good { border-top-color: var(--golden-sunset); }
.month--low  { border-top-color: var(--stone); }
.month__m { font-family: var(--font-head); font-size: 1.3rem; color: var(--arctic-blue); }
.month__q { font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; margin-bottom: 6px; }
.month--high .month__q { color: var(--aurora-green-dark); }
.month--good .month__q { color: #B9821F; }
.month--low .month__q { color: var(--stone); }
.month p { font-size:.82rem; color: var(--slate); margin: 0; line-height:1.45; }
.dot { display:inline-block; width:12px; height:12px; border-radius:50%; vertical-align:middle; margin-right:4px; }
.dot--high { background: var(--aurora-green); } .dot--good { background: var(--golden-sunset); } .dot--low { background: var(--stone); }

/* ---------- Reviews ---------- */
.reviews-scroll { display:flex; gap: 24px; overflow-x:auto; padding: 6px 0 18px; scroll-snap-type: x mandatory; }
.reviews-scroll::-webkit-scrollbar { height: 8px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--silver); border-radius: 10px; }
.review {
  flex: 0 0 210px; scroll-snap-align: start; background: var(--white); border:1px solid var(--arctic-mist);
  border-radius: var(--radius-md); padding: 20px 8px; box-shadow: var(--shadow-sm); margin: 0;
}
@media (min-width: 640px){ .review { flex-basis: 310px; } }
.review__head { display:flex; align-items:baseline; justify-content:space-between; gap: 12px; margin-bottom: 10px; }
.review blockquote { margin: 0; padding: 0; }
.review .stars { color: var(--golden-sunset); letter-spacing:1px; flex: none; }
.review p { font-size: .92rem; color: var(--ink); line-height: 1.55; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.review__by { font-weight: 600; font-size:.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review__by small { color: var(--stone); font-weight:500; }
.review__tour { margin-top: 8px; font-size:.76rem; color: var(--aurora-green-dark); font-weight:600; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--silver); }
.faq__q { width:100%; text-align:left; background:none; border:0; cursor:pointer;
  font-family: var(--font-body); font-weight:600; font-size:1.05rem; color: var(--ink);
  padding: 20px 40px 20px 0; position:relative; }
.faq__q::after { content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%);
  font-size:1.5rem; color: var(--aurora-green-dark); transition: transform .2s ease; }
.faq__item.open .faq__q::after { content:"\2013"; }
.faq__a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq__a p { color: var(--slate); padding-bottom: 20px; margin:0; }

/* ---------- Booking widget band ---------- */
.book-band { background: var(--arctic-mist); }
.gyg-wrap { max-width: 920px; margin: 0 auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color:#fff; text-align:center; overflow:hidden; }
.cta-band__bg { position:absolute; inset:0; z-index:0; }
.cta-band__bg img { width:100%; height:100%; object-fit:cover; }
.cta-band__ov { position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(15,76,129,.82), rgba(9,28,52,.9)); }
.cta-band .container { position:relative; z-index:2; padding: 72px 20px; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 26px; font-size:1.1rem; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size:.86rem; color: var(--stone); padding: 18px 0 0; }
.crumb a { color: var(--slate); }

/* ---------- Tour detail ---------- */
.detail-hero { position:relative; color:#fff; }
.detail-hero__bg { position:absolute; inset:0; z-index:0; }
.detail-hero__bg img { width:100%; height:100%; object-fit:cover; }
.detail-hero__ov { position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(9,28,52,.35), rgba(9,28,52,.82)); }
.detail-hero .container { position:relative; z-index:2; padding: 40px 20px 48px; }
.detail-hero h1 { color:#fff; max-width: 820px; }
.detail-hero .tour-card__meta { color: rgba(255,255,255,.92); }
.detail-layout { display:grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 960px){ .detail-layout { grid-template-columns: 1.7fr 1fr; align-items:start; } }
.detail-body h2 { margin-top: 8px; }
.detail-body ul.ticks { list-style:none; margin: 0 0 24px; }
.detail-body ul.ticks li { position:relative; padding: 6px 0 6px 30px; color: var(--slate); }
.detail-body ul.ticks li::before { content:""; position:absolute; left:0; top:11px; width:16px; height:16px;
  background: var(--aurora-green); border-radius:50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat; }
.book-card { background: var(--white); border:1px solid var(--silver); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-md); position: sticky; top: calc(var(--header-h) + 16px); }
.book-card .price { font-size: 2rem; margin-bottom: 4px; }
.book-card .tour-card__meta { color: var(--slate); margin: 14px 0 18px; }
.related-grid { display:grid; grid-template-columns:1fr; gap: 20px; }
@media (min-width: 720px){ .related-grid { grid-template-columns: repeat(3,1fr); } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left:0; right:0; bottom:0; z-index: 90; background: var(--white);
  box-shadow: 0 -8px 24px rgba(15,76,129,.16); border-top:1px solid var(--silver);
  display:flex; align-items:center; justify-content:space-between; gap: 12px; padding: 10px 16px;
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .price { font-size: 1.3rem; }
.sticky-cta .btn { flex: none; }
@media (min-width: 900px){ .sticky-cta { display:none; } }

/* ---------- Gallery ---------- */
.gallery { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 760px){ .gallery { grid-template-columns: repeat(4,1fr); } }
.gallery img { width:100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); }
.gallery a:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: 1/1; height:100%; }

/* ---------- Guide articles ---------- */
.container--reading { max-width: 760px; }
.article-hero { padding: 30px 0 8px; }
.article-tag { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  background: var(--arctic-mist); color: var(--arctic-blue); padding: 5px 12px; border-radius: var(--radius-pill); margin: 6px 0 14px; }
.article-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.article-meta { display:flex; align-items:center; gap: 8px; color: var(--stone); font-size:.9rem; }
.article-meta svg { color: var(--aurora-green-dark); }
.article-figure { margin: 22px 0 0; }
.article-figure img { width:100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); }
.article-body { padding-top: 36px; padding-bottom: 20px; font-size: 1.08rem; line-height: 1.75; color: var(--ink); }
.article-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 40px 0 12px; }
.article-body h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.article-body p { margin-bottom: 1.3rem; color: #26333d; }
.article-body ul, .article-body ol { margin: 0 0 1.4rem; padding-left: 1.3rem; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--arctic-blue); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.article-body blockquote { margin: 24px 0; padding: 4px 20px; border-left: 4px solid var(--aurora-green); color: var(--slate); font-style: italic; }
.article-body strong { font-weight: 600; }
.article-body .lead-para { font-size: 1.2rem; line-height: 1.6; color: var(--ink); }
.article-body table { width:100%; border-collapse: collapse; margin: 8px 0 1.6rem; font-size: .98rem; }
.article-body th, .article-body td { text-align:left; padding: 10px 14px; border-bottom: 1px solid var(--silver); vertical-align: top; }
.article-body thead th { background: var(--arctic-mist); color: var(--arctic-blue); font-weight: 600; }
.article-cta { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap: 20px;
  background: var(--arctic-mist); border-radius: var(--radius-lg); padding: 28px; margin: 20px 0 48px; }
.article-cta h3 { margin: 6px 0 6px; }
.article-cta p { margin:0; color: var(--slate); max-width: 46ch; font-size:.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0B2032; color: rgba(255,255,255,.78); padding: 56px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color:#fff; font-family: var(--font-body); font-weight:600; font-size:.95rem; letter-spacing:.05em; text-transform:uppercase; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color:#fff; }
.site-footer ul li { list-style:none; margin-bottom: 10px; }
.footer-brand { display:flex; align-items:center; gap:10px; color:#fff; font-family: var(--font-head); font-size:1.4rem; margin-bottom: 14px; }
.footer-seo { border-top:1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 26px; }
.footer-seo h4 { font-size:.8rem; color: rgba(255,255,255,.6); }
.footer-seo__links { display:flex; flex-wrap:wrap; gap: 8px 18px; }
.footer-seo__links a { font-size:.84rem; color: rgba(255,255,255,.62); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top: 26px; padding-top: 22px; font-size:.82rem; color: rgba(255,255,255,.55); display:flex; flex-wrap:wrap; gap: 8px 20px; justify-content:space-between; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
