:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --ink: #111410;
  --muted: #626a62;
  --paper: #f5f1e7;
  --paper-2: #fffdf7;
  --forest: #082f2a;
  --forest-2: #0c453b;
  --gold: #bd9148;
  --blue: #294d5c;
  --line: rgba(17, 20, 16, 0.13);
  --line-dark: rgba(255, 253, 247, 0.18);
  --shadow: 0 24px 70px rgba(17, 20, 16, 0.13);
  --shadow-strong: 0 36px 90px rgba(2, 24, 20, 0.3);
  --radius: 8px;
  --mx: 50vw;
  --my: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(8, 47, 42, 0.05) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(180deg, #f8f5ec 0%, #ebe4d4 46%, #f8f5ec 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(189, 145, 72, 0.11) 54.2%, transparent 54.8%),
    radial-gradient(620px 380px at var(--mx) var(--my), rgba(255, 253, 247, 0.34), transparent 72%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

::selection {
  background: rgba(189, 145, 72, 0.32);
}

:focus-visible {
  outline: 3px solid rgba(189, 145, 72, 0.46);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--forest));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(8, 47, 42, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 47, 42, 0.08), rgba(189, 145, 72, 0.16)),
    var(--paper-2);
  object-fit: contain;
  padding: 5px;
  box-shadow: 0 10px 24px rgba(17, 20, 16, 0.09);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  color: var(--forest);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  border-color: rgba(8, 47, 42, 0.2);
  background: rgba(8, 47, 42, 0.07);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.74);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 122px) clamp(18px, 6vw, 86px);
}

.hero {
  min-height: calc(100vh - 74px);
  padding-top: clamp(42px, 7vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(8, 47, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--forest);
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy h1,
.section-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 1000px;
  margin-top: 22px;
  font-size: clamp(50px, 7vw, 100px);
  line-height: 0.92;
}

.hero-copy p,
.section-copy p,
.service-detail p,
.scope-summary p,
.process p,
.contact-card p,
.value-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-copy p {
  max-width: 640px;
  margin: 26px 0 0;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fffdf7;
  box-shadow: 0 16px 42px rgba(8, 47, 42, 0.18);
}

.button.secondary {
  border: 1px solid rgba(8, 47, 42, 0.2);
  background: rgba(255, 253, 247, 0.78);
  color: var(--forest);
}

.button.secondary.light {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf7;
}

.button.compact {
  width: fit-content;
  min-height: 42px;
  padding: 11px 15px;
}

.button:hover {
  transform: translateY(-3px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin: 28px 0 0;
}

.hero-metrics div {
  min-height: 88px;
  border: 1px solid rgba(8, 47, 42, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.64);
  padding: 13px;
}

.hero-metrics dt {
  color: var(--forest);
  font-size: 24px;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.brand-motion,
.service-detail,
.scope-builder,
.brief-form,
.contact-card,
.value-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow);
}

.brand-motion {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(238, 232, 215, 0.96)),
    var(--paper-2);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.brand-motion::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(8, 47, 42, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.motion-header,
.motion-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 22px;
}

.motion-header span,
.motion-footer span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
}

.motion-header strong {
  max-width: 420px;
  color: var(--ink);
  font-size: clamp(27px, 3.8vw, 42px);
  line-height: 1;
}

.motion-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.55;
  pointer-events: none;
}

.motion-grid span {
  border-right: 1px solid rgba(8, 47, 42, 0.08);
  border-bottom: 1px solid rgba(8, 47, 42, 0.07);
}

.motion-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px 22px 28px;
}

.motion-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(8, 47, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  padding: 14px;
  transform: translateX(0);
  animation: cardFloat 7s ease-in-out infinite;
}

.motion-card:nth-child(2) {
  animation-delay: 900ms;
}

.motion-card:nth-child(3) {
  animation-delay: 1800ms;
}

.motion-card.active {
  border-color: rgba(189, 145, 72, 0.42);
  background: rgba(189, 145, 72, 0.1);
}

.motion-card small {
  color: var(--gold);
  font-weight: 950;
}

.motion-card strong {
  color: var(--forest);
  font-size: 25px;
  line-height: 1.05;
}

.motion-card span {
  color: var(--muted);
  line-height: 1.45;
}

.motion-footer {
  border-top: 1px solid rgba(8, 47, 42, 0.1);
  background: rgba(8, 47, 42, 0.055);
}

