:root {
  --bg: #f7f4ed;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-accent: rgba(0, 204, 192, 0.08);
  --text: #3b4a5a;
  --muted: #6d746f;
  --line: rgba(59, 74, 90, 0.14);
  --accent: #ff4858;
  --accent-soft: rgba(255, 72, 88, 0.12);
  --petrol: #1b7f79;
  --cyan: #00ccc0;
  --sun: #ffc400;
  --sage: #8e9b81;
  --stone: #a79e95;
  --shadow: 0 22px 52px rgba(59, 74, 90, 0.1);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 204, 192, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 72, 88, 0.14), transparent 24%),
    radial-gradient(circle at 72% 38%, rgba(255, 72, 88, 0.09), transparent 18%),
    radial-gradient(circle at 12% 78%, rgba(255, 196, 0, 0.12), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(27, 127, 121, 0.12), transparent 24%),
    radial-gradient(circle at 52% 22%, rgba(142, 155, 129, 0.1), transparent 20%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
  background-attachment: fixed;
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

body.intro-enabled {
  overflow: hidden;
}

body.intro-stage-logo {
  overflow: hidden;
}

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

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

.shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
}

.shell::before,
.shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.55;
}

.shell::before {
  width: 340px;
  height: 340px;
  top: -60px;
  right: -120px;
  background: rgba(27, 127, 121, 0.24);
}

.shell::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 10%;
  background: rgba(255, 196, 0, 0.18);
}

