/* ═══════════════════════════════════════════
   DESIGN TOKENS — edit these to retheme the
   entire site in one place
═══════════════════════════════════════════ */
:root {
  --cream: #F7F4EE;
  --cream-dark: #EDE8DF;
  --ink: #1C1917;
  --ink-light: #57534E;
  --ink-muted: #A8A29E;
  --coral: #E8572A;           /* ← your accent colour */
  --coral-light: #FBE9E2;
  --coral-dim: rgba(232,87,42,0.12);
  --white: #FFFFFF;
  --border: #E2DDD6;
  --shadow: 0 4px 24px rgba(28,25,23,0.08);
  --shadow-lg: 0 16px 48px rgba(28,25,23,0.14);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* Cursor glow blob */
#cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,87,42,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.6s ease, top 0.6s ease;
  z-index: 0;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 150px;
  pointer-events: none; z-index: 1; opacity: 0.5;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.05; }
h4 { font-family: 'Outfit', sans-serif; font-weight: 600; }

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,244,238,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
}
.logo {
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
}
.logo span { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-light); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem; background: var(--ink);
  color: var(--cream) !important; border-radius: 100px;
  font-weight: 600 !important; font-size: 0.875rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--coral) !important; transform: scale(1.04); }
.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.4rem; color: var(--ink); font-size: 1.5rem;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem; gap: 1.2rem;
  }
  .mobile-toggle { display: block; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; position: relative; overflow: hidden; background: var(--cream);
}
.hero-deco {
  position: absolute; right: -2rem; top: 50%; transform: translateY(-52%);
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(280px, 30vw, 440px); color: transparent;
  -webkit-text-stroke: 1.5px var(--border); line-height: 1;
  user-select: none; pointer-events: none; opacity: 0.7;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--coral-light); border: 1px solid rgba(232,87,42,0.2);
  border-radius: 100px; padding: 0.4rem 1rem 0.4rem 0.5rem; margin-bottom: 2.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.hero-badge span { font-size: 0.75rem; font-weight: 600; color: var(--coral); letter-spacing: 0.05em; }
