:root {
  --bg: #f8fafc;
  --bg-muted: #f1f5f9;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --text-soft: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --accent: #0d6c63;
  --accent-hover: #095c54;
  --accent-soft: rgba(13, 108, 99, 0.1);
  --accent-ring: rgba(13, 108, 99, 0.25);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --container: min(1140px, calc(100% - 2rem));
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 0.65s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-anim,
  .hero-panel,
  .hero-figure img,
  .split-media img,
  .contact-photo img,
  .service-card,
  .outcome-card,
  .faq-q::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-size: 0.9em;
  background: var(--bg-muted);
  padding: 0.15em 0.4em;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo-dot {
  color: var(--accent);
  font-weight: 700;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: var(--accent-soft);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
  border-color: var(--border-strong);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  padding: 1rem 1.25rem 1.25rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.75rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* ----- Hero ----- */
.hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -8%;
  width: 45%;
  max-width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(340px, 44%);
    gap: 3.5rem;
    align-items: stretch;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.15rem;
  color: var(--text);
  max-width: 20ch;
}

.lead {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 46ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s var(--ease-out),
    box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(13, 108, 99, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 108, 99, 0.3);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--text-soft);
  background: var(--bg-muted);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

/* Hero entrance animation */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.75s var(--ease-out) forwards;
}

.hero-anim[data-anim]:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-anim[data-anim]:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-anim[data-anim]:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-anim[data-anim]:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-anim[data-anim]:nth-child(5) {
  animation-delay: 0.38s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transform: scale(1.02);
  animation: imgSettle 1.1s var(--ease-out) 0.2s forwards;
}

@keyframes imgSettle {
  to {
    transform: scale(1);
  }
}

.hero-panel {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: heroIn 0.7s var(--ease-out) 0.45s forwards;
}

.panel-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 0.35rem;
}

.panel-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  line-height: 1.35;
  color: var(--text);
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.panel-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ----- Metrics band ----- */
.band-metrics {
  padding: 2rem 0;
  background: var(--text);
  color: #e2e8f0;
}

.metrics-row {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .metrics-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.metric {
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.metric-value {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ----- Scroll reveal (progressive: hidden only when html has .js) ----- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Split sections ----- */
.section {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.split {
  background: var(--bg);
}

.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .split-reverse .split-grid {
    direction: rtl;
  }
  .split-reverse .split-grid > * {
    direction: ltr;
  }
}

.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.split-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.03);
}

.split-body p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 1rem;
}

.split-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ----- Section heads ----- */
.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2,
.split-title,
.contact-intro h2,
.faq-inner .section-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* ----- Services ----- */
.services {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.service-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-num {
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.service-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0.45rem 0 0.5rem;
  line-height: 1.3;
  color: var(--text);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----- Outcomes ----- */
.outcomes {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.outcome-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .outcome-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.outcome-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.outcome-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.outcome-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----- Approach ----- */
.approach {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.approach-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .approach-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.approach-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 48ch;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 3.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}

.steps li:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.steps span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ----- Capabilities ----- */
.capabilities {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.cap-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cap-block {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s;
}

.cap-block:hover {
  border-color: var(--accent);
}

.cap-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.cap-block p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----- FAQ ----- */
.faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-top: -4px;
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.faq-panel {
  padding: 0 0 1.15rem;
}

.faq-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 65ch;
}

/* ----- Contact ----- */
.contact {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-intro p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 44ch;
}

.contact-note {
  font-size: 0.875rem !important;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  background: var(--surface);
  color: var(--text-muted) !important;
  margin-bottom: 1.5rem !important;
}

.contact-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
}

.contact-photo:hover img {
  transform: scale(1.02);
}

.forms-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form,
.quick-contact {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field select {
  cursor: pointer;
}

.form-status {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  min-height: 1.35em;
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #b91c1c;
}

.quick-contact h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.quick-contact p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.footer-tag {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-photo-credit {
  flex: 1 1 220px;
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 360px;
}

.footer-year {
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
  }
}