.shell::before {
  box-shadow: 180px 260px 0 0 rgba(255, 72, 88, 0.09);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.container-full-bleed {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 252, 246, 0.84);
  border-bottom: 1px solid rgba(31, 36, 48, 0.06);
  transition: background-color 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

body.intro-enabled .site-header {
  opacity: 0;
}

body.intro-complete .site-header,
body:not(.intro-enabled) .site-header {
  opacity: 1;
  transition: opacity 320ms ease, background-color 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 126px;
  gap: 20px;
  transition: min-height 180ms ease;
}

.intro-logo-screen {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 420ms ease, visibility 420ms ease;
  cursor: pointer;
}

.intro-logo-image {
  width: min(78vw, 920px);
  max-height: 72vh;
  object-fit: contain;
  transform-origin: center center;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
}

body.intro-moving .intro-logo-image {
  transform: translate3d(-36vw, -34vh, 0) scale(0.19);
}

body.intro-fade .intro-logo-screen {
  opacity: 0;
  visibility: hidden;
}

.intro-message-screen {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-message-inner {
  width: min(900px, calc(100% - 48px));
  text-align: center;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease;
}

.intro-message-screen .intro-message-eyebrow {
  margin: 0 0 18px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 500;
}

.intro-message-screen h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: none;
  line-height: 1.02;
  font-weight: 500;
  color: var(--text);
}

body.intro-show-message .intro-message-screen {
  opacity: 1;
  visibility: visible;
}

body.intro-glide-message .intro-message-inner {
  width: min(820px, calc(100% - 80px));
  text-align: left;
  transform: translate3d(-18vw, -14vh, 0) scale(0.72);
}

body.intro-show-message .hero,
body.intro-show-message .section,
body.intro-stage-logo .hero,
body.intro-stage-logo .section {
  opacity: 0;
}

body.intro-reveal-hero .intro-message-screen {
  opacity: 0;
  visibility: hidden;
  transition: opacity 920ms ease, visibility 920ms ease;
}

body.intro-reveal-hero .hero,
body.intro-reveal-hero .section {
  opacity: 1;
}

.hero-copy,
.hero-body,
.hero-portrait {
  transition:
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1100ms ease;
}

body.intro-enabled .hero-copy {
  opacity: 0;
  transform: translate3d(-72px, 0, 0);
}

body.intro-enabled .hero-body {
  opacity: 0;
  transform: translate3d(-48px, 24px, 0);
}

body.intro-enabled .hero-portrait {
  opacity: 0;
  transform: translate3d(72px, 0, 0);
}

body.intro-reveal-hero .hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.intro-reveal-hero .hero-body {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 120ms;
}

body.intro-reveal-hero .hero-portrait {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 120ms;
}

body.intro-complete .hero,
body.intro-complete .section,
body:not(.intro-enabled) .hero,
body:not(.intro-enabled) .section {
  opacity: 1;
  transition: opacity 900ms ease;
}

body.intro-complete .hero-copy,
body.intro-complete .hero-body,
body.intro-complete .hero-portrait,
body:not(.intro-enabled) .hero-copy,
body:not(.intro-enabled) .hero-body,
body:not(.intro-enabled) .hero-portrait {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo img {
  width: auto;
  height: 142px;
  object-fit: contain;
  transition: height 180ms ease, transform 180ms ease;
}

.site-header.is-compact {
  background: rgba(252, 250, 247, 0.92);
  box-shadow: 0 10px 24px rgba(59, 74, 90, 0.06);
}

.site-header.is-compact .container {
  min-height: 78px;
}

.site-header.is-compact .brand-logo img {
  height: 76px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  padding: 88px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "heading image"
    "body image";
  gap: 32px;
  align-items: start;
}

.hero-copy {
  grid-area: heading;
  padding: 18px 0 0;
  min-width: 0;
}

.hero-body {
  grid-area: body;
  min-width: 0;
}

.hero-card,
.panel,
.feature-card,
.quote-card,
.contact-card,
.timeline-card,
.list-card,
.cta-card {
  background: var(--surface);
  border: 1px solid rgba(59, 74, 90, 0.1);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 52px 52px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
}

.hero-card.hero-card-plain,
.panel.panel-plain,
.feature-card.feature-card-plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.hero-card.hero-card-plain::after,
.feature-card.feature-card-plain::before {
  display: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: 18px;
  top: 18px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border: 0;
  background: linear-gradient(135deg, rgba(255, 72, 88, 0.08), rgba(0, 204, 192, 0.06));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  max-width: 10ch;
  line-height: 0.98;
  font-weight: 500;
}

.hero-title-soft {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 12ch;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.page-title-soft {
  max-width: 14ch;
  margin-bottom: 18px;
}

.section-title-soft {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.18rem;
  max-width: 62ch;
  color: #303748;
  margin: 22px 0 0;
}

.hero-card .lead:first-of-type {
  font-size: 1.16rem;
  color: var(--text);
}

.hero-copy .lead {
  max-width: 66ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-body .lead {
  max-width: 66ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-lead-emphasis,
.hero-lead-regular {
  font-size: 1.06rem;
}

.hero-lead-emphasis {
  font-style: italic;
}

.hero-lead-regular {
  font-style: normal;
}

.hero-copy .lead + .lead {
  margin-top: 16px;
}

.hero-body .lead + .lead {
  margin-top: 16px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  background: linear-gradient(180deg, #ff6a76 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 72, 88, 0.24);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 36, 48, 0.12);
  color: var(--text);
}

.button:hover,
.ghost-button:hover,
.button:focus-visible,
.ghost-button:focus-visible {
  transform: translateY(-2px);
}

.hero-side {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.hero-portrait {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-portrait.hero-portrait-plain {
  grid-area: image;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-height: 0;
  width: 100%;
  justify-self: center;
}

.hero-portrait img,
.editorial-image img,
.inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait img {
  min-height: 620px;
  object-position: center 18%;
}

.hero-portrait.hero-portrait-plain img {
  width: 100%;
  max-width: 100%;
  min-height: 760px;
  border-radius: 10px;
  object-position: 72% 12%;
}

.hero-portrait figcaption,
.editorial-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(59, 74, 90, 0.08);
  color: var(--text);
  font-weight: 700;
}

.hero-portrait.hero-portrait-plain figcaption {
  position: static;
  max-width: none;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.65;
  backdrop-filter: none;
}

.panel {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.panel p,
.feature-card p,
.quote-card p,
.contact-card p,
.timeline-card p,
.list-card p,
.cta-card p,
section p {
  margin: 0;
  color: var(--muted);
}

.signal-list,
.pill-list,
.stat-list,
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal-list li,
.plain-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
}

.signal-list li:last-child,
.plain-list li:last-child {
  border-bottom: 0;
}

.signal-list strong,
.plain-list strong {
  display: block;
  color: var(--text);
}

.list-card .plain-list strong {
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 127, 121, 0.08);
  color: var(--petrol);
  font-size: 0.94rem;
  font-weight: 700;
}

.stat-list {
  display: grid;
  gap: 14px;
}

.stat-list li {
  padding: 16px 0 0;
  border-top: 1px solid rgba(31, 36, 48, 0.08);
}

.stat-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.stat-list strong {
  display: block;
  font-size: 1.55rem;
  color: var(--text);
  margin-bottom: 4px;
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(0, 204, 192, 0.06), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 15% 18%, rgba(255, 72, 88, 0.05), transparent 24%),
    radial-gradient(circle at 72% 26%, rgba(255, 72, 88, 0.05), transparent 18%),
    radial-gradient(circle at 85% 70%, rgba(255, 196, 0, 0.06), transparent 20%);
}

.section-tags {
  padding-top: 22px;
  padding-bottom: 34px;
  background: linear-gradient(135deg, rgba(59, 74, 90, 0.98), rgba(27, 127, 121, 0.96));
}

.section-tags .container {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-divider {
  padding-top: 8px;
}

.section-divider .container {
  border-top: 1px solid rgba(59, 74, 90, 0.1);
  padding-top: 44px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-intro-tight {
  margin-bottom: 0;
}

.section-intro p {
  font-size: 1.08rem;
  line-height: 1.72;
}

.feature-grid,
.two-column,
.card-grid,
.logos-grid,
.timeline-grid,
.contact-grid,
.split-grid,
.editorial-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.quote-card,
.contact-card,
.timeline-card,
.list-card,
.cta-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.feature-card {
  min-height: 100%;
  position: relative;
}

.feature-card-large {
  padding: 38px 36px 34px;
}

.feature-card-large p + p {
  margin-top: 18px;
}

.feature-card h3,
.feature-card-large h3,
.list-card h3 {
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.feature-card::before,
.list-card::before,
.contact-card::before,
.timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan) 55%, transparent 78%);
}

.service-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.service-preview-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(59, 74, 90, 0.1);
}

.service-preview-item {
  padding: 24px 0 22px;
  border-bottom: 1px solid rgba(59, 74, 90, 0.1);
}

.service-preview-item h3 {
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin-bottom: 0;
}

.service-preview-image {
  margin: 0;
  align-self: stretch;
  justify-self: start;
}

.service-preview-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255, 72, 88, 0.14), rgba(0, 204, 192, 0.12));
  color: var(--petrol);
  font-weight: 800;
  letter-spacing: 0.06em;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

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

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

.editorial-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.editorial-grid.editorial-grid-airy {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 40px;
}

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

.logo-chip {
  padding: 20px 18px;
  border-radius: 10px;
  border: 1px solid rgba(31, 36, 48, 0.09);
  background: rgba(255, 255, 255, 0.52);
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.logo-chip strong {
  font-size: 1rem;
}

.logo-chip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(27, 127, 121, 0.96), rgba(59, 74, 90, 0.98));
  color: #f8f5ef;
  border: 0;
  min-height: 100%;
  padding: 24px;
}

.quote-card.quote-card-coral {
  background:
    linear-gradient(145deg, rgba(255, 72, 88, 0.9), rgba(59, 74, 90, 0.98) 80%);
}

.quote-card.quote-card-sun {
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.88), rgba(27, 127, 121, 0.96) 84%);
}

