/* ============================================================
   전국주소통합검색시스템 — Design System v2
   "Urban Data Intelligence" aesthetic
   ============================================================ */

:root {
  /* Dark palette */
  --ink-950: #020812;
  --ink-900: #040d1e;
  --ink-800: #0a1628;
  --ink-700: #0f2040;
  --ink-600: #1a3055;

  /* Brand blue */
  --blue-300: #cbd5e1;
  --blue-400: #94a3b8;
  --blue-500: #3b82f6;
  --blue-600: #475569;
  --blue-700: #334155;

  /* Accent amber */
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #c2410c;

  /* Neutrals */
  --white: #ffffff;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Typography */
  --font-body: 'SUIT', 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Layout */
  --nav-h: 68px;
  --content-w: 1100px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --sh-sm:  0 1px 4px rgba(0,0,0,.08);
  --sh-md:  0 4px 16px rgba(0,0,0,.10);
  --sh-lg:  0 12px 40px rgba(0,0,0,.15);
  --sh-blue: 0 8px 28px -6px rgba(37,99,235,.4);
  --sh-amber: 0 8px 28px -6px rgba(245,158,11,.45);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page-content { flex: 1 0 auto; }
.page-main { width: 100%; }

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-nav {
  height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow .2s;
}
.site-nav.is-scrolled {
  box-shadow: 0 4px 20px -8px rgba(15,23,42,.18);
}
.nav-wrap {
  width: min(1240px, 96vw);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink-900);
  letter-spacing: -.02em;
}
.nav-logo:hover { color: var(--blue-600); }
.nav-logo__pin { font-size: 1.1em; }

/* Nav search */
.nav-searchbar { flex: 1; max-width: 540px; }
.nav-searchbar__row {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.nav-searchbar__row:focus-within {
  box-shadow: 4px 4px 0 #cbd5e1;
}
.nav-searchbar__icon {
  flex-shrink: 0;
  padding: 0 0 0 14px;
  color: #64748b;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.nav-searchbar__input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  font-size: .95rem;
  font-family: var(--font-body);
  background: transparent;
  border: none;
  outline: none;
  color: #1a1a1a;
}
.nav-searchbar__input::placeholder { color: #64748b; }
.nav-searchbar__btn {
  padding: 0 18px;
  height: 100%;
  min-height: 44px;
  background: #1a1a1a;
  border: none;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.nav-searchbar__btn:hover { background: #475569; }

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-searchbar { max-width: none; flex: 1; }
  .nav-searchbar__btn { padding: 0 12px; font-size: .82rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink-950);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 100px;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__orb--1 {
  width: 560px; height: 560px;
  background: rgba(37,99,235,.28);
  top: -180px; right: 4%;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(245,158,11,.12);
  bottom: -120px; left: 2%;
}

/* Floating coordinate pins */
.coord-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 10px 16px;
  pointer-events: none;
  animation: coordFloat 5s ease-in-out infinite;
}
.coord-pin--1 { top: 13%;    left: 5%;   animation-delay: 0s; }
.coord-pin--2 { top: 20%;    right: 5%;  animation-delay: 1.8s; }
.coord-pin--3 { bottom: 22%; left: 7%;   animation-delay: 3.4s; }
.coord-pin--4 { bottom: 15%; right: 6%;  animation-delay: 0.9s; }

@keyframes coordFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.coord-pin__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber-400);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(251,191,36,.2);
}
.coord-pin__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.coord-pin__coords {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
.coord-pin__place {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  font-family: var(--font-mono);
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 740px;
  text-align: center;
}
.hero__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--amber-400);
  margin-bottom: 28px;
  padding: 6px 18px;
  border: 1px solid rgba(251,191,36,.25);
  border-radius: 100px;
  background: rgba(251,191,36,.06);
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 0 0 24px;
}
.hero__title mark {
  background: none;
  color: var(--amber-400);
}
.hero__desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  margin: 0 auto 52px;
  max-width: 500px;
}

