/* =========================================================
   Aladdin's Cleaning Genies — Stylesheet
   Friendly & local, blue palette, modern type
   ========================================================= */

:root {
  /* Brand */
  --blue-900: #0b2a5b;
  --blue-800: #0f3a7d;
  --blue-700: #1453a5;
  --blue-600: #1f6fd1;
  --blue-500: #3b8eea;
  --blue-100: #e8f1fc;
  --blue-50:  #f4f8fd;

  --gold-600: #d99425;
  --gold-500: #f0a93a;
  --gold-100: #fdf1d9;

  --ink-900: #0d1b2a;
  --ink-700: #2a3a4f;
  --ink-500: #5a6b80;
  --ink-300: #9aa7b8;
  --ink-200: #cfd6df;
  --ink-100: #e6ebf1;
  --ink-50:  #f6f8fb;

  --white: #ffffff;
  --success: #15803d;

  /* Layout */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 1px 1px rgba(13,27,42,.04);
  --shadow:    0 6px 18px rgba(13,27,42,.08), 0 2px 6px rgba(13,27,42,.04);
  --shadow-lg: 0 24px 48px rgba(13,27,42,.14), 0 6px 14px rgba(13,27,42,.06);

  --container: 1180px;

  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-900); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
p  { margin: 0 0 1em; }
ul.clean { list-style: none; padding: 0; margin: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--ink-900);
  box-shadow: 0 6px 18px rgba(240,169,58,.35);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-1px); color: var(--ink-900); }

.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border-color: var(--blue-800);
}
.btn-secondary:hover { background: var(--blue-800); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }

.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn .spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 4px;
  vertical-align: -3px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form success state */
.form-success {
  text-align: center;
  padding: 24px 0 8px;
}
.form-success .check {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  animation: pop 0.35s cubic-bezier(.34,1.56,.64,1);
}
.form-success h3 {
  color: var(--ink-900);
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.form-success p {
  color: var(--ink-500);
  margin: 0 0 6px;
  font-size: 15px;
}
.form-success .form-success-sub {
  font-size: 13.5px;
  color: var(--ink-500);
  margin-top: 14px;
}
.form-success .form-success-sub a { color: var(--blue-700); font-weight: 600; }
@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Form error message */
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 10px;
  margin: 0 0 14px;
  font-size: 14px;
}
.form-error a { color: #991b1b; text-decoration: underline; font-weight: 600; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); }
.topbar .pills {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.topbar .pill {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  padding-left: 32px;
}
.site-footer .brand { padding-left: 0; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  display: grid; place-items: center;
  color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.brand-name strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink-900);
  letter-spacing: -.01em;
}
.brand-name span {
  color: var(--ink-500); font-size: 12px;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  color: var(--ink-700);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.nav-links a:hover { color: var(--blue-800); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-800); background: var(--blue-100); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* dropdown */
.has-menu { position: relative; }
.menu {
  position: absolute;
  top: calc(100% + 4px); left: 0;
  background: var(--white);
  min-width: 270px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.has-menu:hover .menu, .has-menu:focus-within .menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.menu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  color: var(--ink-700); font-size: 14.5px;
}
.menu a:hover { background: var(--blue-50); color: var(--blue-800); }

/* mobile toggle */
.menu-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 28px; height: 28px; color: var(--ink-900); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn-secondary { display: none; }
  .topbar .pills { gap: 12px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--ink-100);
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open .menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none; padding: 0 0 0 12px;
  }
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(135deg, rgba(11,42,91,.86), rgba(20,83,165,.72)),
    url('images/17.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--gold-500); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-trust {
  display: flex; gap: 28px; margin-top: 44px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--white); display: block; font-size: 22px; font-family: var(--font-display); }

