:root {
  --black: #070807;
  --ink: #0d1110;
  --charcoal: #121916;
  --charcoal-2: #18231f;
  --panel: #1d2b25;
  --panel-2: #24362f;
  --deep: #0c1712;

  --green: #7fbf9a;
  --mint: #a7e6bf;
  --pink: #e9a8c8;
  --pink-soft: #f1bdd8;
  --lavender: #b6acd8;
  --blue: #9fc7e6;

  --text: #e1f7ea;
  --muted: #9eb9aa;
  --muted-2: #748c80;

  --line: rgba(225, 247, 234, 0.12);
  --line-strong: rgba(225, 247, 234, 0.22);

  --radius: 18px;
  --radius-lg: 34px;

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 168, 200, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(127, 191, 154, 0.12), transparent 34%),
    var(--black);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: rgba(7, 8, 7, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.site-logo {
  display: block;
  width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.footer-logo-img {
  width: 180px;
  max-height: 62px;
  margin-bottom: 16px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(127, 191, 154, 0.24), rgba(233, 168, 200, 0.18));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--mint);
  font-weight: 900;
  font-size: 1.2rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--pink-soft);
  font-weight: 800;
}

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

.nav a,
.nav button {
  color: rgba(225, 247, 234, 0.78);
  font-weight: 800;
}

.nav a:hover,
.nav button:hover {
  color: var(--mint);
}

.nav-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(233, 168, 200, 0.35);
  background: rgba(233, 168, 200, 0.14);
  color: var(--text) !important;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px 0;
}

.landing {
  position: relative;
  min-height: 100vh;
  padding-top: 78px;
  overflow: hidden;
}

.landing-media {
  position: absolute;
  inset: 0;
}

.landing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.9);
}

.landing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.97), rgba(7, 8, 7, 0.74), rgba(7, 8, 7, 0.48)),
    radial-gradient(circle at right, rgba(233, 168, 200, 0.14), transparent 35%);
}

.landing-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 78px);
  padding: 7vw 4vw 5vw;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: end;
}

.vertical-rail {
  height: 100%;
  min-height: 520px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.kicker {
  color: var(--pink-soft);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 900;
  margin: 0 0 14px;
}

.landing-copy h1 {
  max-width: 850px;
  margin: 0 0 26px;
  font-size: clamp(3rem, 6vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.landing-copy p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.16rem;
  margin: 0 0 32px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: rgba(233, 168, 200, 0.18);
  color: var(--text);
  border-color: rgba(233, 168, 200, 0.38);
}

.button.primary:hover {
  background: rgba(127, 191, 154, 0.22);
  border-color: rgba(127, 191, 154, 0.45);
}

.button.ghost {
  background: rgba(225, 247, 234, 0.06);
  border-color: var(--line-strong);
  color: var(--text);
}

.landing-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(36, 54, 47, 0.92), rgba(13, 17, 16, 0.96));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.panel-number {
  color: var(--mint);
  font-weight: 900;
}

.landing-panel h2 {
  margin: 10px 0 12px;
  font-size: 2.2rem;
  line-height: 1;
}

.landing-panel p {
  color: var(--muted);
}

.panel-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.panel-list div {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.35);
}

.panel-list strong {
  display: block;
  color: var(--pink-soft);
}

.panel-list span {
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 18px 0;
  animation: scrollTicker 35s linear infinite;
}

.ticker-track span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 100px 4vw;
}

.section-intro,
.services-header,
.reveal-copy {
  max-width: 980px;
  margin-bottom: 42px;
}

.section h2,
.services-header h2,
.reveal-copy h2,
.areas-section h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section p {
  color: var(--muted);
}

.work-section {
  background:
    radial-gradient(circle at top right, rgba(127, 191, 154, 0.1), transparent 34%),
    var(--black);
}

.work-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.featured-work,
.work-stack article,
.reveal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--ink));
  box-shadow: var(--shadow-soft);
}

.featured-work {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-work img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.85);
}

.featured-work div {
  padding: 28px;
}

