@charset "UTF-8";

:root {
  --ink: #11110f;
  --ink-soft: #252521;
  --paper: #f5f2eb;
  --paper-deep: #ebe7de;
  --paper-muted: #d8d4cb;
  --white: #fffdf8;
  --muted: #706e67;
  --muted-dark: #a7a49a;
  --line: rgba(17, 17, 15, .16);
  --line-light: rgba(245, 242, 235, .18);
  --accent: #c8f46a;
  --accent-deep: #9cc83c;
  --max-width: 1240px;
  --ease: cubic-bezier(.22, .72, .22, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  background: var(--accent);
  color: var(--ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 100;
  font-size: .8rem;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.page-shell { overflow: hidden; }
.container {
  width: min(var(--max-width), calc(100% - 56px));
  margin: 0 auto;
}
.section-pad { padding: 132px 0; }
.section-rule { border-top: 1px solid var(--line); }
.section-tint { background: var(--paper-deep); }

.announcement-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement-inner p { margin: 0; }
.announcement-inner a {
  color: var(--accent);
  transition: color .25s ease;
}
.announcement-inner a:hover { color: var(--white); }
.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin: 0 8px 1px 0;
  border-radius: 100%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 244, 106, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 235, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 242, 235, .96);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
}
.brand-main {
  font-family: Arial Black, "Helvetica Neue", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -.08em;
}
.brand-slash { color: var(--accent-deep); font-size: 1.05rem; font-weight: 700; margin: 0 4px; }
.brand-sub { font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.nav-cta) {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.site-nav > a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}
.nav-cta {
  padding: 14px 17px;
  color: var(--ink);
  background: var(--accent);
}
.nav-cta:hover,
.button:hover { transform: translateY(-3px); }
.nav-cta span, .button span { font-size: 1.1rem; line-height: .6; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  padding-top: 106px;
  padding-bottom: 120px;
}
.hero::after {
  content: "";
  width: 42vw;
  height: 42vw;
  max-width: 610px;
  max-height: 610px;
  position: absolute;
  right: -20vw;
  bottom: -30vw;
  border: 1px solid rgba(17, 17, 15, .05);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  align-items: center;
  gap: clamp(48px, 8vw, 126px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}
.eyebrow-light { color: var(--muted-dark); }
.hero h1 {
  max-width: 760px;
  margin-bottom: 35px;
  font-family: Arial Black, "Helvetica Neue", sans-serif;
  font-size: clamp(3.65rem, 6.85vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .88;
}
.hero h1 .hero-break { display: block; }
.hero h1 em {
  display: inline-block;
  position: relative;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.1em;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  height: .14em;
  left: .04em;
  right: -.02em;
  bottom: .01em;
  z-index: -1;
  background: var(--accent);
  transform: rotate(-2deg);
}
.hero-period { color: var(--accent-deep); }
.hero-lead {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.button-primary { min-height: 52px; padding: 0 23px; color: var(--ink); background: var(--accent); }
.button-primary:hover { background: var(--accent-deep); }
.text-link,
.inline-cta,
.card-link,
.footer-fiverr {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.text-link { color: var(--ink); }
.text-link span, .inline-cta span, .card-link span, .footer-fiverr span { color: var(--accent-deep); font-size: 1.05rem; transition: transform .25s ease; }
.text-link:hover span, .inline-cta:hover span, .card-link:hover span, .footer-fiverr:hover span { transform: translate(3px, -3px); }
.hero-trust {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 66px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: ""; width: 5px; height: 5px; display: inline-block; background: var(--accent-deep); border-radius: 50%; }

.hero-visual { min-height: 600px; position: relative; padding: 19px 22px 48px 0; }
.hero-visual-shadow {
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 75px;
  left: 38px;
  background: var(--accent);
  transform: rotate(-3deg);
}
.hero-poster {
  min-height: 555px;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 16px 18px 0 rgba(17, 17, 15, .1);
  transform: rotate(2.5deg);
  animation: poster-float 7s ease-in-out infinite;
}
.poster-topline,
.poster-footer {
  position: absolute;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-dark);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.poster-topline { top: 27px; }
.poster-footer { bottom: 25px; color: var(--paper-muted); }
.poster-mark {
  position: absolute;
  top: 78px;
  left: -20px;
  color: var(--accent);
  font-family: Arial Black, sans-serif;
  font-size: 25rem;
  font-weight: 900;
  letter-spacing: -.18em;
  line-height: .75;
  opacity: .98;
}
.poster-orbit { position: absolute; border: 1px solid rgba(245, 242, 235, .5); border-radius: 50%; }
.orbit-one { width: 360px; height: 360px; top: 90px; right: -110px; }
.orbit-two { width: 230px; height: 230px; top: 153px; right: -44px; border-color: var(--accent); }
.poster-cross { position: absolute; width: 35px; height: 35px; }
.poster-cross::before, .poster-cross::after { content: ""; position: absolute; background: var(--accent); }
.poster-cross::before { width: 100%; height: 1px; top: 17px; left: 0; }
.poster-cross::after { width: 1px; height: 100%; left: 17px; top: 0; }
.cross-one { top: 127px; right: 40px; }
.cross-two { bottom: 115px; left: 34px; transform: scale(.55); }
.cross-two::before, .cross-two::after { background: var(--paper); }
.poster-copy { position: absolute; left: 29px; bottom: 112px; z-index: 2; }
.poster-copy p {
  margin-bottom: 15px;
  color: var(--paper);
  font-family: Arial Black, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -.11em;
  line-height: .82;
}
.poster-copy span { color: var(--paper-muted); font-size: .7rem; letter-spacing: .04em; line-height: 1.4; }
.poster-sticker {
  width: 86px;
  height: 86px;
  position: absolute;
  right: 38px;
  bottom: 83px;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-align: center;
  transform: rotate(11deg);
}
.hero-caption {
  position: absolute;
  right: -5px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transform: rotate(-2.5deg);
}
.caption-rule { width: 22px; height: 1px; background: var(--accent-deep); }

.section-marker { padding-top: 4px; }
.marker-glyph {
  margin-top: 115px;
  color: var(--accent-deep);
  font-size: 4.7rem;
  line-height: 1;
  transform: rotate(18deg);
}
.about-grid { display: grid; grid-template-columns: 23% 1fr; gap: 8%; }
.about-content h2,
.section-heading h2,
.faq-intro h2 {
  max-width: 880px;
  margin-bottom: 52px;
  font-family: Arial Black, "Helvetica Neue", sans-serif;
  font-size: clamp(3rem, 5.3vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -.095em;
  line-height: .9;
}
.serif-accent { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; letter-spacing: -.09em; }
.about-text-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 8%; max-width: 890px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.about-text-grid p { color: var(--muted); font-size: .97rem; line-height: 1.75; }
.about-text-grid .large-copy { margin: 0; color: var(--ink); font-size: 1.33rem; letter-spacing: -.025em; line-height: 1.4; }
.about-text-grid p + p { margin-top: 0; }
.expertise-block { padding: 31px 0 33px; }
.mini-label { margin: 0 0 14px; color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pill-list li { padding: 9px 12px; border: 1px solid var(--line); color: var(--muted); font-size: .73rem; }
.inline-cta { padding-bottom: 6px; border-bottom: 1px solid var(--ink); color: var(--ink); }

.section-heading { margin-bottom: 68px; }
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.heading-note { max-width: 300px; margin: 0 0 7px; color: var(--muted); font-size: .89rem; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 315px; display: flex; flex-direction: column; padding: 25px 25px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background-color .3s ease, transform .35s var(--ease); }
.service-card:hover { position: relative; z-index: 1; background: var(--paper); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(17,17,15,.07); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 54px; }
.service-number { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }
.service-icon svg { width: 42px; height: 42px; }
.service-card h3 { margin-bottom: 13px; font-size: 1.15rem; letter-spacing: -.035em; line-height: 1.1; }
.service-card p { max-width: 220px; margin-bottom: 25px; color: var(--muted); font-size: .83rem; line-height: 1.62; }
.card-link { margin-top: auto; color: var(--ink); font-size: .63rem; }

.portfolio { color: var(--paper); background: var(--ink); }
.portfolio .section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.portfolio .heading-note { color: var(--muted-dark); }
.portfolio .section-heading h2 { color: var(--paper); }
.portfolio .serif-accent { color: var(--accent); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 45px; }
.filter-button {
  padding: 9px 13px;
  border: 1px solid var(--line-light);
  color: var(--muted-dark);
  background: transparent;
  cursor: pointer;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.filter-button:hover, .filter-button.is-active { color: var(--ink); border-color: var(--accent); background: var(--accent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 26px 20px; }
.project-card { grid-column: span 5; min-width: 0; animation: project-in .45s var(--ease) both; }
.project-card-link { display: block; }
.project-card-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.project-card:nth-child(3n + 1) { grid-column: span 7; }
.project-card:nth-child(3n + 2) { grid-column: span 5; }
.project-card:nth-child(3n) { grid-column: span 5; }
.project-card:nth-child(4n) { grid-column: span 7; }
.project-card:nth-child(2) .project-image,
.project-card:nth-child(5) .project-image { aspect-ratio: 1 / 1.08; }
.project-image-wrap { position: relative; overflow: hidden; background: var(--paper-deep); }
.project-image { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; transition: transform .7s var(--ease); }
.project-card:hover .project-image { transform: scale(1.045); }
.project-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-end; padding: 18px; pointer-events: none; }
.project-arrow { width: 45px; height: 45px; display: grid; place-items: center; color: var(--ink); background: var(--accent); font-size: 1.25rem; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .35s var(--ease); }
.project-card:hover .project-arrow, .project-card:focus-within .project-arrow { opacity: 1; transform: translateY(0); }
.project-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 16px 0 3px; }
.project-title { margin: 0 0 5px; color: var(--paper); font-size: 1rem; letter-spacing: -.025em; }
.project-description { max-width: 430px; margin: 0; color: var(--muted-dark); font-size: .78rem; line-height: 1.55; }
.project-category { flex: 0 0 auto; padding-top: 3px; color: var(--accent); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.no-script-note { color: var(--muted-dark); }
.no-script-note a { color: var(--accent); text-decoration: underline; }
.portfolio-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 74px; padding-top: 25px; border-top: 1px solid var(--line-light); }
.portfolio-cta p { margin: 0; color: var(--muted-dark); font-size: .78rem; letter-spacing: .04em; }
.button-outline-light { min-height: 49px; padding: 0 19px; border: 1px solid var(--paper); color: var(--paper); }
.button-outline-light:hover { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.why .section-heading { margin-bottom: 65px; }
.heading-cta { margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-card { min-height: 238px; padding: 24px 26px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-symbol { display: block; min-height: 55px; color: var(--accent-deep); font-family: Georgia, serif; font-size: 2.15rem; line-height: 1; }
.why-card h3 { margin-bottom: 10px; font-size: 1rem; letter-spacing: -.02em; text-transform: capitalize; }
.why-card p { max-width: 280px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }

.process-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-step { min-height: 248px; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 24px 24px 28px 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 24px; }
.process-step:last-child { border-right: 0; }
.step-number { margin-bottom: 34px; color: var(--accent-deep); font-size: .69rem; font-weight: 800; letter-spacing: .1em; }
.process-step h3 { margin-bottom: 8px; font-size: 1.3rem; letter-spacing: -.04em; }
.process-step p { max-width: 190px; margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.55; }
.step-arrow { align-self: flex-end; color: var(--muted); font-size: 1.4rem; line-height: 1; transition: color .25s ease, transform .35s var(--ease); }
.process-step:hover .step-arrow { color: var(--accent-deep); transform: translate(4px, 4px); }

.fiverr-cta { padding-top: 115px; padding-bottom: 115px; background: var(--ink); }
.cta-panel { position: relative; overflow: hidden; padding: 86px 9%; color: var(--ink); background: var(--accent); text-align: center; }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; width: 270px; height: 270px; border: 1px solid rgba(17,17,15,.22); border-radius: 50%; pointer-events: none; }
.cta-panel::before { top: -174px; left: -107px; }
.cta-panel::after { right: -111px; bottom: -188px; }
.cta-spark { position: absolute; top: 28px; right: 35px; font-size: 2.3rem; transform: rotate(16deg); }
.cta-panel .eyebrow { justify-content: center; color: rgba(17,17,15,.65); }
.cta-panel h2 { max-width: 900px; margin: 0 auto 21px; font-family: Arial Black, "Helvetica Neue", sans-serif; font-size: clamp(3.2rem, 6.4vw, 7rem); font-weight: 900; letter-spacing: -.105em; line-height: .86; }
.cta-panel h2 span, .final-inner h2 span { font-family: Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.1em; }
.cta-copy { max-width: 475px; margin: 0 auto 32px; color: rgba(17,17,15,.74); font-size: 1rem; line-height: 1.6; }
.button-dark { min-height: 53px; padding: 0 24px; color: var(--paper); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.secure-note { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin: 33px 0 0; color: rgba(17,17,15,.72); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.secure-note small { width: 100%; color: rgba(17,17,15,.58); font-size: .67rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.secure-icon { width: 18px; height: 18px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .65rem; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 11%; }
.faq-intro h2 { margin-bottom: 30px; }
.faq-intro > p:not(.eyebrow) { max-width: 325px; margin-bottom: 28px; color: var(--muted); font-size: .91rem; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 19px 0; color: var(--ink); cursor: pointer; font-size: .96rem; font-weight: 700; letter-spacing: -.018em; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; }
.faq-plus { width: 18px; height: 18px; flex: 0 0 18px; position: relative; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 8px; left: 1px; width: 16px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-plus::after { transform: rotate(90deg); }
details[open] .faq-plus::after { transform: rotate(0deg); }
details > p { max-width: 650px; margin: -3px 40px 23px 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }
details > p a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent-deep); text-underline-offset: 3px; }

.final-cta { color: var(--paper); background: var(--ink); }
.final-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.final-inner .eyebrow { justify-content: center; }
.final-inner h2 { margin-bottom: 25px; font-family: Arial Black, "Helvetica Neue", sans-serif; font-size: clamp(3.3rem, 7vw, 7.8rem); font-weight: 900; letter-spacing: -.11em; line-height: .84; }
.final-inner h2 span { color: var(--accent); }
.final-inner > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 33px; color: var(--muted-dark); font-size: .98rem; line-height: 1.7; }

.site-footer { color: var(--paper); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 40px; padding-top: 52px; padding-bottom: 58px; border-top: 1px solid var(--line-light); }
.brand-light { color: var(--paper); }
.footer-brand p { margin: 15px 0 0; color: var(--muted-dark); font-size: .75rem; }
.site-footer .mini-label { color: var(--muted-dark); }
.footer-nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 38px; }
.footer-nav a { color: var(--paper-muted); font-size: .78rem; transition: color .25s ease; }
.footer-nav a:hover { color: var(--accent); }
.footer-fiverr { color: var(--accent); }
.footer-note { margin: 12px 0 0; color: var(--muted-dark); font-size: .75rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0 25px; border-top: 1px solid var(--line-light); color: var(--muted-dark); font-size: .67rem; }
.footer-bottom p { margin: 0; }
.back-top { color: var(--paper-muted); transition: color .25s ease; }
.back-top:hover { color: var(--accent); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-delay-1 { transition-delay: .08s; }
.js .reveal-delay-2 { transition-delay: .16s; }
.js .reveal-delay-3 { transition-delay: .24s; }
@keyframes poster-float { 0%, 100% { transform: rotate(2.5deg) translateY(0); } 50% { transform: rotate(2.5deg) translateY(-8px); } }
@keyframes project-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .container { width: min(var(--max-width), calc(100% - 42px)); }
  .site-nav { gap: 20px; }
  .hero-grid { gap: 48px; grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr); }
  .hero h1 { font-size: clamp(3.45rem, 7vw, 6rem); }
  .hero-visual { min-height: 520px; }
  .hero-poster { min-height: 480px; }
  .poster-copy p { font-size: 4.1rem; }
  .service-card { padding-left: 19px; padding-right: 19px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 92px 0; }
  .site-header { background: rgba(245, 242, 235, .96); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 1px; display: block; background: currentColor; transition: transform .25s ease; }
  .menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 21px;
    left: 21px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 15px 34px rgba(17,17,15,.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .3s var(--ease);
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { padding: 14px 11px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 10px; padding: 17px; text-align: center; }
  .hero { padding-top: 78px; padding-bottom: 93px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero h1 { max-width: 680px; font-size: clamp(3.75rem, 10vw, 6.8rem); }
  .hero-visual { width: min(100%, 570px); min-height: 565px; margin: 10px auto 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .marker-glyph { display: none; }
  .section-marker .eyebrow { margin-bottom: 0; }
  .about-content h2, .section-heading h2, .faq-intro h2 { font-size: clamp(3rem, 8.5vw, 5.2rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio .section-heading, .split-heading, .process-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .portfolio .heading-note, .heading-note { max-width: 430px; margin: 0; }
  .portfolio-grid { gap: 30px 16px; }
  .project-card, .project-card:nth-child(3n + 1), .project-card:nth-child(3n + 2), .project-card:nth-child(3n), .project-card:nth-child(4n) { grid-column: span 6; }
  .project-card:nth-child(2) .project-image, .project-card:nth-child(5) .project-image { aspect-ratio: 1.35 / 1; }
  .heading-cta { margin-bottom: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--line); }
  .process-step:nth-child(3) { padding-left: 0; }
  .process-step:nth-child(4) { padding-left: 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro > p:not(.eyebrow) { max-width: 510px; }
  .footer-top { grid-template-columns: 1.2fr 1fr; }
  .footer-action { grid-column: 1 / -1; padding-top: 5px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max-width), calc(100% - 32px)); }
  .announcement-inner { min-height: 44px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
  .announcement-inner a { display: none; }
  .brand-main { font-size: 1.05rem; }
  .brand-sub { font-size: .63rem; }
  .site-nav { right: 16px; left: 16px; }
  .hero { padding-top: 63px; padding-bottom: 75px; }
  .hero h1 { margin-bottom: 27px; font-size: clamp(3.25rem, 15vw, 5.1rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .button-primary { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-trust { margin-top: 48px; gap: 10px 16px; }
  .hero-visual { min-height: 410px; margin-top: 14px; padding: 12px 12px 43px 0; }
  .hero-visual-shadow { top: 18px; left: 22px; bottom: 63px; }
  .hero-poster { min-height: 380px; }
  .poster-topline, .poster-footer { left: 18px; right: 18px; font-size: .46rem; }
  .poster-topline { top: 18px; }
  .poster-footer { bottom: 18px; }
  .poster-mark { top: 65px; left: -15px; font-size: 17rem; }
  .poster-copy { left: 19px; bottom: 76px; }
  .poster-copy p { margin-bottom: 11px; font-size: 3.2rem; }
  .poster-copy span { font-size: .57rem; }
  .poster-sticker { width: 65px; height: 65px; right: 20px; bottom: 59px; font-size: .46rem; }
  .orbit-one { width: 240px; height: 240px; top: 85px; right: -90px; }
  .orbit-two { width: 152px; height: 152px; top: 129px; right: -39px; }
  .cross-one { top: 100px; right: 19px; transform: scale(.7); }
  .cross-two { bottom: 87px; left: 19px; }
  .hero-caption { right: -13px; font-size: .52rem; }
  .section-pad { padding: 74px 0; }
  .eyebrow { margin-bottom: 22px; font-size: .59rem; }
  .about-content h2, .section-heading h2, .faq-intro h2 { margin-bottom: 34px; font-size: clamp(2.85rem, 13vw, 4.3rem); }
  .about-text-grid { grid-template-columns: 1fr; gap: 13px; padding-bottom: 31px; }
  .about-text-grid .large-copy { font-size: 1.17rem; }
  .expertise-block { padding: 25px 0 27px; }
  .pill-list li { padding: 8px 10px; font-size: .66rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .service-top { margin-bottom: 37px; }
  .section-heading { margin-bottom: 44px; }
  .filter-row { gap: 6px; margin-bottom: 30px; }
  .filter-button { padding: 8px 9px; font-size: .58rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 33px; }
  .project-card, .project-card:nth-child(3n + 1), .project-card:nth-child(3n + 2), .project-card:nth-child(3n), .project-card:nth-child(4n) { grid-column: 1; }
  .project-image, .project-card:nth-child(2) .project-image, .project-card:nth-child(5) .project-image { aspect-ratio: 1.2 / 1; }
  .project-info { display: block; }
  .project-category { display: block; margin-top: 10px; }
  .portfolio-cta { align-items: flex-start; flex-direction: column; margin-top: 50px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; padding: 22px 21px 26px; }
  .why-symbol { min-height: 43px; }
  .process-list { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step, .process-step:nth-child(3), .process-step:nth-child(4) { min-height: 180px; padding: 21px 0 24px; border-right: 0; border-top: 1px solid var(--line); }
  .process-step:first-child { border-top: 0; }
  .step-number { margin-bottom: 23px; }
  .step-arrow { position: absolute; right: 2px; bottom: 25px; }
  .fiverr-cta { padding-top: 74px; padding-bottom: 74px; }
  .cta-panel { padding: 67px 22px 58px; }
  .cta-panel h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .cta-copy { font-size: .9rem; }
  .cta-spark { top: 20px; right: 20px; font-size: 1.6rem; }
  .secure-note { font-size: .59rem; }
  .secure-note small { font-size: .62rem; }
  .faq-grid { gap: 40px; }
  summary { min-height: 66px; padding: 17px 0; font-size: .88rem; }
  details > p { margin-right: 10px; font-size: .81rem; }
  .final-inner h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .final-inner > p:not(.eyebrow) { font-size: .88rem; }
  .footer-top { grid-template-columns: 1fr; gap: 37px; padding-top: 43px; padding-bottom: 44px; }
  .footer-action { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