/* Hero search box */
.hero__searchbox {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 22px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), var(--sh-lg);
}
.hero__searchbox__input {
  flex: 1;
  padding: 18px 22px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,.07);
  border: none;
  outline: none;
  color: var(--white);
  transition: background .15s;
}
.hero__searchbox__input::placeholder { color: rgba(255,255,255,.32); }
.hero__searchbox__input:focus { background: rgba(255,255,255,.1); }
.hero__searchbox__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: var(--amber-500);
  border: none;
  color: var(--ink-900);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.hero__searchbox__btn:hover { background: var(--amber-400); }

.hero__shortcuts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: .84rem;
  color: rgba(255,255,255,.32);
}
.hero__shortcuts__sep { flex-shrink: 0; }
.hero__shortcuts a {
  color: rgba(255,255,255,.5);
  transition: color .15s;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 1px;
}
.hero__shortcuts a:hover { color: var(--amber-400); border-bottom-color: var(--amber-400); }

@media (max-width: 768px) {
  .hero { min-height: 82vh; padding: 88px 20px 80px; }
  .coord-pin--1, .coord-pin--4 { display: none; }
  .coord-pin--2 { top: 8%; right: 3%; }
  .coord-pin--3 { bottom: 10%; left: 3%; }
  .hero__searchbox { border-radius: var(--r-md); }
  .hero__searchbox__input { padding: 15px 16px; }
  .hero__searchbox__btn { padding: 15px 20px; }
}

/* ============================================================
   Stat Bar
   ============================================================ */
.statbar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}
.statbar__inner {
  width: min(var(--content-w), 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 44px 0;
  gap: 16px;
}
.statbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.statbar__num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: -.04em;
  line-height: 1;
}
.statbar__label {
  font-size: .82rem;
  color: var(--slate-500);
  font-weight: 500;
}
.statbar__sep {
  width: 1px; height: 44px;
  background: var(--slate-200);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .statbar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 20px; }
  .statbar__sep { display: none; }
}

/* ============================================================
   Services Section
   ============================================================ */
