/* Futura Web — plain CSS (no build step) */

:root {
  --font-body: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --ll-color-primary: #1b211d;
  --ll-color-secondary: #f5f3ed;
  --ll-color-background: #f5f3ed;
  --ll-color-shape-one: #3355ff;
  --ll-color-shape-two: #f7c518;
  --ll-color-shape-three: #a7baad;
  --header-height: 3.5rem;
  --header-offset: calc(var(--header-height) + 1px);
  --container: 72rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-duration: 0.9s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-distance: 2.25rem;
  --reveal-stagger: 90ms;
}

[data-theme="orange"] {
  --ll-color-background: #FDB919;
}

[data-theme="green"] {
  --ll-color-background: #a7baad;
  --ll-color-shape-three: #f87a55;
}

[data-theme="grey"] {
  --ll-color-background: #F5F3ED;
}

[data-theme="white"] {
  --ll-color-background: #ffffff;
}

[data-theme="blue"] {
  --ll-color-primary: #f5f3ed;
  --ll-color-background: #3355ff;
  --ll-color-shape-one: #a7baad;
  --ll-color-shape-three: #f87a55;
}

[data-theme="yellow"] {
  --ll-color-primary: #000;
  --ll-color-background: #f7c518;
}

[data-theme="dark"] {
  --ll-color-primary: #f5f3ed;
  --ll-color-background: #1b211d;
  --ll-color-shape-two: #a7baad;
  --ll-color-shape-three: #f87a55;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--ll-color-background);
  color: var(--ll-color-primary);
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.is-hidden {
  display: none !important;
}

.ll-theme-surface {
  background-color: var(--ll-color-background);
  color: var(--ll-color-primary);
  transition:
    background-color 1s var(--ease),
    color 1s var(--ease),
    border-color 1s var(--ease);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.site-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding-top: var(--header-offset);
}

.site-main {
  flex: 1;
}

.container {
  width: 92%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  :root {
    --header-height: 76px;
    --header-offset: 77px;
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(27, 33, 29, 0.82);
  backdrop-filter: blur(12px);
}
.site-header a {
  color:white;
  text-decoration:none;
}
.site-header a:hover, .site-header a:focus {
  color:white;
  text-decoration:underline;
}

.site-header__inner {
  display: flex;
  height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 92%;
}


.site-logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 3.75rem;
  }
}

.site-header__email {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 243, 237, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .site-header__email {
    font-size: 0.875rem;
  }
}

.site-header__email:hover,
.site-header__email:focus-visible {
  color: #f5f3ed;
}

.site-header__email:focus-visible {
  outline: 2px solid rgba(245, 243, 237, 0.35);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Typography helpers */
.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 55%, transparent);
}

.eyebrow--sm {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: color-mix(in srgb, var(--ll-color-primary) 45%, transparent);
  text-transform: uppercase;
}

.section-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 50%, transparent);
}

.hero-title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.4rem, 7.5vw, 5.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-title {
  margin: 1.5rem 0 0;
  max-width: 20ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-title a {
  text-decoration: none;
  color:inherit
}
.section-title a:hover, .section-title a:focus {
  text-decoration: underline;
  color:inherit
}

.section-title--lg {
  max-width: 56rem;
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  line-height: 1.08;
}

.section-title--md {
  margin-top: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

.section-title--contact {
  margin-top: 1rem;
  max-width: none;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.08;
}

.statement {
  margin: 0;
  max-width: 56rem;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.375;
  color: color-mix(in srgb, var(--ll-color-primary) 78%, transparent);
}

.lead {
  margin: 2rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--ll-color-primary) 72%, transparent);
}

@media (min-width: 640px) {
  .lead {
    font-size: 1.25rem;
  }
}

.body-copy {
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--ll-color-primary) 70%, transparent);
}

.body-copy p {
  margin: 0 0 1.5rem;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.text-link {
  font-weight: 500;
  color: var(--ll-color-primary);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--ll-color-primary) 25%, transparent);
  text-underline-offset: 6px;
  transition: text-decoration-color 0.2s;
}

.text-link:hover {
  text-decoration-color: var(--ll-color-shape-one);
}