.quote-card::before,
.quote-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

.quote-card::before {
  width: 128px;
  height: 128px;
  right: -22px;
  top: -22px;
  background: rgba(255, 255, 255, 0.24);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.quote-card::after {
  left: 18px;
  bottom: 10px;
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 5.8rem;
  line-height: 1;
  content: "“";
  color: rgba(255, 255, 255, 0.16);
}

.quote-card p,
.quote-card footer {
  color: rgba(248, 245, 239, 0.88);
}

.quote-card .section-tag {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 18px;
}

.quote-card .section-tag::after {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.72;
  font-weight: 400;
}

.quote-side-title {
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.quote-card footer {
  position: relative;
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.quote-grid-equal {
  align-items: stretch;
}

.quote-card.quote-card-image {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(59, 74, 90, 0.08);
  box-shadow: var(--shadow);
  padding: 16px;
}

.quote-card.quote-card-image::before,
.quote-card.quote-card-image::after {
  display: none;
}

.quote-card.quote-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

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

.timeline-card {
  position: relative;
}

.timeline-card::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 28px;
  top: 30px;
  box-shadow: 0 0 0 8px rgba(255, 72, 88, 0.12);
}

.timeline-card h3,
.timeline-card p {
  padding-left: 30px;
}

.editorial-image,
.inline-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 100%;
  box-shadow: var(--shadow);
  background: #fff;
}

.editorial-image.editorial-image-plain {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

.editorial-image.editorial-image-plain img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: 520px;
  object-fit: cover;
  object-position: center 18%;
}

.editorial-image.editorial-image-plain figcaption {
  position: static;
  max-width: none;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.65;
  backdrop-filter: none;
}

.editorial-text {
  max-width: 760px;
}

.offer-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.offer-heading {
  max-width: 760px;
}

.offer-body {
  max-width: 760px;
}

.offer-image {
  margin: 0;
  width: 100%;
  max-width: none;
}

.offer-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 10px;
}

