:root {
  --orange: #f15b26;
  --orange-soft: #ff9d55;
  --cream: #e4d6c5;
  --dark: #111219;
  --dark-2: #0d0e14;
  --dark-card: #16171f;
  --purple: #6e5bff;
  --blue: #3da9fc;
  --green: #7bff7a;
  --yellow: #ffd93d;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--cream);
  font-family: "Outfit", system-ui, sans-serif;
  overflow-x: hidden;
}
body.has-hover-explore { cursor: none; }
body.is-touch { cursor: auto; }
body.is-loading { overflow: hidden; }
::selection { background: var(--orange); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
body.has-hover-explore button,
body.has-hover-explore a,
body.has-hover-explore [data-cursor] { cursor: none; }
body.is-touch button,
body.is-touch a { cursor: pointer; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wrap { width: min(100% - 5rem, var(--max)); }
}

.font-display {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.font-headline {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.font-serif { font-family: "Instrument Serif", Georgia, serif; }

.text-gradient {
  background: linear-gradient(135deg, #f15b26 0%, #ff9d55 55%, #ffd93d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-orange { color: var(--orange); }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.mt-1 { margin-top: .25rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.section { padding: clamp(5rem, 11vw, 8.5rem) 0; content-visibility: auto; contain-intrinsic-size: auto 600px; }
.section-alt { background: var(--dark-2); }
.label {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.huge { font-size: clamp(2.2rem, 6.5vw, 4.75rem); }
.huge-xl { font-size: clamp(2.6rem, 9vw, 6.5rem); }
.muted { color: rgba(228,214,197,.55); }
.muted-2 { color: rgba(228,214,197,.45); }

.glass {
  background: rgba(228,214,197,.05);
  border: 1px solid rgba(228,214,197,.12);
  backdrop-filter: blur(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: linear-gradient(135deg, #f15b26, #ff9d55);
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  padding: .95rem 1.7rem;
  box-shadow: 0 14px 40px rgba(241,91,38,.38);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(241,91,38,.48);
  color: #fff !important;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: rgba(255,255,255,.04);
  color: var(--cream) !important;
  border: 1px solid rgba(228,214,197,.25);
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  padding: .95rem 1.7rem;
  transition: border-color .25s ease, background .25s ease;
}
.btn-ghost:hover {
  border-color: rgba(241,91,38,.55);
  background: rgba(255,255,255,.07);
}

/* Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(228,214,197,.9);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  display: grid;
  place-items: center;
  transition: width .2s ease, height .2s ease, background .2s ease;
}
.cursor.is-hover {
  width: 72px; height: 72px;
  background: rgba(241,91,38,.95);
}
.cursor span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
}
.cursor.is-hover span { opacity: 1; }
body.is-touch .cursor { display: none; }

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: grid; place-items: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.solid {
  background: rgba(17,18,25,.8);
  border-bottom: 1px solid rgba(228,214,197,.1);
  backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.nav-brand { display: flex; align-items: center; gap: .5rem; }
.nav-brand .site-logo { border-radius: var(--logo-radius, 8px); }
.nav-pill {
  display: none;
  align-items: center;
  gap: .15rem;
  border: 1px solid rgba(228,214,197,.1);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: .35rem;
}
@media (min-width: 768px) { .nav-pill { display: flex; } }
.nav-pill a {
  font-family: "Syne", sans-serif;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(228,214,197,.65);
  border-radius: 999px;
  padding: .5rem 1rem;
  transition: .2s ease;
}
.nav-pill a:hover { color: var(--orange); background: rgba(255,255,255,.06); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(241,91,38,.18), transparent 55%),
    linear-gradient(90deg, rgba(17,18,25,.95), rgba(17,18,25,.55)),
    linear-gradient(180deg, rgba(17,18,25,.5), rgba(17,18,25,.95)),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity: .95;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; }
}
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid rgba(241,91,38,.3);
  background: rgba(241,91,38,.1);
  color: var(--orange);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(3.4rem, 11vw, 7.5rem); margin: 0 0 1.25rem; }
.hero h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.85rem);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}
.hero-card {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(228,214,197,.15);
  background: #14151c;
  box-shadow: 0 40px 100px -30px rgba(241,91,38,.45);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(241,91,38,.25), rgba(110,91,255,.1), transparent);
  filter: blur(28px);
  z-index: -1;
}
.hero-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(228,214,197,.1);
}
.hero-card-meta > div { padding: 1.15rem 1.25rem; }
.hero-card-meta > div:first-child { border-right: 1px solid rgba(228,214,197,.1); }

/* Impact */
.impact { border-block: 1px solid rgba(228,214,197,.1); background: var(--dark-2); padding: 3.5rem 0; }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.stat {
  border: 1px solid rgba(228,214,197,.1);
  background: rgba(255,255,255,.03);
  border-radius: 1.1rem;
  padding: 1.35rem;
}
.stat .n { font-family: "Unbounded", sans-serif; font-size: clamp(1.8rem,4vw,2.9rem); }

/* Marquee */
.marquee { overflow: hidden; border-bottom: 1px solid rgba(228,214,197,.1); padding: 1.1rem 0; }
.marquee-track {
  display: flex; width: max-content; gap: 2.5rem;
  animation: marquee 45s linear infinite;
}
.marquee-track span {
  font-family: "Syne", sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .85rem;
  color: rgba(228,214,197,.4);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Cards */
.cards-3 { display: grid; gap: 1.25rem; }
.cards-2 { display: grid; gap: 1.25rem; }
.cards-4 { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .cards-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) {
  .cards-2 { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  border: 1px solid rgba(228,214,197,.1);
  background: rgba(255,255,255,.03);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,91,38,.3);
  background: rgba(255,255,255,.05);
}
.card .media { position: relative; height: 160px; overflow: hidden; }
.card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .media img { transform: scale(1.05); }
.card .media .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #111219, rgba(17,18,25,.3), transparent);
}
.card .icon {
  position: absolute; left: 1rem; top: 1rem;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: .85rem;
  backdrop-filter: blur(10px);
  font-size: 1rem;
}
.card .body { padding: 1.35rem; }
.card h3 { font-family: "Syne", sans-serif; font-size: 1.2rem; margin: 0; }
.card p { margin: .75rem 0 0; font-size: .9rem; color: rgba(228,214,197,.55); line-height: 1.6; }

/* Services — What we do */
.services-section { position: relative; overflow: hidden; }
.services-glow {
  position: absolute;
  left: 50%;
  top: 8%;
  width: min(90vw, 720px);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(241,91,38,.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.services-section > .wrap { position: relative; z-index: 1; }
.services-intro { max-width: 20rem; }
.services-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(228,214,197,.45);
}
.services-meta strong {
  color: var(--orange);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: .2rem;
}
.services-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(228,214,197,.3);
}
.services-meta a {
  color: var(--cream);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s ease;
}
.services-meta a:hover { color: var(--orange); }

.services-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.services-filter {
  border: 1px solid rgba(228,214,197,.14);
  background: rgba(255,255,255,.03);
  color: rgba(228,214,197,.55);
  border-radius: 999px;
  padding: .55rem 1.15rem;
  font-family: "Syne", sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: .25s ease;
  cursor: pointer;
}
body.has-hover-explore:not(.is-touch) .services-filter { cursor: none; }
.services-filter:hover { color: var(--cream); border-color: rgba(228,214,197,.3); }
.services-filter.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f15b26, #ff9d55);
  box-shadow: 0 10px 28px rgba(241,91,38,.28);
}

.services-featured {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
  grid-template-columns: 1fr;
}
.services-featured.is-empty { display: none; margin: 0; }
@media (min-width: 768px) {
  .services-featured { grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
  .services-featured.has-one { grid-template-columns: 1fr; }
}

.services-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.service-feature,
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(228,214,197,.1);
  background: rgba(255,255,255,.03);
  color: inherit;
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.service-feature:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,91,38,.35);
  box-shadow: 0 28px 60px -28px rgba(241,91,38,.35);
}
.service-feature.is-hidden,
.service-card.is-hidden {
  display: none !important;
}

.service-feature {
  min-height: 300px;
}
@media (min-width: 768px) {
  .service-feature { min-height: 320px; }
}
.service-feature-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-feature:hover .service-feature-media img { transform: scale(1.06); }
.service-feature-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(17,18,25,.94) 0%, rgba(17,18,25,.55) 48%, rgba(17,18,25,.25) 100%),
    linear-gradient(180deg, transparent 40%, rgba(17,18,25,.9) 100%);
}
.service-feature-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  padding: clamp(1.35rem, 3vw, 2rem);
  min-height: 300px;
}
@media (min-width: 768px) {
  .service-feature-body { min-height: 320px; }
}
.service-feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: auto;
}
.service-feature h3 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: .85rem 0 .6rem;
  line-height: 1.1;
}
.service-feature p {
  max-width: 28rem;
  margin: 0 0 1.25rem;
  color: rgba(228,214,197,.7);
  line-height: 1.65;
  font-size: .95rem;
}

.service-card { height: 100%; }
.service-card-media {
  position: relative;
  height: 150px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111219, rgba(17,18,25,.25), transparent);
}
.service-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.service-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  margin: .55rem 0 0;
  line-height: 1.2;
}
.service-card p {
  margin: .65rem 0 1rem;
  font-size: .9rem;
  color: rgba(228,214,197,.55);
  line-height: 1.6;
  flex: 1;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(241,91,38,.35);
  background: rgba(241,91,38,.12);
  color: var(--accent, var(--orange));
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
}
.service-num {
  font-family: "Unbounded", sans-serif;
  font-size: .72rem;
  color: rgba(228,214,197,.35);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.service-num.abs {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  color: rgba(228,214,197,.55);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.service-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(241,91,38,.18);
  color: var(--accent, var(--orange));
  font-size: 1.15rem;
  backdrop-filter: blur(10px);
  margin-top: 1.25rem;
  flex-shrink: 0;
}
.service-icon.sm {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  font-size: 1rem;
  border-radius: .85rem;
}
.service-cta,
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: "Syne", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color .2s ease, gap .2s ease;
}
.service-cta:hover,
.service-link:hover,
.service-card:hover .service-link {
  color: var(--accent, var(--orange));
  gap: .65rem;
}
.service-link { margin-top: auto; }