/* Two-column hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content { min-width: 0; }
.hero-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-700);
}
.hero-form h3 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-size: 1.55rem;
  margin: 0 0 4px;
}
.hero-form .form-sub {
  color: var(--ink-500);
  font-size: 14.5px;
  margin: 0 0 18px;
}
.hero-form .field { margin-bottom: 12px; }
.hero-form .field label { font-size: 13px; margin-bottom: 4px; }
.hero-form .field input,
.hero-form .field select,
.hero-form .field textarea {
  padding: 10px 12px;
  font-size: 14.5px;
  border-radius: 8px;
}
.hero-form .field select { padding-right: 34px; }
.hero-form .field textarea { min-height: 80px; }
.hero-form .form-row { gap: 12px; }
.hero-form .submit-row {
  margin-top: 16px;
}
.hero-form .submit-row .btn {
  width: 100%;
  justify-content: center;
}
.hero-form .reassure {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { max-width: none; }
  .hero p.lead { max-width: none; }
}

/* ---------- Section ---------- */
section { padding: 80px 0; }
section.compact { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  color: var(--ink-500);
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--blue-50);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: grid; place-items: center;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--ink-900); font-size: 15px; }
.trust-item span { color: var(--ink-500); font-size: 13.5px; }
@media (max-width: 780px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  color: var(--blue-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--ink-500); font-size: 15px; }
.service-card .more {
  margin-top: auto;
  color: var(--blue-700);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 14px;
  font-size: 14.5px;
}
.service-card .more::after {
  content: "→"; transition: transform .2s ease;
}
.service-card:hover .more::after { transform: translateX(3px); }
@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

/* ---------- About/feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split .eyebrow {
  text-transform: uppercase; letter-spacing: .15em;
  font-size: 12.5px; font-weight: 600; color: var(--blue-700);
}
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0;
}
.feature-list svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Clients ---------- */
.clients {
  background: var(--ink-50);
  padding: 48px 0;
}
.clients h4 {
  text-align: center;
  color: var(--ink-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12.5px;
  margin-bottom: 24px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.client-logo {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-300);
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .8;
}
@media (max-width: 640px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Service Area ---------- */
.service-area {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--blue-100);
}
.area-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 24px; margin-top: 20px;
}
.area-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--ink-100);
  font-weight: 500;
  color: var(--ink-900);
  font-size: 15px;
}
.area-list li::before {
  content: "📍"; font-size: 14px;
}
@media (max-width: 780px) {
  .service-area { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(240,169,58,.15);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; max-width: 22ch; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 0; max-width: 48ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Page header (subpages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.page-hero .crumbs {
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}
.page-hero .crumbs a { color: rgba(255,255,255,.9); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 60ch; font-size: 1.1rem; margin: 0; }

/* ---------- Content layout ---------- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.content-main h2:not(:first-child) { margin-top: 36px; }
.content-main h3 { margin-top: 28px; }
.content-main ul { padding-left: 0; list-style: none; }
.content-main ul li {
  position: relative;
  padding: 6px 0 6px 28px;
}
.content-main ul li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
}

.sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.sidebar-card.dark {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-color: transparent;
}
.sidebar-card.dark h4 { color: var(--white); }
.sidebar-card.dark p { color: rgba(255,255,255,.85); font-size: 15px; }
.sidebar-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-500) !important;
  text-decoration: none;
  font-weight: 600;
  margin: 8px 0 14px;
}
.sidebar-list { font-size: 14.5px; color: var(--ink-500); }
.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-100);
  display: flex; justify-content: space-between;
}
.sidebar-list li:last-child { border-bottom: 0; }

@media (max-width: 880px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.field label .req { color: #d11; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%232a3a4f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><polyline points='1,1.5 6,6.5 11,1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(31,111,209,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { color: var(--ink-500); font-size: 13px; margin-top: 6px; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}

/* ---------- Notice / callout ---------- */
.notice {
  background: var(--gold-100);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
  margin: 24px 0;
}
.notice svg { color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.notice p { margin: 0; color: var(--ink-700); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 16px;
}
.footer-grid a { color: rgba(255,255,255,.75); }
.footer-grid a:hover { color: var(--gold-500); }
.footer-grid ul.clean li { padding: 5px 0; font-size: 14.5px; }
.footer-brand p { font-size: 14.5px; }
.footer-brand .brand-name strong { color: var(--white); }
.footer-brand .brand-name span { color: rgba(255,255,255,.65); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
}
.social-links a:hover { background: var(--gold-500); color: var(--ink-900); border-color: var(--gold-500); }
.social-links svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Misc / utility ---------- */
.text-center { text-align: center; }
.muted { color: var(--ink-500); }
.tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-800);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 600;
}
hr.soft {
  border: 0; border-top: 1px solid var(--ink-100);
  margin: 36px 0;
}

/* Print-ish niceties */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