.offer-image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.offer-heading .section-title-soft {
  max-width: none;
}

.offer-body p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.72;
}

.offer-body p + p {
  margin-top: 18px;
}

.offer-body .button-row {
  margin-top: 28px;
}

.offer-stack-editorial {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "heading image"
    "body image";
  gap: 32px;
  align-items: start;
}

.offer-stack-editorial .offer-heading {
  grid-area: heading;
  max-width: 620px;
}

.offer-stack-editorial .offer-body {
  grid-area: body;
  max-width: 620px;
}

.offer-stack-editorial .offer-image {
  grid-area: image;
  align-self: start;
}

.offer-stack-work {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "image heading"
    "image body";
  gap: 32px;
  align-items: start;
}

.offer-stack-work .offer-image {
  grid-area: image;
  align-self: start;
}

.offer-stack-work .offer-heading {
  grid-area: heading;
  max-width: 620px;
}

.offer-stack-work .offer-body {
  grid-area: body;
  max-width: 620px;
}

.offer-image-team img {
  object-position: center 44%;
}

.offer-image-work img {
  object-position: center 18%;
}

.editorial-text p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.72;
}

.editorial-text p + p {
  margin-top: 18px;
}

.prose-block {
  max-width: 780px;
}

.prose-block p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text);
}

.prose-block p + p {
  margin-top: 18px;
}

.about-prose-intro {
  max-width: none;
}

.about-prose-bottom {
  max-width: none;
  margin-top: 18px;
}

.section-about-story {
  padding-bottom: 72px;
}

.section-about-followup {
  padding-top: 0;
}

.about-prose-intro p:last-child,
.about-prose-bottom p:last-child {
  margin-bottom: 0;
}