.featured-work span,
.work-stack span,
.reveal-card span {
  color: var(--pink-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.featured-work h3,
.work-stack h3,
.reveal-card h3 {
  margin: 8px 0 8px;
  font-size: 2rem;
  line-height: 1.05;
}

.work-stack {
  display: grid;
  gap: 18px;
}

.work-stack article {
  padding: 28px;
  border-radius: var(--radius);
}

.work-stack p {
  color: var(--muted);
}

.services-section {
  background:
    radial-gradient(circle at top left, rgba(233, 168, 200, 0.12), transparent 34%),
    linear-gradient(180deg, var(--charcoal), var(--deep));
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 44px;
  align-items: end;
  max-width: none;
}

.services-header p {
  color: var(--muted);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.service-tab {
  border: 1px solid var(--line);
  background: rgba(225, 247, 234, 0.055);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.service-tab.active,
.service-tab:hover {
  background: rgba(233, 168, 200, 0.18);
  border-color: rgba(233, 168, 200, 0.36);
  color: var(--text);
}

.service-display {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.86);
}

.service-copy {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--ink));
  box-shadow: var(--shadow-soft);
}

.service-copy span {
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.service-copy h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin: 12px 0 16px;
  letter-spacing: -0.05em;
}

.service-copy p,
.service-copy li {
  color: var(--muted);
}

.service-copy ul {
  padding-left: 20px;
  margin-bottom: 28px;
}

.reveal-section {
  background:
    linear-gradient(180deg, var(--deep), var(--charcoal));
}

.reveal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.reveal-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.reveal-card.tall {
  min-height: 520px;
}

.reveal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.86);
  transition: 0.3s ease;
}

.reveal-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.82) saturate(0.95);
}

.reveal-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.areas-section {
  padding: 80px 4vw;
  background: var(--panel);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-map {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.area-map span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(225, 247, 234, 0.055);
  color: var(--muted);
  font-weight: 900;
}

.footer {
  padding: 60px 4vw;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
  gap: 44px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--mint);
}

.footer h3 {
  margin-top: 0;
}

.footer-intake-link {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-intake-link:hover {
  color: var(--mint);
}

.mobile-cta {
  display: none;
}

.intake-open-body {
  overflow: hidden;
}

.intake-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.intake-modal.active {
  display: flex;
}

.intake-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(233, 168, 200, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.intake-dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 760px);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--ink));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  padding: 30px;
}

.intake-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(233, 168, 200, 0.36);
  background: rgba(233, 168, 200, 0.18);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.intake-header {
  padding-right: 48px;
  margin-bottom: 26px;
}

.intake-kicker {
  margin: 0 0 10px;
  color: var(--pink-soft);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 900;
}

.intake-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intake-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(225, 247, 234, 0.08);
  overflow: hidden;
  border: 1px solid var(--line);
}

.intake-progress-bar {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--mint));
  transition: width 0.25s ease;
}

.intake-steps-label {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
}

.intake-step {
  display: none;
}

.intake-step.active {
  display: block;
}

.intake-step h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.intake-step p {
  color: var(--muted);
  margin-top: 0;
}

.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.intake-form label {
  display: block;
  color: var(--text);
  font-weight: 900;
  margin-bottom: 16px;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(7, 8, 7, 0.58);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.intake-form textarea {
  resize: vertical;
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: rgba(225, 247, 234, 0.38);
}

.intake-form option {
  background: var(--charcoal);
  color: var(--text);
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 2px solid rgba(233, 168, 200, 0.24);
  border-color: var(--pink-soft);
}

.intake-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.intake-options label {
  margin: 0;
}

.intake-options input {
  display: none;
}

.intake-options span {
  display: block;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(225, 247, 234, 0.045);
  color: var(--muted);
  font-weight: 900;
  transition: 0.2s ease;
}

.intake-options input:checked + span {
  color: var(--text);
  border-color: rgba(233, 168, 200, 0.42);
  background: rgba(233, 168, 200, 0.16);
}

.intake-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
}