.text-link--accent:hover {
  text-decoration-color: var(--ll-color-shape-two);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: opacity 0.3s, filter 0.3s, border-color 0.3s;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.btn-primary {
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  background: var(--ll-color-shape-two);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1b211d;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-text {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ll-color-primary) 35%, transparent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 90%, transparent);
  background: transparent;
}

.btn-text:hover {
  border-color: var(--ll-color-primary);
}

.btn-outline {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--ll-color-primary) 15%, transparent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-color-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: color-mix(in srgb, var(--ll-color-primary) 40%, transparent);
}

.btn-outline--on-dark {
  border-color: color-mix(in srgb, var(--ll-color-primary) 25%, transparent);
}

.btn-outline--on-dark:hover {
  border-color: color-mix(in srgb, var(--ll-color-primary) 50%, transparent);
}

.btn-submit {
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  background: var(--ll-color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-color-secondary);
}

.btn-submit:hover:not(:disabled) {
  opacity: 0.9;
}

.btn-close {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--ll-color-primary) 15%, transparent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 80%, transparent);
  background: transparent;
  cursor: pointer;
}

.btn-close:hover {
  border-color: color-mix(in srgb, var(--ll-color-primary) 40%, transparent);
  color: var(--ll-color-primary);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 7rem 0;
  }
}

.section--tight-top {
  padding-top: 4rem;
}

.section--dark-band {
  background: #1b211d;
}

.section--border-top {
  border-top: 1px solid color-mix(in srgb, var(--ll-color-primary) 8%, transparent);
}

.section--border-bottom {
  border-bottom: 1px solid color-mix(in srgb, var(--ll-color-primary) 10%, transparent);
}

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

.stack--lg {
  gap: 3.5rem;
}

.row-icon-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .row-icon-title {
    gap: 0.4rem;
  }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 4.75rem);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 3.5rem;
}
.hero::after {
  position: absolute;
  top: 0;
  left:0;
  width:100%;
  height:100%;
  content:'';
  background: rgba(0,0,0,0.9);
  z-index:1;
}

@media (min-width: 640px) {
  .hero {
    padding: 8rem 0 5rem;
  }
}

.hero__blobs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.hero__blob-wrap {
  will-change: transform;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
}

.hero__blob--one {
  top: 0;
  left: -25%;
  width: 70%;
  height: 70%;
  background: color-mix(in srgb, var(--ll-color-shape-one) 25%, transparent);
  filter: blur(100px);
}

.hero__blob--two {
  right: -25%;
  bottom: 0;
  width: 60%;
  height: 60%;
  background: color-mix(in srgb, var(--ll-color-shape-three) 30%, transparent);
  filter: blur(90px);
}

.hero__content {
  position: relative;
  z-index:10;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 40%, transparent);
}

.hero__meta-line {
  flex: 1;
  max-width: 50px;
  height: 1px;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--ll-color-primary) 30%, transparent);
}

.hero__meta-text {
  max-width: 14rem;
  line-height: 1.375;
}

/* Work / services */
.work-intro {
  padding-bottom: 5em;
}
.work-intro__link {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--ll-color-primary) 55%, transparent);
}

.work-intro__lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ll-color-primary) 72%, transparent);
}

#about,
#work,
#contact,
.service-row[id] {
  position: relative;
  scroll-margin-top: var(--header-offset);
}

#about .fgraphic {
  position:absolute;
  top:0;
  right:0;
  width:auto;
  height:100%;
  z-index: 1;
}
.fgraphic img {
  display:block;width:auto;height:100%;
}
@media (max-width: 1332px) {
  .fgraphic img {
    opacity:0.05;
  }
}
@media (max-width: 768px) {
  #about .fgraphic {
    position:absolute;
    top:0;
    left:0;
    right:auto;
    width:100%;
    height:100%;
    z-index: 1;
    }
    .fgraphic img {
      margin:0 auto;
    }
}
@media (max-width: 500px) {
  #about .fgraphic {
    display:none;
    }
}
.service-row {
  border-top: 1px solid color-mix(in srgb, var(--ll-color-primary) 12%, transparent);
}

.service-row__inner {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .service-row__inner {
    padding: 4rem 0 5rem;
  }
}

