/* =========================================================================
   Swedi — swedi.abc-ti.com
   Static conversion of the original Lovable (TanStack Start + Tailwind) site.
   Plain CSS, self-hosted fonts, no external dependencies.
   ========================================================================= */

/* ---- Self-hosted fonts (Google Fonts, downloaded locally) ---- */
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/work-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/work-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design tokens: "Paper & Deep Forest" palette ---- */
:root {
  --background: #f5f3ee;
  --foreground: #292723;
  --primary: #1a3c2a;
  --primary-foreground: #faf9f5;
  --secondary: #e8e4dd;
  --muted-foreground: #6f6a60;
  --border: #dcd8ce;

  --font-serif: "Instrument Serif", ui-serif, Georgia, serif;
  --font-sans: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  --transition-elegant: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: "kern", "liga", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.italic { font-style: italic; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }

::selection { background: var(--primary); color: var(--primary-foreground); }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2.5rem; }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted-foreground);
}

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--transition-elegant);
}
.link-underline:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.reveal { animation: reveal-up 900ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1.25;
  padding: 0.75rem 1.5rem;
  transition: transform 300ms ease, background-color 300ms ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(41, 39, 35, 0.3);
  background: rgba(245, 243, 238, 0.5);
  color: var(--foreground);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--background); }
.btn-lg { padding: 1rem 2rem; }
.btn-sm { padding: 0.5rem 1.25rem; }
.btn .icon { width: 1rem; height: 1rem; }

.icon { display: inline-block; flex-shrink: 0; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 500ms, backdrop-filter 500ms, border-color 500ms;
}
.site-header.scrolled {
  background: rgba(245, 243, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.brand-tag {
  display: none;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .brand-tag { display: inline; }
}

.nav-desktop { display: none; align-items: center; gap: 2.25rem; }
.nav-desktop a {
  font-size: 0.875rem;
  color: rgba(41, 39, 35, 0.8);
  transition: color 300ms;
}
.nav-desktop a:hover { color: var(--foreground); }
.nav-desktop a.active { color: var(--foreground); font-weight: 500; }
.header-cta { display: none; }
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
}

.header-right { display: flex; align-items: center; gap: 1.5rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
}
.lang-switch a { transition: color 300ms; }
.lang-switch a:hover { color: var(--foreground); }
.lang-switch a.active { color: var(--foreground); font-weight: 600; }
.lang-switch span { color: var(--border); }
.header-right .lang-switch { display: none; }
@media (min-width: 768px) {
  .header-right .lang-switch { display: flex; }
}
.nav-mobile .lang-switch { margin-top: 0.75rem; font-size: 0.8rem; }

.error-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.error-page p[lang] { margin-top: 0.5rem; }
.error-page .error-actions .btn { margin-top: 0; }

.menu-toggle {
  display: inline-flex;
  padding: 0.5rem;
  margin-right: -0.5rem;
}
.menu-toggle .icon { width: 1.25rem; height: 1.25rem; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--background);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.5rem;
}
.nav-mobile a { font-size: 1.125rem; }
.nav-mobile .btn { margin-top: 0.5rem; width: fit-content; font-size: 0.875rem; }
@media (min-width: 768px) {
  .nav-mobile { display: none; }
}

/* ---- Hero (home) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 243, 238, 0.4),
    rgba(245, 243, 238, 0.1),
    var(--background)
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 10rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .hero-content { padding-bottom: 6rem; }
}
.hero-inner { max-width: 56rem; }
.hero .eyebrow { margin-bottom: 1.5rem; color: rgba(41, 39, 35, 0.7); }
.hero h1 {
  font-size: 2.75rem;
  line-height: 1;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 6rem; } }
.hero-lead {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(41, 39, 35, 0.8);
}
@media (min-width: 768px) { .hero-lead { font-size: 1.125rem; } }
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ---- Page header (interior pages) ---- */
.page-header { padding-top: 10rem; padding-bottom: 4rem; }
@media (min-width: 768px) {
  .page-header { padding-top: 14rem; padding-bottom: 6rem; }
}
.page-header-inner { max-width: 48rem; }
.page-header .eyebrow { margin-bottom: 1.5rem; }
.page-header h1 {
  font-size: 3rem;
  line-height: 0.95;
}
@media (min-width: 768px) { .page-header h1 { font-size: 4.5rem; } }
.page-header .intro {
  margin-top: 2rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .page-header .intro { font-size: 1.25rem; } }

/* ---- Sections ---- */
.section { padding-block: 5rem; }
.section-bordered { border-top: 1px solid var(--border); }
@media (min-width: 768px) {
  .section { padding-block: 8rem; }
}
.section-pb { padding-bottom: 6rem; }
@media (min-width: 768px) {
  .section-pb { padding-bottom: 8rem; }
}
.section-manifesto { padding-block: 6rem; }
@media (min-width: 768px) {
  .section-manifesto { padding-block: 10rem; }
}

/* Twelve-column editorial split (4 / 8) */
.split { display: grid; gap: 3rem; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 2fr; }
}
.split-half { display: grid; gap: 3rem; }
@media (min-width: 768px) {
  .split-half { grid-template-columns: 1fr 1fr; align-items: center; }
}

.manifesto-text {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) { .manifesto-text { font-size: 3rem; } }

.prose {
  display: grid;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(41, 39, 35, 0.85);
}
@media (min-width: 768px) { .prose { font-size: 1.125rem; } }

/* Section heading rows */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { font-size: 2.25rem; }
@media (min-width: 768px) { .section-head h2 { font-size: 3.75rem; } }
.section-head .all-link {
  font-size: 0.875rem;
  color: rgba(41, 39, 35, 0.8);
  align-self: flex-start;
}
@media (min-width: 768px) { .section-head .all-link { align-self: flex-end; } }