.intake-consent input {
  width: auto;
  margin-top: 4px;
}

.intake-summary {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(225, 247, 234, 0.045);
  color: var(--muted);
  font-size: 0.94rem;
}

.intake-summary strong {
  color: var(--mint);
  margin-bottom: 4px;
}

.intake-status {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  color: var(--mint);
  border: 1px solid rgba(127, 191, 154, 0.35);
  background: rgba(127, 191, 154, 0.1);
  font-weight: 900;
}

.intake-status.active {
  display: block;
}

.intake-status.error {
  color: var(--pink-soft);
  border-color: rgba(233, 168, 200, 0.38);
  background: rgba(233, 168, 200, 0.1);
}

.intake-status a {
  color: var(--mint);
  text-decoration: underline;
}

.intake-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

#intakeSubmit {
  display: none;
}

.legal-main {
  padding-top: 78px;
  background:
    radial-gradient(circle at top right, rgba(233, 168, 200, 0.1), transparent 34%),
    radial-gradient(circle at top left, rgba(127, 191, 154, 0.1), transparent 30%),
    var(--black);
}

.legal-hero {
  min-height: 48vh;
  padding: 120px 4vw 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  margin: 0 0 18px;
}

.legal-updated {
  color: var(--muted-2);
  font-weight: 800;
}

.legal-content {
  width: min(92%, 980px);
  margin: 0 auto;
  padding: 70px 0 100px;
  display: grid;
  gap: 20px;
}

.legal-card,
.legal-note {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--ink));
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.legal-card p,
.legal-card li,
.legal-note p {
  color: var(--muted);
}

.legal-card p:last-child,
.legal-note p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--mint);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-note {
  background: rgba(233, 168, 200, 0.08);
  border-color: rgba(233, 168, 200, 0.24);
}

@media (max-width: 1050px) {
  .landing-grid,
  .work-layout,
  .services-header,
  .service-display,
  .areas-section {
    grid-template-columns: 1fr;
  }

  .vertical-rail {
    display: none;
  }

  .landing-grid {
    align-items: center;
  }

  .landing-panel {
    max-width: 620px;
  }

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

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

@media (max-width: 760px) {
  .topbar {
    min-height: 74px;
  }

  .site-logo {
    width: 155px;
    max-height: 52px;
  }

  .footer-logo-img {
    width: 160px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 4vw;
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .nav.active {
    display: flex;
  }

  .nav a,
  .nav button {
    padding: 12px 0;
  }

  .nav-button {
    text-align: center;
    margin-top: 10px;
  }

  .landing {
    padding-top: 74px;
  }

  .landing-grid {
    padding-top: 70px;
  }

  .landing-copy h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .reveal-grid,
  .footer,
  .intake-grid,
  .intake-options {
    grid-template-columns: 1fr;
  }

  .featured-work img,
  .service-image img {
    min-height: 300px;
    height: 300px;
  }

  .section,
  .areas-section {
    padding: 70px 5vw;
  }

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 80;
  }

  .mobile-cta a,
  .mobile-cta button {
    display: grid;
    place-items: center;
    padding: 13px;
    border-radius: 999px;
    font-weight: 900;
    background: rgba(233, 168, 200, 0.18);
    border: 1px solid rgba(233, 168, 200, 0.36);
    color: var(--text);
    font: inherit;
    cursor: pointer;
  }

  .mobile-cta a:first-child {
    background: rgba(127, 191, 154, 0.14);
    border-color: rgba(127, 191, 154, 0.32);
  }

  .intake-dialog {
    padding: 24px;
  }

  .intake-actions {
    flex-direction: column;
  }

  .intake-actions .button {
    width: 100%;
  }

  .legal-main {
    padding-top: 74px;
  }

  .legal-hero {
    min-height: auto;
    padding: 90px 5vw 50px;
  }

  .legal-content {
    width: 90%;
    padding: 50px 0 80px;
  }

  .legal-card,
  .legal-note {
    padding: 22px;
  }

  body {
    padding-bottom: 74px;
  }
}