@media (min-width: 1024px) {
  .service-row__inner {
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.service-row__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
}

.service-row__lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--ll-color-primary) 92%, transparent);
}

.service-row__detail {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ll-color-primary) 92%, transparent);
}

.service-row__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  color: color-mix(in srgb, var(--ll-color-primary) 45%, transparent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-row__more:hover,
.service-row__more:focus-visible {
  color: var(--ll-color-shape-one);
}

.service-row__more:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ll-color-shape-one) 60%, transparent);
  outline-offset: 4px;
  border-radius: 2px;
}

.service-row__more-icon {
  display: block;
}

@keyframes service-row-more-nudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.65;
  }

  50% {
    transform: translateX(3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .service-row__more-icon {
    animation: service-row-more-nudge 2.4s ease-in-out infinite;
  }

  .service-row__more:hover .service-row__more-icon,
  .service-row__more:focus-visible .service-row__more-icon {
    animation: none;
    transform: translateX(3px);
    opacity: 1;
  }
}

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

@media (min-width: 640px) {
  .bullet-list {
    grid-template-columns: 1fr 1fr;
  }
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--ll-color-primary) 92%, transparent);
}

.bullet-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.375rem;
  border-radius: 50%;
  background: var(--ll-color-shape-two);
}

.bullet-dot--sm {
  width: 4px;
  height: 4px;
  margin-top: 0.35rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }
}

.contact-intro__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-intro p {
  margin: 0;
}

.contact-intro .lead {
  margin-top: 1.5rem;
}

.contact-intro .contact-email {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--ll-color-primary) 55%, transparent);
}

.contact-panel {
  border: 1px solid color-mix(in srgb, var(--ll-color-primary) 10%, transparent);
  background: color-mix(in srgb, var(--ll-color-secondary) 50%, transparent);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-panel {
    padding: 2rem;
  }
}

/* Form */
.contact-form {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

@media (min-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 50%, transparent);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in srgb, var(--ll-color-primary) 15%, transparent);
  border-radius: 0;
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--ll-color-primary);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--ll-color-shape-one);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ll-color-shape-one) 35%, transparent);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-message--success {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #065f46;
}

.form-message--error {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b91c1c;
}

/* Cards (what we do) */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--ll-color-primary) 12%, transparent);
  padding: 2rem;
}

@media (min-width: 640px) {
  .card {
    padding: 2.5rem;
  }
}

.card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .card__title {
    font-size: 1.5rem;
  }
}

.card__intro {
  margin: 0.75rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--ll-color-primary) 72%, transparent);
}

@media (min-width: 640px) {
  .card__intro {
    font-size: 1rem;
  }
}

.card__list {
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--ll-color-primary) 10%, transparent);
  list-style: none;
}

.card__list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375;
  color: color-mix(in srgb, var(--ll-color-primary) 85%, transparent);
}

@media (min-width: 640px) {
  .card__list li {
    font-size: 0.875rem;
  }
}

.card--featured {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
}

@media (min-width: 640px) {
  .card--featured {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .card--featured {
    padding: 3.5rem 3rem;
  }
}

.card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ll-color-shape-two) 25%, transparent);
  filter: blur(48px);
  pointer-events: none;
}

.card--featured .card__inner {
  position: relative;
}

.card--featured .card__title {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
}

.card--featured .card__intro {
  max-width: 48rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .card--featured .card__intro {
    font-size: 1.125rem;
  }
}

.card--featured .bullet-list {
  margin-top: 1.5rem;
}

.card--featured .bullet-list li {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--ll-color-primary) 88%, transparent);
}

.card--featured .bullet-dot {
  width: 6px;
  height: 6px;
  margin-top: 0.375rem;
}

/* Subpage hero */
.subpage-hero {
  padding: 7rem 0 3.5rem;
}

@media (min-width: 640px) {
  .subpage-hero {
    padding: 8rem 0 4rem;
  }
}

.breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 45%, transparent);
}

.breadcrumb a {
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--ll-color-primary);
}

.breadcrumb__sep {
  margin: 0 0.5rem;
  color: color-mix(in srgb, var(--ll-color-primary) 25%, transparent);
}

