:root {
  --background: #fafaf8;
  --foreground: #1a1a1a;
  --muted: #f5f3f0;
  --muted-foreground: #6b6b6b;
  --accent: #b8860b;
  --accent-secondary: #d4a84b;
  --accent-foreground: #ffffff;
  --border: #e8e4df;
  --card: #ffffff;
  --ring: #b8860b;
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.07);
  --shadow-lg: 0 14px 40px rgba(26, 26, 26, 0.1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 14%, rgba(184, 134, 11, 0.08), transparent 28rem),
    linear-gradient(115deg, rgba(250, 250, 248, 1), rgba(245, 243, 240, 0.72));
  content: "";
}

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

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

.paper-texture {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.018) 1px, transparent 1px);
  background-size: 14px 14px, 18px 18px;
  mix-blend-mode: multiply;
}

.cursor-light {
  position: fixed;
  left: var(--cursor-x, 50vw);
  top: var(--cursor-y, 20vh);
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.12), transparent 66%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease-out;
}

.site-header {
  position: fixed;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: min(820px, calc(100% - 2rem));
  min-height: 62px;
  padding: 0.55rem clamp(0.75rem, 2vw, 1.15rem);
  border: 1px solid rgba(232, 228, 223, 0.82);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-nav a,
.lang-toggle,
.site-footer a,
.project-card a,
.timeline-card a {
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 200ms ease-out, text-decoration-color 200ms ease-out;
}

.site-nav a:hover,
.lang-toggle:hover,
.site-footer a:hover,
.project-card a:hover,
.timeline-card a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.lang-toggle {
  min-width: 3.1rem;
  min-height: 34px;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(184, 134, 11, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out;
}

.lang-toggle:hover {
  border-color: var(--accent);
  background: rgba(245, 243, 240, 0.86);
}

.header-cta {
  display: none;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--muted);
  color: var(--accent);
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  border: 1px solid var(--foreground);
  border-radius: 6px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  background: rgba(250, 250, 248, 0.88);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  background: var(--foreground);
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  width: min(72vw, 220px);
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-panel a {
  min-height: 44px;
  padding: 0.52rem 0.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mobile-menu-panel a:hover {
  background: var(--muted);
  color: var(--accent);
}

.mobile-lang-toggle {
  width: 100%;
  min-height: 44px;
  margin-top: 0.25rem;
  justify-content: center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 520px) clamp(210px, 19vw, 245px);
  justify-content: center;
  align-items: center;
  column-gap: clamp(2rem, 7vw, 5.5rem);
  min-height: auto;
  padding: clamp(7.25rem, 14vh, 9rem) max(1.25rem, calc((100vw - 1120px) / 2)) clamp(3rem, 7vh, 4.5rem);
  overflow: visible;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: clamp(210px, 19vw, 245px);
  justify-self: start;
  align-self: center;
  margin-top: 0;
  display: grid;
  gap: 0.7rem;
  transform: translate3d(calc(var(--parallax-x, 0) * 0.65px), calc(var(--parallax-y, 0) * 0.65px), 0);
}

.hero-visual::before {
  position: absolute;
  inset: -0.85rem -0.85rem auto auto;
  z-index: -1;
  width: 58%;
  height: 54%;
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-photo {
  position: relative;
  width: 100%;
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 240, 0.58)),
    var(--card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: photo-pop-out 780ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  transform-origin: 72% 38%;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border: 8px solid #050505;
  border-radius: 4px;
  object-fit: contain;
  filter: sepia(0.14) contrast(1.08) saturate(0.78) brightness(1.03);
}

@keyframes photo-pop-out {
  0% {
    opacity: 0;
    transform: translate3d(18px, 18px, 0) scale(0.88) rotate(0.8deg);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.04);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.025) rotate(-0.25deg);
    box-shadow: var(--shadow-lg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    box-shadow: var(--shadow-md);
  }
}

.photo-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.32), transparent 58%);
  transform: translateX(calc(-70% + var(--scroll-progress, 0) * 140%));
}

.hero-content {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  width: min(520px, 100%);
  align-self: center;
}

.eyebrow,
.small-caps,
.section-label p {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 500px;
  margin-top: 0;
  font-size: clamp(3rem, 5.2vw, 4.65rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  font-size: 1.45rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 500px;
  margin: 1.75rem 0 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  min-height: 46px;
  padding: 0.62rem 1.1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 200ms ease-out, border-color 200ms ease-out, color 200ms ease-out, box-shadow 200ms ease-out;
}

.button.primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 8px 18px rgba(184, 134, 11, 0.14);
}

.button.primary:hover {
  border-color: var(--accent-secondary);
  background: var(--accent-secondary);
  box-shadow: 0 12px 26px rgba(184, 134, 11, 0.18);
}

.button.secondary {
  border: 1px solid var(--foreground);
  background: rgba(250, 250, 248, 0.68);
  color: var(--foreground);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero-panel dl {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 0;
}

.hero-panel div {
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}

.hero-panel dt {
  color: var(--muted-foreground);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.25;
}

.section {
  padding: clamp(5rem, 12vw, 9rem) max(1.25rem, calc((100vw - 1120px) / 2));
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-label span {
  height: 1px;
  flex: 1;
  background: var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-copy {
  color: var(--muted-foreground);
  font-size: 1.1rem;
}

.about-copy p {
  margin: 0 0 1.4rem;
}

.timeline-section {
  background: linear-gradient(180deg, transparent, rgba(245, 243, 240, 0.76), transparent);
}

.timeline-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 6vw, 4rem);
  margin-bottom: 3.5rem;
}

.timeline-heading p,
.projects-header p,
.contact-panel p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.35rem;
}