.services {
  background: var(--slate-50);
  padding: 100px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.services__inner {
  width: min(var(--content-w), 92vw);
  margin: 0 auto;
}

/* Section heading */
.section-head { margin-bottom: 60px; }
.section-head__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--amber-600);
  margin-bottom: 14px;
}
.section-head__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.section-head__sub {
  font-size: 1rem;
  color: var(--slate-500);
  margin: 0;
  line-height: 1.7;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 32px 24px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--slate-300);
  color: inherit;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.svc-card--address .svc-card__icon { background: #f1f5f9; color: var(--blue-600); }
.svc-card--park    .svc-card__icon { background: #dcfce7; color: #16a34a; }
.svc-card--library .svc-card__icon { background: #fef9c3; color: #ca8a04; }
.svc-card--museum  .svc-card__icon { background: #ede9fe; color: #7c3aed; }
.svc-card--child   .svc-card__icon { background: #fce7f3; color: #db2777; }
.svc-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.svc-card__desc {
  font-size: .87rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin: 0 0 22px;
  flex: 1;
}
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--amber-600);
  transition: gap .15s;
}
.svc-card:hover .svc-card__cta { gap: 9px; }

@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .services { padding: 68px 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-card { padding: 22px 18px 20px; }
}
@media (max-width: 420px) { .service-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Why / Features
   ============================================================ */
.why {
  background: var(--white);
  padding: 100px 24px;
  border-top: 1px solid var(--slate-200);
}
.why__header {
  width: min(var(--content-w), 92vw);
  margin: 0 auto 64px;
}
.why__grid {
  width: min(var(--content-w), 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.why-card { display: flex; flex-direction: column; }
.why-card__num {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--slate-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.why-card__body {
  font-size: .93rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .why { padding: 68px 20px; }
  .why__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Address Detail — Hero Header
   ============================================================ */
.addr-hero {
  background: var(--ink-900);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.addr-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.addr-hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(37,99,235,.22);
  filter: blur(90px);
  top: -180px; right: 5%;
  pointer-events: none;
}
.addr-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.addr-hero__coords {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--amber-400);
  letter-spacing: .1em;
  margin: 0 0 20px;
  opacity: .85;
}
.addr-hero__tag {
  display: inline-block;
  background: var(--amber-500);
  color: var(--ink-900);
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.addr-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.addr-hero__jibun {
  font-family: var(--font-mono);
  font-size: .88rem;
  color: rgba(255,255,255,.38);
  margin: 0 0 32px;
  letter-spacing: .02em;
}
.addr-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--amber-500);
  color: var(--ink-900);
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: background .15s, transform .15s;
}
.addr-hero__btn:hover {
  background: var(--amber-400);
  color: var(--ink-900);
  transform: translateY(-2px);
}
@media (max-width: 768px) { .addr-hero { padding: 64px 20px 56px; } }

/* ============================================================
   Address Detail — Sections
   ============================================================ */
.addr-section { padding: 72px 24px; }
.addr-section--white { background: var(--white); }
.addr-section--gray  { background: var(--slate-50); }

.addr-section__inner {
  width: min(1040px, 92vw);
  margin: 0 auto;
}
.addr-section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 36px;
}
.addr-section__head-icon {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
  transform: translateY(2px);
}
.addr-section__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 4px;
}
.addr-section__sub {
  font-size: .92rem;
  color: var(--slate-500);
  margin: 0;
}

/* Info cards */
.addr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.addr-card {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: transform .2s, box-shadow .2s;
}
.addr-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.addr-card__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--amber-600);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.addr-card__value {
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--ink-900);
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* Map */
.addr-map {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--sh-sm);
}
.addr-map__canvas { width: 100%; height: 440px; }

/* Blog grid */
.addr-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.addr-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.addr-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--slate-300);
  color: inherit;
}
.addr-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.addr-blog-card__desc {
  font-size: .88rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.addr-blog-card__meta {
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--slate-400);
}

/* Gallery */
.addr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.addr-gallery-item {
  display: block;
  background: var(--slate-100);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.addr-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.addr-gallery-item__thumb {
  width: 100%; height: 150px;
  overflow: hidden;
}
.addr-gallery-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.addr-gallery-item:hover .addr-gallery-item__thumb img { transform: scale(1.06); }
.addr-gallery-item__caption {
  display: block;
  padding: 10px 12px;
  font-size: .82rem;
  color: var(--slate-700);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .addr-section { padding: 52px 20px; }
  .addr-map__canvas { height: 320px; }
}

/* ============================================================
   Ad Spacer
   ============================================================ */
.ad-spacer {
  margin: 36px auto;
  width: min(var(--content-w), 92vw);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.52);
  padding: 72px 24px 48px;
  margin-top: auto;
}
.footer-inner {
  width: min(var(--content-w), 92vw);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { flex: 0 0 220px; }
.footer-brand__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
}
.footer-brand__tagline {
  font-size: .87rem;
  line-height: 1.7;
  margin: 0 0 6px;
}
.footer-brand__source {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  margin: 0;
}
.footer-links-group {
  display: flex;
  gap: 56px;
}
.footer-links-col { display: flex; flex-direction: column; }
.footer-links-col__head {
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .14em;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-links-col__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col__list a {
  font-size: .9rem;
  color: rgba(255,255,255,.52);
  transition: color .15s;
}
.footer-links-col__list a:hover { color: var(--amber-400); }

.footer-info {
  font-size: .82rem;
  line-height: 2;
  text-align: right;
}
.footer-info p { margin: 0; }
.footer-info a { color: var(--amber-400); }
.footer-info a:hover { color: var(--amber-300); }
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  margin-top: 8px !important;
}
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-info { text-align: left; }
  .footer-links-group { gap: 32px; }
  .footer-brand { flex: none; }
}