@media (max-width: 639px) {
  .service-feature,
  .service-feature-body { min-height: 280px; }
}

/* Featured project */
.featured {
  position: relative;
  min-height: 420px;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(228,214,197,.1);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .featured { min-height: 520px; } }
.featured > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured .overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(17,18,25,.92), rgba(17,18,25,.35)),
    linear-gradient(180deg, transparent, rgba(17,18,25,.85));
}
.featured .content {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(1.25rem, 3vw, 3rem);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: end;
}
.mini-stat {
  min-width: 88px;
  border: 1px solid rgba(228,214,197,.15);
  background: rgba(17,18,25,.5);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: .75rem;
}
.project-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(228,214,197,.1);
}
.project-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.project-tile:hover img { transform: scale(1.04); }
.project-tile .info {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, #111219 12%, transparent);
}

/* Team */
.team-grid { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.team-card { text-align: center; }
.team-photo {
  width: 78%; aspect-ratio: 1; margin: 0 auto;
  border-radius: 2rem; overflow: hidden;
  border: 1px solid rgba(228,214,197,.1);
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo .tint { position: absolute; inset: 0; mix-blend-mode: soft-light; opacity: .4; }

/* Clients */
.clients { border-block: 1px solid rgba(228,214,197,.1); padding: 4rem 0; }
.client-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) { .client-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .client-grid { grid-template-columns: repeat(5, 1fr); } }
.client-box {
  height: 5rem;
  display: grid; place-items: center;
  border: 1px solid rgba(228,214,197,.1);
  background: rgba(255,255,255,.02);
  border-radius: 1rem;
  font-family: "Unbounded", sans-serif;
  color: rgba(228,214,197,.35);
  transition: .25s ease;
}
.client-box:hover { color: rgba(228,214,197,.7); border-color: rgba(241,91,38,.35); }

/* Pricing */
.price { border: 1px solid rgba(228,214,197,.1); background: rgba(255,255,255,.03); border-radius: 1.5rem; padding: 2rem; height: 100%; }
.price.featured { border-color: rgba(241,91,38,.4); background: rgba(241,91,38,.1); }
.price ul { list-style: none; padding: 0; margin: 1.75rem 0; }
.price li { display: flex; gap: .6rem; margin-bottom: .7rem; color: rgba(228,214,197,.75); font-size: .92rem; }

/* Contact */
.contact-glow {
  position: absolute; left: 50%; top: 0;
  width: 90vmin; height: 70vmin;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(241,91,38,.22), transparent 65%);
  pointer-events: none;
}
.form-panel {
  border: 1px solid rgba(228,214,197,.15);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  border-radius: 1.75rem;
  padding: 1.75rem;
}
.form-panel label {
  display: block; margin-bottom: .5rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(228,214,197,.45);
}
.form-panel input,
.form-panel textarea {
  width: 100%;
  background: rgba(17,18,25,.55);
  border: 1px solid rgba(228,214,197,.15);
  color: var(--cream);
  border-radius: .9rem;
  padding: .85rem 1rem;
  outline: none;
  margin-bottom: 1rem;
  font: inherit;
}
.form-panel input:focus,
.form-panel textarea:focus { border-color: rgba(241,91,38,.5); }

