:root {
  --fcs-bg: #f6f0e7;
  --fcs-paper: rgba(255, 250, 244, 0.9);
  --fcs-card: rgba(255, 248, 240, 0.94);
  --fcs-ink: #1c1917;
  --fcs-muted: #6b6258;
  --fcs-line: rgba(77, 55, 35, 0.15);
  --fcs-brand: #8b3f2e;
  --fcs-brand-deep: #59251b;
  --fcs-accent: #c88453;
  --fcs-shadow: 0 20px 48px rgba(71, 41, 25, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 132, 83, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(139, 63, 46, 0.16), transparent 32%),
    linear-gradient(180deg, #fbf5ef 0%, var(--fcs-bg) 45%, #f4ede3 100%);
  color: var(--fcs-ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
}

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

.fcs-shell {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.fcs-header,
.fcs-footer,
.fcs-card,
.fcs-project-card,
.fcs-stat-card,
.fcs-quote-card,
.fcs-process-card,
.fcs-timeline-item {
  border: 1px solid var(--fcs-line);
  box-shadow: var(--fcs-shadow);
}

.fcs-header,
.fcs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 26px;
  background: rgba(255, 251, 246, 0.8);
  backdrop-filter: blur(14px);
}

.fcs-brand {
  display: grid;
  gap: 4px;
}

.fcs-brand span,
.fcs-page-hero h1,
.fcs-hero h1,
.fcs-section-intro h2,
.fcs-card h3,
.fcs-project-card h3,
.fcs-rich-card h2,
.fcs-timeline-item h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.fcs-brand span {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.fcs-brand small {
  color: var(--fcs-muted);
  font-size: 0.88rem;
}

.fcs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.fcs-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--fcs-muted);
  font-weight: 700;
  transition: 180ms ease;
}

.fcs-nav a.is-active,
.fcs-nav a:hover {
  background: rgba(139, 63, 46, 0.12);
  color: var(--fcs-brand-deep);
}

.fcs-main {
  margin-top: 28px;
  display: grid;
  gap: 28px;
}

.fcs-hero,
.fcs-page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 36px;
  background:
    linear-gradient(145deg, rgba(255, 248, 240, 0.94), rgba(246, 233, 220, 0.86)),
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
  border: 1px solid var(--fcs-line);
  box-shadow: var(--fcs-shadow);
}

.fcs-hero::after,
.fcs-page-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 132, 83, 0.34), rgba(200, 132, 83, 0));
}

.fcs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
}

.fcs-eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(139, 63, 46, 0.1);
  color: var(--fcs-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fcs-hero h1,
.fcs-page-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.fcs-lede,
.fcs-page-hero p,
.fcs-section-intro p,
.fcs-card p,
.fcs-project-card p,
.fcs-rich-card p,
.fcs-timeline-item p,
.fcs-footer p {
  color: var(--fcs-muted);
  line-height: 1.65;
}

.fcs-lede,
.fcs-page-hero p {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 1.05rem;
}

.fcs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.fcs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--fcs-brand);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--fcs-brand);
  transition: transform 180ms ease, background 180ms ease;
}

.fcs-button:hover {
  transform: translateY(-1px);
  background: var(--fcs-brand-deep);
}

.fcs-button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--fcs-brand-deep);
}

.fcs-button-ghost {
  background: transparent;
  color: var(--fcs-brand-deep);
}

.fcs-hero-aside {
  display: grid;
  gap: 16px;
}

.fcs-quote-card,
.fcs-stat-card,
.fcs-card,
.fcs-project-card,
.fcs-process-card,
.fcs-timeline-item {
  border-radius: 24px;
  background: var(--fcs-card);
}

.fcs-quote-card {
  padding: 20px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.fcs-stat-grid,
.fcs-card-grid,
.fcs-project-grid,
.fcs-process-grid,
.fcs-two-column,
.fcs-timeline {
  display: grid;
  gap: 16px;
}

.fcs-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fcs-stat-card {
  padding: 18px;
}

.fcs-stat-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.fcs-stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--fcs-muted);
  line-height: 1.5;
}

.fcs-section {
  display: grid;
  gap: 18px;
}

.fcs-section-intro {
  display: grid;
  gap: 10px;
}

.fcs-section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.fcs-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcs-card,
.fcs-project-card,
.fcs-process-card,
.fcs-timeline-item {
  padding: 22px;
}

.fcs-card h3,
.fcs-project-card h3,
.fcs-timeline-item h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.fcs-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcs-project-meta {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--fcs-brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fcs-inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--fcs-brand-deep);
  font-weight: 700;
}

.fcs-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fcs-rich-card h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.fcs-list {
  margin: 0;
  padding-left: 18px;
  color: var(--fcs-muted);
  line-height: 1.7;
}

.fcs-list li + li {
  margin-top: 10px;
}

.fcs-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcs-timeline-item span,
.fcs-process-card span {
  display: inline-block;
  color: var(--fcs-brand);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fcs-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcs-process-card p {
  margin: 12px 0 0;
  color: var(--fcs-muted);
  line-height: 1.6;
}

.fcs-footer {
  margin-top: 28px;
}

.fcs-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fcs-footer-links a {
  color: var(--fcs-brand-deep);
  font-weight: 700;
}

@media (max-width: 980px) {
  .fcs-header,
  .fcs-footer,
  .fcs-hero,
  .fcs-card-grid,
  .fcs-project-grid,
  .fcs-two-column,
  .fcs-timeline,
  .fcs-process-grid {
    grid-template-columns: 1fr;
  }

  .fcs-header,
  .fcs-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .fcs-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .fcs-shell {
    width: min(100vw - 20px, 1200px);
    padding-top: 18px;
  }

  .fcs-header,
  .fcs-footer,
  .fcs-hero,
  .fcs-page-hero,
  .fcs-card,
  .fcs-project-card,
  .fcs-process-card,
  .fcs-timeline-item {
    border-radius: 22px;
  }

  .fcs-header,
  .fcs-footer,
  .fcs-hero,
  .fcs-page-hero,
  .fcs-card,
  .fcs-project-card,
  .fcs-process-card,
  .fcs-timeline-item {
    padding: 20px;
  }

  .fcs-hero h1,
  .fcs-page-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .fcs-stat-grid {
    grid-template-columns: 1fr;
  }
}