.about-traits-cloud {
  margin-top: 32px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.mini-card {
  min-height: 100%;
  padding: 22px 24px;
  border-radius: 10px;
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.018em;
  border: 1px solid rgba(59, 74, 90, 0.08);
  box-shadow: 0 14px 30px rgba(59, 74, 90, 0.06);
}

.mini-card-coral {
  background: rgba(255, 72, 88, 0.09);
  color: #7f3440;
}

.mini-card-petrol {
  background: rgba(0, 204, 192, 0.11);
  color: #1b5f5a;
}

.mini-card-sun {
  background: rgba(255, 196, 0, 0.14);
  color: #6b5a18;
}

.quote-band {
  display: flex;
  flex-direction: column;
  padding: 54px max(34px, calc((100vw - var(--container)) / 2 + 20px));
  background: linear-gradient(135deg, rgba(59, 74, 90, 0.98), rgba(27, 127, 121, 0.96));
}

.quote-band blockquote {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.46;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-weight: 350;
  font-style: italic;
  letter-spacing: -0.015em;
}

.quote-band p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-band .quote-author {
  align-self: flex-end;
  text-align: right;
}

.intro-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.intro-side-image {
  margin: 0;
  width: min(100%, 340px);
  justify-self: start;
  align-self: start;
  min-height: 0;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.editorial-image.editorial-image-plain.intro-side-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 10px;
  background: transparent;
}

.intro-paragraph + .intro-paragraph {
  margin-top: 22px;
}

.intro-paragraph-emphasis {
  margin-top: 28px;
  margin-bottom: 28px;
}

.editorial-image img {
  min-height: 100%;
}

.inline-image img {
  aspect-ratio: 4 / 3;
  filter: saturate(0.96) contrast(1.02);
}

.accent-band {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 204, 192, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(27, 127, 121, 0.16);
}

.accent-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--petrol);
}

.page-header {
  padding: 56px 0 22px;
}

.page-header .panel {
  padding: 34px;
}

.page-header .panel.panel-plain {
  padding: 0;
}

.page-header-grid {
  align-items: start;
}

.page-header-image {
  justify-self: end;
  width: min(100%, 420px);
}

.editorial-image.editorial-image-plain.page-header-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
}

.section-tag {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow,
.section-tag {
  position: relative;
}

.eyebrow::after,
.section-tag::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  vertical-align: middle;
}

.contact-card a {
  color: var(--petrol);
  font-weight: 700;
}

.contact-card .button {
  color: #ffffff;
}

.contact-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: stretch;
}

.contact-stack .contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-stack .button-row {
  margin-top: auto;
  padding-top: 18px;
}

.contact-card p {
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 56ch;
}

.contact-image {
  margin: 0;
}

.contact-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
}

.contact-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.context-list-grid {
  align-items: start;
}

.context-list-image {
  margin: 0;
}

.editorial-image.editorial-image-plain.context-list-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
}

.context-list-card {
  padding: 34px;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 1px;
}

.contact-chip-wrap {
  padding: 6px 0 2px;
}

.cta-card {
  background:
    linear-gradient(135deg, rgba(59, 74, 90, 0.98), rgba(27, 127, 121, 0.96));
  color: #f8f5ef;
  padding: 42px;
}

.container-full-bleed .cta-card,
.container-full-bleed .cta-card-light {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.cta-card-light {
  background: linear-gradient(135deg, rgba(59, 74, 90, 0.98), rgba(27, 127, 121, 0.96));
  color: #ffffff;
  border: 0;
  box-shadow: var(--shadow);
  border-radius: 0;
  padding-top: 88px;
  padding-bottom: 88px;
  padding-left: max(34px, calc((100vw - var(--container)) / 2 + 20px));
  padding-right: max(34px, calc((100vw - var(--container)) / 2 + 20px));
}

.cta-card-light p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch;
  line-height: 1.78;
}

.cta-title-soft {
  max-width: none;
  margin-bottom: 22px;
  white-space: nowrap;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1;
}

.cta-title-soft.cta-title-wrap {
  white-space: normal;
}

.cta-card .cta-title-soft,
.cta-card-light .cta-title-soft {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-weight: 350;
  letter-spacing: -0.015em;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.14;
  margin-bottom: 18px;
}

.cta-card-light .section-tag {
  color: #ffc400;
}