/* Footer */
.footer { border-top: 1px solid rgba(228,214,197,.1); padding: 4rem 0 2.5rem; }
.socials { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.socials a {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(228,214,197,.15);
  background: rgba(255,255,255,.03);
  transition: .2s ease;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Float widgets */
.wa, .chat-btn {
  position: fixed; right: 1.25rem; z-index: 80;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  border: 0;
}
.wa { bottom: 1.25rem; background: #25d366; }
.chat-btn { bottom: 5.2rem; background: var(--purple); }
.chat-panel {
  position: fixed; right: 1.25rem; bottom: 9.2rem; z-index: 80;
  width: min(92vw, 340px); height: 420px;
  border-radius: 1.5rem; overflow: hidden;
  display: none; flex-direction: column;
}
.chat-panel.open { display: flex; }
.chat-panel .head {
  background: rgba(110,91,255,.25);
  border-bottom: 1px solid rgba(228,214,197,.1);
  padding: .9rem 1rem;
}
.chat-panel .msgs { flex: 1; overflow: auto; padding: 1rem; display: flex; flex-direction: column; gap: .7rem; }
.bubble {
  max-width: 85%;
  border-radius: 1rem;
  padding: .65rem .8rem;
  font-size: .88rem;
  background: rgba(255,255,255,.05);
}
.bubble.user { margin-left: auto; background: var(--orange); color: #fff; }
.chat-panel .foot {
  display: flex; gap: .5rem;
  border-top: 1px solid rgba(228,214,197,.1);
  padding: .75rem;
}
.chat-panel .foot input {
  flex: 1; border-radius: 999px; border: 1px solid rgba(228,214,197,.15);
  background: rgba(255,255,255,.05); color: var(--cream);
  padding: .55rem 1rem; outline: none;
}
.chat-panel .foot button {
  border: 0; border-radius: 999px; background: var(--orange); color: #fff;
  padding: .55rem 1rem; font-weight: 600;
}

.reveal { opacity: 0; transform: translateY(28px); }
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.offcanvas-dark { background: #111219 !important; color: var(--cream) !important; }
.offcanvas-dark .btn-close { filter: invert(1); }
.offcanvas-dark a { color: var(--cream); padding: .5rem 0; display: block; font-family: "Syne", sans-serif; }

.two-col { display: grid; gap: 2.5rem; }
@media (min-width: 992px) {
  .two-col { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: start; }
  .two-col.manifesto { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .two-col.footer-cta { grid-template-columns: 1.4fr 1fr; align-items: end; }
  .three-col { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.three-col { display: grid; gap: 2rem; }
.header-row {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 768px) {
  .header-row {
    flex-direction: row; justify-content: space-between; align-items: end; gap: 3rem;
  }
}

.page-content h2, .page-content h3 { font-family: "Syne", sans-serif; margin-top: 1.5rem; margin-bottom: .75rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul, .page-content ol { margin-bottom: 1rem; padding-left: 1.25rem; }
.page-content a { color: var(--orange); text-decoration: underline; }
.page-content img { max-width: 100%; border-radius: 1rem; margin: 1rem 0; }