.motion-footer b {
  color: var(--forest);
  font-size: 24px;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
  padding: 0 clamp(18px, 6vw, 86px);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 94px;
  background: rgba(255, 253, 247, 0.76);
  color: var(--forest);
  padding: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 950;
}

.services,
.scope {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 6vw, 86px);
}

.section-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 1040px;
}

.section-copy h2,
.contact-card h2 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
}

.section-copy p {
  max-width: 660px;
  margin-bottom: 0;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: start;
  margin-top: 34px;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-list button {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.76);
  color: var(--muted);
  padding: 14px;
  text-align: left;
  font-weight: 950;
}

.service-list button.active,
.service-list button:hover {
  border-color: rgba(8, 47, 42, 0.28);
  background: var(--forest);
  color: #fffdf7;
}

.service-detail {
  display: grid;
  justify-items: start;
  min-height: 430px;
  padding: clamp(22px, 4vw, 42px);
}

.service-detail > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-detail h3 {
  max-width: 760px;
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 24px 0;
}

.deliverables span,
.scope-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 13px;
  font-size: 14px;
  font-weight: 900;
}

.why {
  align-items: start;
  background: #fffdf7;
  border-block: 1px solid var(--line);
}

.value-grid {
  display: grid;
  gap: 14px;
}

.value-grid article {
  padding: 22px;
}

.value-grid span,
.process span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.value-grid h3,
.process h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.05;
}

.scope-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.68fr);
  overflow: hidden;
  margin-top: 34px;
}

.scope-options {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.scope-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
}

.scope-option input {
  width: 19px;
  height: 19px;
  accent-color: var(--forest);
}

.scope-summary {
  display: grid;
  align-content: center;
  justify-items: start;
  border-left: 1px solid var(--line);
  background: var(--forest);
  color: #fffdf7;
  padding: 24px;
}

.scope-summary > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.scope-summary strong {
  margin-top: 9px;
  font-size: 34px;
  line-height: 1;
}

.scope-summary p {
  color: rgba(255, 253, 247, 0.72);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
  padding: 0 clamp(18px, 6vw, 86px);
}

.process article {
  min-height: 270px;
  background: rgba(255, 253, 247, 0.78);
  padding: clamp(22px, 3vw, 34px);
}

.process h3 {
  margin-top: 68px;
}

.contact {
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px) 0 0 / 82px 82px,
    var(--forest);
}

.contact-card,
.brief-form {
  background: rgba(255, 253, 247, 0.96);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.contact-card h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.contact-info {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(245, 241, 231, 0.94)),
    var(--paper-2);
}

.contact-info::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(8, 47, 42, 0.18);
  border-radius: 8px;
  transform: rotate(8deg);
  pointer-events: none;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-points span {
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--gold);
  background: rgba(8, 47, 42, 0.06);
  padding: 12px 14px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.instagram-link {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 4px;
  color: var(--forest);
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.instagram-link:hover {
  color: var(--gold);
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--ink);
  padding: 13px 14px;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(8, 47, 42, 0.1);
  outline: none;
}

.dm-preview {
  min-height: 96px;
  border: 1px dashed rgba(8, 47, 42, 0.34);
  border-radius: 8px;
  background: rgba(8, 47, 42, 0.06);
  color: var(--muted);
  padding: 14px;
  line-height: 1.6;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer strong,
.footer span {
  display: block;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 1120px) {
  .section-grid,
  .service-layout,
  .scope-builder {
    grid-template-columns: 1fr;
  }

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

  .scope-summary {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    position: fixed;
    inset: 74px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(248, 245, 236, 0.98);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }

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

  .motion-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .motion-card span {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand > span {
    display: none;
  }

  .section-grid,
  .services,
  .scope {
    padding-inline: 18px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .section-copy p,
  .service-detail p,
  .scope-summary p,
  .process p,
  .contact-card p,
  .value-grid p {
    font-size: 15px;
  }

  .hero-actions,
  .form-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .trust-strip,
  .process {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .brief-form,
  .contact-card {
    padding: 16px;
  }

  .motion-header,
  .motion-footer {
    padding: 18px;
  }

  .motion-stack {
    padding: 14px 18px 22px;
  }

  .contact-info::after {
    width: 82px;
    height: 82px;
    opacity: 0.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