/* ---- Cell grids (1px gap trick, like the original) ---- */
.cells {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cells-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cells-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cells-4 { grid-template-columns: repeat(4, 1fr); } }
.cells-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .cells-3 { grid-template-columns: repeat(3, 1fr); } }
.cells-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .cells-2 { grid-template-columns: repeat(2, 1fr); } }

.cell {
  background: var(--background);
  padding: 2rem;
  transition: background-color 300ms;
}
a.cell:hover, .cell-hover:hover { background: var(--secondary); }

/* Home services preview cells */
.service-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.service-preview h3 { font-size: 1.5rem; }
.service-preview p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.service-preview .icon-arrow {
  margin-top: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 300ms;
}
.service-preview:hover .icon-arrow { transform: translate(4px, -4px); }

/* Services page cards */
.service-card { padding: 2rem; }
@media (min-width: 768px) { .service-card { padding: 3rem; } }
.service-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.service-card-head .rule {
  height: 1px;
  flex: 1;
  margin-inline: 1.5rem;
  background: var(--border);
}
.service-card h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .service-card h2 { font-size: 2.25rem; } }
.service-card > p { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.65; }
.service-card ul { margin-top: 2rem; display: grid; gap: 0.5rem; font-size: 0.875rem; color: rgba(41, 39, 35, 0.8); }
.service-card li { display: flex; align-items: center; gap: 0.75rem; }
.service-card li::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}

/* Pillars (about) */
.pillar { padding: 2.5rem; }
.pillar .eyebrow { margin-bottom: 1.5rem; display: block; }
.pillar p.statement {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.375;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) { .pillar p.statement { font-size: 1.875rem; } }

/* ---- Images ---- */
.img-frame {
  width: 100%;
  height: auto;
  border-radius: 0.125rem;
  object-fit: cover;
}
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-21-9 { aspect-ratio: 21 / 9; }

/* ---- About preview (home) ---- */
.about-preview h2 { font-size: 2.25rem; }
@media (min-width: 768px) { .about-preview h2 { font-size: 3rem; } }
.about-preview .eyebrow { margin-bottom: 1.5rem; display: block; }
.about-preview p.body {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .about-preview p.body { font-size: 1.125rem; } }
.about-preview .link-underline { margin-top: 2rem; font-size: 0.875rem; }
@media (max-width: 767px) {
  .split-half .media-first { order: -1; }
}

/* ---- CTA section ---- */
.cta { text-align: center; }
.cta .eyebrow { margin-bottom: 1.5rem; display: block; }
.cta h2 {
  font-size: 2.25rem;
  max-width: 48rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .cta h2 { font-size: 3.75rem; } }
.cta .btn { margin-top: 2.5rem; }

/* ---- Why Swedi reasons ---- */
.reasons { display: grid; gap: 4rem; }
@media (min-width: 768px) {
  .reasons { grid-template-columns: repeat(2, 1fr); column-gap: 6rem; row-gap: 5rem; }
}
.reason-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reason-head .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
}
.reason-head .rule { height: 1px; flex: 1; background: var(--border); }
.reason h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .reason h2 { font-size: 2.25rem; } }
.reason p { margin-top: 1rem; font-size: 1rem; line-height: 1.65; color: var(--muted-foreground); }
@media (min-width: 768px) { .reason p { font-size: 1.125rem; } }

/* ---- Projects ---- */
.projects-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.project-card .type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}
.project-card h3 { font-size: 1.5rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .project-card h3 { font-size: 1.875rem; } }
.project-card .status {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-foreground);
}
.projects-cta { margin-top: 5rem; text-align: center; }
.projects-cta p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  max-width: 42rem;
  margin-inline: auto;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) { .projects-cta p { font-size: 1.875rem; } }
.projects-cta .btn { margin-top: 2rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}
.contact-info { display: grid; gap: 2.5rem; align-content: start; }
.contact-info .eyebrow { margin-bottom: 0.75rem; display: block; }
.contact-info a, .contact-info p { font-size: 1.125rem; line-height: 1.65; }

.contact-form { display: grid; gap: 2rem; }
.form-row { display: grid; gap: 2rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; margin-bottom: 0.75rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  padding-block: 0.75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--foreground);
}
.field textarea { resize: none; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(111, 106, 96, 0.6); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
.contact-form .btn { justify-self: start; }

.form-success {
  border-radius: 0.125rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 3rem;
  text-align: center;
}
.form-success[hidden] { display: none; }
.form-success .eyebrow { margin-bottom: 1rem; display: block; }
.form-success h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .form-success h2 { font-size: 2.25rem; } }
.form-success p { margin-top: 1rem; color: var(--muted-foreground); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
}
.footer-inner { padding-block: 4rem; }
@media (min-width: 768px) { .footer-inner { padding-block: 6rem; } }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  letter-spacing: -0.015em;
}
.footer-desc {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
.footer-col .eyebrow { margin-bottom: 1rem; display: block; }
.footer-col ul { display: grid; gap: 0.5rem; font-size: 0.875rem; }
.footer-col a { transition: color 300ms; }
.footer-col a:hover { color: var(--primary); }
.footer-col .muted { color: var(--muted-foreground); padding-top: 0.5rem; }
.footer-bottom {
  margin-top: 4rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-bottom .links { display: flex; gap: 1.5rem; }
.footer-bottom a { transition: color 300ms; }
.footer-bottom a:hover { color: var(--foreground); }

/* ---- 404 / error page ---- */
.error-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
.error-page-inner { max-width: 28rem; text-align: center; }
.error-page .eyebrow { margin-bottom: 1rem; display: block; }
.error-page h1 { font-size: 3rem; }
.error-page p { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }
.error-page .btn { margin-top: 2rem; }