.breadcrumb__current {
  color: color-mix(in srgb, var(--ll-color-primary) 70%, transparent);
}

.prose-section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .prose-section {
    padding: 6rem 0;
  }
}

.prose-narrow {
  max-width: 56rem;
}

.prose-narrow .body-copy {
  color: color-mix(in srgb, var(--ll-color-primary) 78%, transparent);
}

.prose-narrow strong {
  font-weight: 600;
  color: var(--ll-color-primary);
}

.callout-section {
  padding: 3.5rem 0;
}

.callout-section h2 {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ll-color-primary) 50%, transparent);
}

.callout-section p {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--ll-color-primary) 80%, transparent);
}

.cta-section {
  padding: 3rem 0;
}

.cta-section--compact {
  padding: 2.5rem 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--ll-color-primary) 10%, transparent);
  padding: 3.5rem 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--ll-color-primary) 55%, transparent);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.site-footer__brand {
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .site-footer__brand {
    max-width: 28rem;
  }
}

.site-footer__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--ll-color-primary);
}

.site-footer__tagline {
  margin: 0.75rem 0 0;
  max-width: 20rem;
  line-height: 1.625;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-footer__meta {
    align-items: flex-end;
    text-align: right;
  }
}

.site-footer__location strong,
.site-footer__location {
  color: color-mix(in srgb, var(--ll-color-primary) 85%, transparent);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

@media (min-width: 768px) {
  .site-footer__links {
    justify-content: flex-end;
  }
}

.site-footer__links a {
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__links a:hover {
  color: var(--ll-color-primary);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--ll-color-primary) 35%, transparent);
}

/* Icon */
.futura-icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.futura-icon img {
  filter: drop-shadow(0 2px 12px rgba(247, 197, 24, 0.15));
}

.futura-icon--md-offset {
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .futura-icon--md-offset {
    margin-top: 0.65rem;
  }
}

/* Animations */
@keyframes hero-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6%, 5%) scale(1.06);
  }
}

@keyframes hero-blob-alt {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, -6%) scale(1.08);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__blob--one {
    animation: hero-blob 20s ease-in-out infinite;
  }

  .hero__blob--two {
    animation: hero-blob-alt 26s ease-in-out infinite;
  }
}

.ll-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

.ll-scroll-reveal.ll-scroll-reveal--active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ll-scroll-reveal.ll-scroll-reveal--active:not(.ll-scroll-reveal-group) {
  will-change: auto;
}

/* Staggered children: parent stays visible, items fade up in sequence */
.ll-scroll-reveal.ll-scroll-reveal-group {
  opacity: 1;
  transform: none;
  transition: none;
}

.ll-scroll-reveal-item {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  transition:
    opacity 0.75s var(--reveal-ease),
    transform 0.75s var(--reveal-ease);
}

.ll-scroll-reveal-group.ll-scroll-reveal--active .ll-scroll-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ll-scroll-reveal--fade {
  transform: none;
}

.ll-scroll-reveal--fade.ll-scroll-reveal--active {
  transform: none;
}

@media (max-width: 767px) {
  .ll-scroll-reveal {
    --reveal-distance: 1.5rem;
  }

  .ll-scroll-reveal-item {
    transform: translate3d(0, 1rem, 0);
  }
}

@media (max-width: 1024px) {
  .service-row__body {
    padding-top: 0rem;
  }
  .service-row__inner {
    gap: 1rem;
    padding: 3rem 0 4rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title br {display:none;}
}
@keyframes futura-icon-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(2px, -4px, 0) rotate(-5deg);
  }
  66% {
    transform: translate3d(-3px, 3px, 0) rotate(5deg);
  }
}

@keyframes futura-icon-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .futura-icon-float {
    animation: futura-icon-float 6.5s ease-in-out infinite;
  }

  .futura-icon-orbit {
    animation: futura-icon-orbit 42s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__blob--one,
  .hero__blob--two {
    animation: none !important;
  }

  .futura-icon-float,
  .futura-icon-orbit {
    animation: none !important;
  }

  .service-row__more-icon {
    animation: none !important;
  }

  .ll-scroll-reveal,
  .ll-scroll-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }

  .ll-theme-surface {
    transition-duration: 0.01ms !important;
  }
}