.cta-card-light .button-row {
  margin-top: 30px;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.image-mosaic .inline-image {
  margin: 0;
  min-height: 0;
}

.image-mosaic .inline-image img {
  height: 100%;
  aspect-ratio: 1 / 1;
}

.about-image-mosaic .inline-image img {
  aspect-ratio: 4 / 5;
}

.mosaic-team-image {
  object-position: center 42%;
}

.mosaic-mac-image {
  object-position: center 16%;
}

.mosaic-profil-image {
  object-position: center 14%;
}

.mosaic-vortrag2-image {
  object-position: center 18%;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.topic-chip-coral {
  background: rgba(255, 72, 88, 0.24);
  color: #6f2430;
  border-color: rgba(255, 72, 88, 0.3);
}

.topic-chip-petrol {
  background: rgba(27, 127, 121, 0.32);
  color: #124c48;
  border-color: rgba(0, 204, 192, 0.26);
}

.topic-chip-cyan {
  background: rgba(0, 204, 192, 0.26);
  color: #0f5d58;
  border-color: rgba(0, 204, 192, 0.3);
}

.topic-chip-sage {
  background: rgba(142, 155, 129, 0.3);
  color: #44513a;
  border-color: rgba(142, 155, 129, 0.32);
}

.topic-chip-stone {
  background: rgba(255, 196, 0, 0.32);
  color: #695518;
  border-color: rgba(255, 196, 0, 0.36);
}

.section-tags .topic-chip {
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.section-tags .topic-chip-coral {
  color: #ffffff;
}

.section-tags .topic-chip-petrol {
  color: #ffffff;
}

.section-tags .topic-chip-cyan {
  color: #ffffff;
}

.section-tags .topic-chip-sage {
  color: #ffffff;
}

.section-tags .topic-chip-stone {
  color: #ffffff;
}

.cta-card p {
  color: rgba(248, 245, 239, 0.86);
}

.site-footer {
  padding: 34px 0 50px;
  color: var(--muted);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 36, 48, 0.1);
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.helper-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.helper-note-light {
  color: rgba(255, 255, 255, 0.82);
  margin: 24px 0 0;
  max-width: 62ch;
  line-height: 1.7;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(59, 74, 90, 0.1);
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan) 55%, transparent 78%);
}

.service-card summary {
  list-style: none;
  cursor: pointer;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary p {
  margin: 0;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.6;
}

.service-card h3 {
  font-family: "Avenir Next", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  padding-right: 42px;
}

.service-card-toggle {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 18px;
  height: 18px;
}

.service-card-toggle::before,
.service-card-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--petrol);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-card-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-card[open] .service-card-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-card-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(59, 74, 90, 0.08);
}

.service-card-body p {
  margin: 0;
}

