/* ==================================================================
   Curio — family hub (index.html)
   A modern, single-page showcase for the four Curio apps.
   Self-contained: does not touch family.css (fashion.html) or
   styles.css (organizer.html).

   Palette is sampled directly from the app icons — one shared
   "vintage passport / cabinet of curiosities" system:
     teal field      #5EA898 / #4B8E80 / #3E7E72
     peach + plate    #F3D9B0 / #EFE6D2
     gold wedge       #E2C05E
     terracotta       #D9824E
     ink              #1B1B1B

   Per-app accent leads (each nudged toward one family member):
     Collection Tracker        gold
     Closet & Outfit Planner   terracotta
     Fiddlewick                terracotta + teal (dark surface)
     Travel Map & Countries    teal
================================================================== */
:root {
  /* Neutrals */
  --ink: #241F1D;
  --ink-light: #4A423E;
  --ink-muted: #8A7F78;
  --border: rgba(36, 31, 29, 0.10);
  --cream: #FBF6EF;
  --ivory: #FFFCF6;
  --shadow-card: 0 6px 20px rgba(36, 31, 29, 0.08);
  --shadow-lift: 0 22px 50px -22px rgba(36, 31, 29, 0.22);
  --shadow-phone: 0 40px 70px -28px rgba(36, 31, 29, 0.38), 0 12px 30px -16px rgba(36, 31, 29, 0.22);
  --shadow-icon: 0 12px 24px -12px rgba(36, 31, 29, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  --radius: 18px;

  /* Curio family — unified icon palette */
  --teal: #5EA898;
  --teal-deep: #4B8E80;
  --teal-dark: #3E7E72;
  --peach: #F3D9B0;
  --plate: #EFE6D2;
  --gold: #E2C05E;
  --gold-deep: #C29B33;
  --terra: #D9824E;
  --terra-deep: #BF6A38;

  --brand: var(--teal-deep);
  --brand-grad: linear-gradient(135deg, #D9824E, #E2C05E);
  --teal-grad: linear-gradient(140deg, #6DB6A5, #4B8E80);

  /* Per-app accent leads (all within the shared palette) */
  --co: #C29B33; --co-amber: #E2C05E; --co-light: #EBD48A; --co-cream: #FBF3DC;
  --cf: #C0693A; --cf-mauve: #A5572F; --cf-soft: #F7E6D8;
  --fw: #D9824E; --fw-teal: #5FAA9E; --fw-bg: #15150F; --fw-surface: #23231B; --fw-text: #ECE6D6;
  --pl: #4B8E80; --pl-deep: #3E7E72; --pl-terra: #DD7F4E; --pl-gold: #E6C56E; --pl-cream: #F7DDB4;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body.home {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.55;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); line-height: 1.03; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; }
h3 { font-size: 1.18rem; line-height: 1.3; }
p  { margin: 0.6em 0; }

.accent-italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(94, 168, 152, 0.14);
}
.eyebrow--brand {
  color: var(--terra-deep);
  background: linear-gradient(135deg, rgba(217, 130, 78, 0.14), rgba(226, 192, 94, 0.18));
}

/* ------------------------- Buttons ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translate(2px, 0); }
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(36, 31, 29, 0.45); }
.btn-ghost { background: rgba(255, 255, 255, 0.6); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-card); }

/* ------------------------- Reveal ------------------------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================ NAV ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 239, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(36, 31, 29, 0.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  box-shadow: 0 4px 10px -4px rgba(36, 31, 29, 0.4);
}
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.95rem; }
.nav-links a { color: var(--ink-light); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--ivory) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal-deep); }
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 60px;
  background:
    radial-gradient(900px 560px at 8% -140px, rgba(226, 192, 94, 0.30), transparent 60%),
    radial-gradient(820px 560px at 96% -80px, rgba(94, 168, 152, 0.22), transparent 60%),
    radial-gradient(720px 620px at 60% 118%, rgba(217, 130, 78, 0.12), transparent 60%),
    var(--cream);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 340px at 78% 30%, rgba(94, 168, 152, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { margin: 16px 0 0; max-width: 640px; }
.hero-copy .accent-italic {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  margin: 20px 0 0;
  max-width: 540px;
  font-size: 1.12rem;
  color: var(--ink-light);
}
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-proofs {
  list-style: none; padding: 0; margin: 30px 0 0;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--ink-light); font-size: 0.94rem;
}
.hero-proofs .dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--brand-grad); margin-right: 8px; vertical-align: middle; }

/* Floating app-icon cluster */
.hero-cluster {
  position: relative;
  height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 26px;
  place-items: center;
}
.hero-cluster::before {
  content: "";
  position: absolute; inset: 6% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(94, 168, 152, 0.22), transparent 62%),
    radial-gradient(circle at 70% 74%, rgba(217, 130, 78, 0.18), transparent 62%),
    radial-gradient(circle, rgba(226, 192, 94, 0.28), transparent 66%);
  filter: blur(6px);
  z-index: 0;
}
.app-tile {
  position: relative;
  z-index: 1;
  width: 118px; height: 118px;
  border-radius: 27px;
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(36, 31, 29, 0.45);
  animation: float 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.4s);
}
.app-tile img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.app-tile:nth-child(1) { transform: rotate(-6deg); }
.app-tile:nth-child(2) { transform: rotate(5deg); }
.app-tile:nth-child(3) { transform: rotate(-4deg); }
.app-tile:nth-child(4) { transform: rotate(6deg); }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@media (prefers-reduced-motion: reduce) {
  .app-tile { animation: none; }
}
@media (max-width: 900px) {
  .hero { padding: 44px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-cluster { height: 300px; max-width: 340px; margin: 0 auto; gap: 20px; }
  .app-tile { width: 96px; height: 96px; border-radius: 23px; }
}
@media (max-width: 420px) {
  .app-tile { width: 82px; height: 82px; }
}

/* ======================= SECTION HEADS ======================= */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-head h2 { margin-top: 14px; }
.section-head p { color: var(--ink-light); font-size: 1.05rem; margin-top: 12px; }

/* ======================= APP INDEX STRIP ======================= */
.apps-index { padding: 84px 0; background: var(--ivory); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.index-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.index-card {
  display: flex; flex-direction: column;
  padding: 26px 22px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.index-mark {
  width: 52px; height: 52px; border-radius: 15px;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -12px rgba(36, 31, 29, 0.4);
}
.index-card--co:hover { border-color: var(--gold); }
.index-card--cf:hover { border-color: var(--terra); }
.index-card--fw:hover { border-color: var(--teal); }
.index-card--pl:hover { border-color: var(--teal-deep); }
.index-card h3 { margin-bottom: 6px; }
.index-card p { color: var(--ink-light); font-size: 0.94rem; margin: 0 0 16px; flex: 1; }
.index-status {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-muted);
}
.index-status.is-live { color: #2f9e5f; }
@media (max-width: 940px) { .index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .index-grid { grid-template-columns: 1fr; } .apps-index { padding: 56px 0; } }

/* ======================= SHOWCASE ======================= */
.showcase { padding: 92px 0; position: relative; }
.showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.showcase.is-reversed .showcase-visual { order: -1; }
.showcase-copy h2 { margin: 14px 0 0; }
.showcase-copy > p { color: var(--ink-light); font-size: 1.06rem; max-width: 500px; margin-top: 14px; }

.app-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.app-eyebrow-icon { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 4px 10px -5px rgba(36, 31, 29, 0.5); }
.tag {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.tag-live { background: rgba(47, 158, 95, 0.14); color: #2f9e5f; }
.tag-soon { background: rgba(138, 127, 120, 0.16); color: var(--ink-muted); }
.tag-free { background: rgba(217, 130, 78, 0.18); color: var(--terra-deep); }

.feat-list { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.feat-list li { position: relative; padding-left: 30px; color: var(--ink-light); font-size: 0.99rem; }
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 999px;
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

.showcase-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.store-badge { display: inline-block; transition: transform 0.15s ease, opacity 0.15s ease; }
.store-badge img { height: 50px; width: auto; }
.store-badge:hover { transform: translateY(-2px); }

.soon-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 999px;
  background: rgba(217, 130, 78, 0.14); color: var(--terra-deep);
  border: 1px dashed rgba(217, 130, 78, 0.5);
}
.soon-pill--pl { background: rgba(94, 168, 152, 0.14); color: var(--pl-deep); border-color: rgba(94, 168, 152, 0.5); }

.showcase-note { color: var(--ink-muted); font-size: 0.9rem; margin-top: 6px; }
.showcase-note a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--border); }
.showcase-note a:hover { border-bottom-color: currentColor; }
.showcase-note .sep { margin: 0 8px; opacity: 0.5; }

/* Per-theme accents for showcase */
.theme-co { background:
    radial-gradient(700px 420px at 100% 0%, rgba(226, 192, 94, 0.22), transparent 60%), var(--cream); }
.theme-co .app-eyebrow { color: var(--gold-deep); }
.theme-co .feat-list li::before { background-color: rgba(226, 192, 94, 0.20); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M1.5 6.5l3 3L10.5 3' stroke='%23C29B33' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

.theme-cf { background:
    radial-gradient(700px 420px at 0% 0%, rgba(217, 130, 78, 0.10), transparent 60%),
    radial-gradient(600px 420px at 100% 100%, rgba(94, 168, 152, 0.10), transparent 60%),
    var(--ivory);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.theme-cf .app-eyebrow { color: var(--cf); }
.theme-cf .feat-list li::before { background-color: rgba(217, 130, 78, 0.18); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M1.5 6.5l3 3L10.5 3' stroke='%23C0693A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

.theme-fw { background:
    radial-gradient(760px 460px at 100% 0%, rgba(217, 130, 78, 0.14), transparent 60%),
    radial-gradient(620px 460px at 0% 100%, rgba(95, 170, 158, 0.14), transparent 60%),
    var(--cream); }
.theme-fw .app-eyebrow { color: var(--terra-deep); }
.theme-fw .feat-list li::before { background-color: rgba(217, 130, 78, 0.18); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M1.5 6.5l3 3L10.5 3' stroke='%23BF6A38' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

.theme-pl { background:
    radial-gradient(720px 440px at 0% 0%, rgba(94, 168, 152, 0.18), transparent 60%),
    radial-gradient(560px 420px at 100% 100%, rgba(221, 127, 78, 0.10), transparent 60%),
    var(--ivory);
  border-top: 1px solid var(--border); }
.theme-pl .app-eyebrow { color: var(--pl-deep); }
.theme-pl .feat-list li::before { background-color: rgba(94, 168, 152, 0.18); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M1.5 6.5l3 3L10.5 3' stroke='%233E7E72' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

@media (max-width: 900px) {
  .showcase { padding: 60px 0; }
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase.is-reversed .showcase-visual { order: 0; }
  .showcase-visual { order: -1; }
}

/* ======================= DEVICE MOCKUPS ======================= */
.showcase-visual { display: flex; justify-content: center; }

/* Real device-framed screenshots (transparent PNG of phone + screen) */
.device-shot {
  width: 300px;
  max-width: 84%;
  height: auto;
  filter: drop-shadow(0 44px 55px rgba(36, 31, 29, 0.30)) drop-shadow(0 12px 24px rgba(36, 31, 29, 0.18));
}
@media (max-width: 900px) { .device-shot { width: 264px; } }

/* Two-phone layout (primary in front, secondary fanned behind) */
.device-duo {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-duo .device-shot { width: 236px; max-width: none; }
.device-duo .shot-back {
  position: absolute;
  transform: translate(36%, -5%) rotate(6deg);
  z-index: 1;
  filter: drop-shadow(0 30px 42px rgba(36, 31, 29, 0.26));
}
.device-duo .shot-front {
  position: relative;
  transform: translate(-16%, 6%) rotate(-3deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .device-duo { min-height: 540px; }
  .device-duo .device-shot { width: 200px; }
}
@media (max-width: 420px) {
  .device-duo .device-shot { width: 168px; }
  .device-duo .shot-back { transform: translate(40%, -5%) rotate(6deg); }
  .device-duo .shot-front { transform: translate(-20%, 6%) rotate(-3deg); }
}


/* ======================= VALUES ======================= */
.values { padding: 92px 0; background: var(--cream); border-top: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.value-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(94, 168, 152, 0.16), rgba(226, 192, 94, 0.20));
  color: var(--teal-deep);
}
.value-card h3 { margin-bottom: 6px; }
.value-card p { color: var(--ink-light); font-size: 0.95rem; margin: 0; }
@media (max-width: 940px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } .values { padding: 56px 0; } }

/* ======================= ABOUT ======================= */
.about {
  padding: 92px 0;
  background:
    radial-gradient(720px 440px at 100% 0%, rgba(94, 168, 152, 0.14), transparent 60%),
    radial-gradient(560px 420px at 0% 100%, rgba(217, 130, 78, 0.10), transparent 60%),
    var(--ivory);
  border-top: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #0e0e10;
  box-shadow: var(--shadow-phone);
}
.about-video { width: 100%; height: 100%; object-fit: cover; display: block; background: #0e0e10; }
.about-play {
  position: absolute; inset: 0; margin: auto;
  width: 68px; height: 68px; border-radius: 999px;
  border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.92); color: var(--terra-deep);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(36, 31, 29, 0.55);
  transition: transform 0.15s ease, background 0.15s ease;
}
.about-play svg { margin-left: 3px; }
.about-play:hover, .about-play:focus-visible { transform: scale(1.06); background: #fff; }
.about-media.is-playing .about-play { display: none; }

.about-copy h2 { margin-top: 14px; }
.about-copy .accent-italic {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-copy p { color: var(--ink-light); font-size: 1.06rem; max-width: 560px; margin-top: 16px; }
.about-sign { margin: 26px 0 22px; display: flex; flex-direction: column; }
.about-name { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.about-role { color: var(--ink-muted); font-size: 0.92rem; margin-top: 3px; }
@media (max-width: 900px) {
  .about { padding: 60px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-media { order: -1; }
}

/* ======================= FOOTER ======================= */
.footer { background: var(--ivory); border-top: 1px solid var(--border); padding: 40px 0; color: var(--ink-muted); font-size: 0.9rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.footer-brand .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-light); transition: color 0.15s ease; }
.footer-links a:hover { color: var(--terra); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; }
.social-links { display: inline-flex; gap: 12px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  color: var(--ink-light); background: rgba(0, 0, 0, 0.03);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-link:hover, .social-link:focus-visible { background: var(--teal-deep); color: #fff; transform: translateY(-1px); }

/* ======================= FOCUS ======================= */
a:focus-visible, .btn:focus-visible {
  outline: 3px solid rgba(94, 168, 152, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}