.hero-h1 {
  font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 2rem;
}
.hero-h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.hero-desc {
  font-size: 1.15rem; color: var(--ink-light); line-height: 1.7; max-width: 560px;
  border-left: 3px solid var(--coral); padding-left: 1.2rem; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem; background: var(--ink); color: var(--cream);
  border-radius: 100px; font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(28,25,23,0.2);
}
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,87,42,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem; background: transparent; color: var(--ink);
  border: 2px solid var(--border); border-radius: 100px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--cream-dark); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-num {
  font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900;
  color: var(--ink); line-height: 1; margin-bottom: 0.2rem;
}
.stat-label { font-size: 0.8rem; color: var(--ink-muted); font-weight: 500; }
.arrow-svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker-wrap { background: var(--ink); padding: 0.85rem 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 1rem; padding: 0 2rem;
  font-size: 0.8rem; font-weight: 600; color: var(--cream-dark);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about { padding: 8rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
.section-label { display: inline-flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.section-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--ink-muted); }
.about-h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 2rem; }
.about-h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.about-body p { font-size: 1.05rem; color: var(--ink-light); line-height: 1.8; margin-bottom: 1.4rem; }
.approach-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.approach-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.4rem 1.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.approach-card:hover { border-color: var(--coral); box-shadow: var(--shadow); }
.approach-num {
  font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 900;
  color: var(--coral-light); line-height: 1; min-width: 2.5rem; transition: color 0.2s;
}
.approach-card:hover .approach-num { color: var(--coral); }
.approach-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; color: var(--ink); }
.approach-desc { font-size: 0.9rem; color: var(--ink-light); line-height: 1.6; }
.blockquote { margin-top: 3rem; border-left: 3px solid var(--coral); padding-left: 1.5rem; }
.blockquote p { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.5; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services { padding: 8rem 0; background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.services-h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; }
.services-sub { font-size: 1rem; color: var(--ink-light); max-width: 320px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2.2rem 2.4rem; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; cursor: default;
}
.service-card:hover { border-color: var(--coral); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.service-icon {
  width: 52px; height: 52px; background: var(--ink); border-radius: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--cream); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-num { font-size: 0.8rem; font-weight: 700; color: var(--ink-muted); }
.service-title { font-size: 1.5rem; font-weight: 900; font-family: 'Fraunces', serif; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.service-sub { font-size: 0.9rem; color: var(--ink-light); margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
.service-features li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink-light); line-height: 1.5; }
.service-features li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); margin-top: 0.5rem; flex-shrink: 0; }
.service-features li strong { color: var(--ink); font-weight: 600; }
.service-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.4rem; }
.service-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 1.4rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 700; color: var(--ink); text-decoration: none; transition: gap 0.2s, color 0.2s; }
.service-link:hover { color: var(--coral); gap: 0.8rem; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-section { padding: 5rem 0; border-top: 1px solid var(--border); margin-top: 5rem; }
.process-h3 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; text-align: center; margin-bottom: 0.8rem; }
.process-sub { text-align: center; color: var(--ink-light); font-size: 1rem; margin-bottom: 3.5rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { background: var(--cream); border: 1px solid var(--border); border-radius: 1rem; padding: 1.8rem 1.6rem; }
.process-step.highlight { background: var(--ink); border-color: var(--ink); }
.process-step .week-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.8rem; }
.process-icon-box { width: 44px; height: 44px; border-radius: 0.7rem; background: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.process-step.highlight .process-icon-box { background: rgba(255,255,255,0.1); }
.process-icon-box svg { width: 20px; height: 20px; fill: none; stroke: var(--cream); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: var(--ink); }
.process-step.highlight .process-title { color: var(--white); }
.process-desc { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; }
.process-step.highlight .process-desc { color: var(--ink-muted); }
.work-cta { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid var(--border); text-align: center; }
.work-cta h3 { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900; color: var(--ink); letter-spacing: -0.025em; margin-bottom: 0.8rem; }
.work-cta p { color: var(--ink-light); font-size: 1rem; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════ */
#work { padding: 8rem 0; background: var(--cream); }
.work-header { margin-bottom: 4rem; }
.work-h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 1rem; max-width: 600px; }
.work-sub { font-size: 1.05rem; color: var(--ink-light); max-width: 540px; line-height: 1.7; }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 860px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2.4rem; transition: border-color 0.25s, box-shadow 0.25s; box-shadow: var(--shadow); }
.case-card:hover { border-color: var(--coral); box-shadow: var(--shadow-lg); }
.case-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.case-icon { width: 52px; height: 52px; background: var(--ink); border-radius: 0.9rem; display: flex; align-items: center; justify-content: center; }
.case-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--cream); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.case-tag { font-size: 0.75rem; font-weight: 700; color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.case-title { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 900; color: var(--ink); letter-spacing: -0.025em; margin-bottom: 1rem; line-height: 1.2; }
.case-desc { font-size: 0.95rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1.8rem; }
.case-solution { background: var(--cream); border-radius: 0.9rem; padding: 1.4rem 1.6rem; border: 1px solid var(--border); margin-bottom: 1.8rem; }
.case-solution h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.case-solution ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.case-solution li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.875rem; color: var(--ink-light); line-height: 1.5; }
.case-solution li::before { content: '→'; color: var(--coral); flex-shrink: 0; font-weight: 700; }
.case-metrics { background: var(--ink); border-radius: 0.9rem; padding: 1.4rem 1.6rem; margin-bottom: 1.2rem; }
.metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.metric-label-b { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #78716C; margin-bottom: 0.3rem; }
.metric-label-a { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.3rem; }
.metric-val-b { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; color: #57534E; line-height: 1; margin-bottom: 0.2rem; }
.metric-val-a { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; color: var(--coral); line-height: 1; margin-bottom: 0.2rem; }
.metric-desc { font-size: 0.78rem; color: #78716C; }
.metric-desc-a { font-size: 0.78rem; color: rgba(232,87,42,0.7); }
.case-result { background: var(--cream); border: 1px solid var(--border); border-radius: 0.9rem; padding: 1.2rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; }
.result-check { width: 32px; height: 32px; border-radius: 0.5rem; background: rgba(232,87,42,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.result-check svg { width: 16px; height: 16px; fill: none; stroke: var(--coral); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.result-title { font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.2rem; }
.result-desc { font-size: 0.85rem; color: var(--ink-light); line-height: 1.5; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact { padding: 8rem 0; background: var(--white); }
.contact-h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 1rem; max-width: 560px; }
.contact-h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.contact-sub { font-size: 1.05rem; color: var(--ink-light); max-width: 520px; line-height: 1.7; margin-bottom: 3.5rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 4rem; }
@media (max-width: 768px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: var(--cream); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2rem; text-decoration: none; color: inherit; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; display: block; }
.contact-card:hover { border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card-icon { width: 52px; height: 52px; background: var(--ink); border-radius: 0.9rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: background 0.2s, transform 0.2s; }
.contact-card:hover .contact-card-icon { background: var(--coral); transform: scale(1.08); }
.contact-card-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--cream); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.875rem; color: var(--ink-light); margin-bottom: 1rem; line-height: 1.5; }
.contact-card .contact-link { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.contact-cta-box { background: var(--ink); border-radius: 1.5rem; padding: 3.5rem; text-align: center; }
.contact-cta-box h3 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: var(--white); letter-spacing: -0.025em; margin-bottom: 0.8rem; }
.contact-cta-box p { color: #A8A29E; font-size: 1rem; margin-bottom: 2rem; }
.btn-light { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2.2rem; background: var(--white); color: var(--ink); border-radius: 100px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.btn-light:hover { background: var(--coral); color: var(--white); transform: scale(1.04); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: var(--ink); padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--coral); }
.footer-desc { font-size: 0.9rem; color: #78716C; line-height: 1.7; max-width: 320px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.social-btn { width: 38px; height: 38px; background: #292524; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--coral); }
.social-btn svg { width: 16px; height: 16px; fill: none; stroke: #A8A29E; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover svg { stroke: var(--white); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.875rem; color: #78716C; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid #292524; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: #57534E; }

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; background: var(--ink);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, background 0.2s;
  box-shadow: var(--shadow); z-index: 50;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--coral); transform: scale(1.1); }
#back-to-top svg { width: 18px; height: 18px; fill: none; stroke: var(--cream); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