.service-card-body p + p {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .feature-grid,
  .logos-grid,
  .timeline-grid,
  .image-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .intro-logo-image {
    width: min(84vw, 760px);
  }

  body.intro-moving .intro-logo-image {
    transform: translate3d(-30vw, -36vh, 0) scale(0.22);
  }

  .brand-logo img {
    height: 110px;
  }

  .site-header.is-compact .brand-logo img {
    height: 68px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 20px auto;
    background: rgba(255, 251, 246, 0.97);
    border: 1px solid rgba(31, 36, 48, 0.08);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .two-column,
  .card-grid,
  .accordion-grid,
  .contact-grid,
  .split-grid,
  .timeline-grid,
  .editorial-grid,
  .intro-split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "heading"
      "image"
      "body";
  }

  .offer-stack-editorial,
  .offer-stack-work {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image"
      "body";
  }

  .hero {
    padding-top: 52px;
  }

  .section {
    padding: 56px 0;
  }

  .page-header {
    padding: 40px 0 16px;
  }

  .page-header-image,
  .about-story-image,
  .offer-image {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .hero-copy,
  .hero-body,
  .referenzen-hero-copy {
    padding-top: 0;
  }

  .hero-copy .lead,
  .hero-body .lead,
  .page-header .lead,
  .contact-card p {
    max-width: none;
  }

  .hero-portrait img {
    min-height: 440px;
  }

  .hero-portrait.hero-portrait-plain img {
    min-height: 460px;
  }

  .editorial-image.editorial-image-plain.page-header-image img,
  .editorial-image.editorial-image-plain.about-story-image img,
  .editorial-image.editorial-image-plain.contact-image img,
  .service-preview-image img {
    max-height: 460px;
  }

  .quote-band {
    padding: 42px max(20px, calc((100vw - var(--container)) / 2 + 8px));
  }

  .quote-band blockquote {
    font-size: clamp(1.35rem, 4.2vw, 2rem);
    line-height: 1.42;
  }

  .tag-cloud {
    gap: 12px;
  }

  .contact-stack {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-stack .contact-image {
    order: 1;
  }

  .contact-stack .contact-card {
    order: 2;
  }

  .contact-stack .button-row {
    margin-top: 20px;
    padding-top: 0;
  }

  .contact-card p {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .intro-logo-image {
    width: 88vw;
  }

  body.intro-moving .intro-logo-image {
    transform: translate3d(-24vw, -38vh, 0) scale(0.26);
  }

  .brand-logo img {
    height: 88px;
  }

  .site-header.is-compact .brand-logo img {
    height: 58px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header .container {
    min-height: 92px;
    gap: 14px;
  }

  .site-nav {
    inset: 74px 14px auto;
    border-radius: 18px;
    padding: 16px;
  }

  .intro-message-inner {
    width: min(100%, calc(100% - 32px));
  }

  .intro-message-screen .intro-message-eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .intro-message-screen h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  body.intro-glide-message .intro-message-inner {
    width: min(100%, calc(100% - 36px));
    transform: translate3d(-8vw, -12vh, 0) scale(0.82);
  }

  .hero-card,
  .panel,
  .feature-card,
  .service-card,
  .quote-card,
  .contact-card,
  .timeline-card,
  .list-card,
  .cta-card {
    padding: 24px;
  }

  .cta-card-light {
    padding-top: 52px;
    padding-bottom: 52px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-title-soft {
    white-space: normal;
  }

  .hero {
    padding: 32px 0 32px;
  }

  .section {
    padding: 44px 0;
  }

  .page-header {
    padding: 28px 0 8px;
  }

  .hero-title-soft {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.06;
    max-width: none;
  }

  .page-title-soft,
  .section-title-soft {
    max-width: none;
    margin-bottom: 14px;
  }

  h2 {
    margin-bottom: 14px;
  }

  .lead,
  .hero-copy .lead,
  .hero-body .lead,
  .section-intro p,
  .prose-block p,
  .service-card summary p,
  .cta-card p,
  .cta-card-light p,
  .contact-card p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions,
  .button-row {
    gap: 10px;
    margin-top: 22px;
  }

  .button,
  .ghost-button {
    width: 100%;
  }

  .feature-grid,
  .logos-grid,
  .image-mosaic,
  .service-preview-list,
  .mini-card-grid,
  .service-preview-layout {
    grid-template-columns: 1fr;
  }

  .hero-portrait img,
  .hero-portrait.hero-portrait-plain img,
  .editorial-image.editorial-image-plain.page-header-image img,
  .editorial-image.editorial-image-plain.about-story-image img,
  .service-preview-image img {
    min-height: 0;
    max-height: 360px;
  }

  .contact-image img {
    min-height: 0;
    max-height: 360px;
  }

  .hero-portrait.hero-portrait-plain figcaption,
  .editorial-image figcaption {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .quote-band {
    padding: 34px 20px;
  }

  .quote-band blockquote {
    font-size: clamp(1.15rem, 5.4vw, 1.55rem);
    line-height: 1.45;
  }

  .quote-band .quote-author {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .service-card {
    padding: 22px 20px;
  }

  .service-card h3 {
    font-size: 1.18rem;
    line-height: 1.22;
    padding-right: 34px;
    margin-bottom: 10px;
  }

  .service-card-toggle {
    top: 22px;
    right: 20px;
  }

  .service-card-body {
    margin-top: 14px;
    padding-top: 14px;
  }

  .image-mosaic {
    gap: 14px;
  }

  .image-mosaic .inline-image img {
    aspect-ratio: 1 / 1;
    max-height: none;
  }

  .about-image-mosaic .inline-image img {
    aspect-ratio: 4 / 5;
  }

  .topic-chip {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .contact-card {
    padding: 22px 20px;
  }

  .contact-image img {
    max-height: 340px;
    object-position: center 14%;
  }

  .contact-stack .button-row {
    padding-top: 14px;
    margin-top: 18px;
  }

  h1 {
    max-width: none;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