.timeline::before {
  position: absolute;
  left: min(12rem, 26vw);
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--border);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 12rem) minmax(0, 1fr);
  gap: 2rem;
}

.timeline-item::before {
  position: absolute;
  left: calc(min(12rem, 26vw) - 5px);
  top: 1.6rem;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--background);
  content: "";
}

.timeline-date {
  padding-top: 1.28rem;
  color: var(--muted-foreground);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-card,
.project-card,
.contact-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease-out, background 200ms ease-out, box-shadow 200ms ease-out;
}

.timeline-card {
  padding: 1.5rem;
}

.project-logo {
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--muted);
  box-shadow: var(--shadow-sm);
  color: var(--foreground);
}

.project-logo.large {
  width: 4rem;
  height: 4rem;
}

.project-logo.kyg-logo {
  width: 7.5rem;
  color: var(--foreground);
}

.project-logo.large.kyg-logo {
  width: 8.75rem;
}

.project-logo img {
  width: 100%;
  height: 100%;
  padding: 0.35rem;
  object-fit: contain;
}

.aither-logo {
  border-color: rgba(26, 26, 26, 0.18);
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.94), rgba(73, 70, 61, 0.88)),
    var(--foreground);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-card:hover,
.project-card:hover {
  border-color: rgba(184, 134, 11, 0.42);
  background: rgba(245, 243, 240, 0.72);
  box-shadow: var(--shadow-md);
}

.timeline-card h3,
.project-card h3 {
  margin-top: 0.45rem;
}

.timeline-card p:not(.small-caps),
.project-card p:not(.small-caps) {
  margin: 0.75rem 0 1rem;
  color: var(--muted-foreground);
}

.timeline-card a,
.project-card a {
  color: var(--foreground);
  font-weight: 700;
}

.featured .timeline-card,
.accent-card {
  border-top: 2px solid var(--accent);
}

.projects-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(2rem, 6vw, 4rem);
  margin-bottom: 2.5rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  min-height: 255px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}

.project-card a {
  margin-top: auto;
}

.case-study-section {
  padding-top: clamp(4rem, 9vw, 7rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(245, 243, 240, 0.78));
}

.case-study {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.case-study-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.case-study-hero h2 {
  max-width: 780px;
  margin-top: 0.75rem;
}

.case-study-block {
  display: grid;
  gap: 1rem;
}

.case-study-block > p {
  max-width: 880px;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.case-study-block h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card {
  min-height: 178px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.feature-card h4 {
  margin: 0;
  color: var(--foreground);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.feature-card p {
  margin: 0.65rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.94rem;
  line-height: 1.55;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.architecture-flow span {
  position: relative;
  min-height: 54px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  color: var(--foreground);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-flow span:not(:last-child)::after {
  position: absolute;
  right: -0.58rem;
  top: 50%;
  width: 0.38rem;
  height: 1px;
  background: rgba(184, 134, 11, 0.55);
  content: "";
}

.split-block {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.engineering-list,
.roadmap-list {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.engineering-list li,
.roadmap-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted-foreground);
}

.engineering-list li::before,
.roadmap-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.stack-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stack-grid p {
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 0.22rem;
  background: rgba(255, 255, 255, 0.72);
}

.stack-grid strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-grid span {
  color: var(--foreground);
  line-height: 1.45;
}

.split-block p {
  margin: 1rem 0 0;
  color: var(--muted-foreground);
}

.contact-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.contact-panel {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  inset: auto -10% -45% auto;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(184, 134, 11, 0.16);
  border-radius: 50%;
  content: "";
}

.contact-panel h2 {
  position: relative;
  max-width: 760px;
  margin-top: 0.85rem;
}

.contact-panel p:not(.small-caps) {
  position: relative;
  max-width: 600px;
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(1.25rem, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  body::before {
    background:
      radial-gradient(circle at 82% 8%, rgba(184, 134, 11, 0.08), transparent 22rem),
      linear-gradient(180deg, rgba(250, 250, 248, 1), rgba(245, 243, 240, 0.82));
  }

  .site-header {
    left: 0.5rem;
    right: 0.5rem;
    width: min(720px, calc(100% - 1rem));
    min-height: 56px;
  }

  .site-nav,
  .header-cta,
  .mobile-menu {
    display: none;
  }

  .site-nav {
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 0;
    font-size: clamp(0.72rem, 2.35vw, 0.88rem);
  }

  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
    min-height: auto;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    order: 2;
    width: min(100%, 240px);
    justify-self: center;
    margin-top: 0;
    margin-left: 0;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-panel {
    max-width: none;
  }

  .about-grid,
  .timeline-heading,
  .projects-header,
  .case-study-hero,
  .split-block {
    grid-template-columns: 1fr;
  }

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

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

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

  .architecture-flow span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0.75rem;
    left: 0.375rem;
    right: 0.375rem;
    width: calc(100% - 0.75rem);
    min-height: 52px;
    padding: 0.4rem 0.35rem;
  }

  .site-nav {
    font-size: clamp(0.63rem, 2.55vw, 0.76rem);
    letter-spacing: 0.02em;
  }

  .lang-toggle {
    min-width: 2.8rem;
    min-height: 32px;
    padding: 0.22rem 0.42rem;
    font-size: inherit;
  }

  .header-cta {
    padding-inline: 0.75rem;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 5.5rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .hero-visual {
    width: min(100%, 210px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .timeline::before,
  .timeline-item::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .timeline-date {
    padding-top: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .case-study-hero .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
