:root {
  --ink: #08090b;
  --ink-2: #0d0f12;
  --ink-3: #13161a;
  --panel: #171a1f;
  --panel-soft: #1c2026;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --paper: #f1efe9;
  --paper-2: #d7d4cc;
  --muted: #9da2aa;
  --muted-light: #bbbfc5;
  --ember: #ff6a14;
  --ember-light: #ff8a3d;
  --ember-dark: #bd3d00;
  --lime: #d7ff45;
  --max: 1200px;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--ember);
  color: #140802;
}

img,
svg {
  display: block;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--ember-light);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.shell {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ember-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 30px;
}

.brand img {
  width: 118px;
  height: auto;
  mix-blend-mode: screen;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted-light);
  font-size: 0.82rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 13px 9px 17px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 750;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 82px;
  background:
    radial-gradient(circle at 79% 30%, rgba(255, 106, 20, 0.11), transparent 27%),
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.045), transparent 20%),
    var(--ink);
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
}

.hero-glow {
  position: absolute;
  top: 18%;
  right: 12%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 106, 20, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(255, 106, 20, 0.09), inset 0 0 80px rgba(255, 106, 20, 0.04);
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-glow::after {
  inset: 24%;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  min-height: calc(100svh - 160px);
  padding-block: 76px 58px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--paper);
  font-family: "Arial Black", Impact, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.3rem, 6.4vw, 6.9rem);
  font-weight: 900;
  letter-spacing: -0.074em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--ember);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted-light);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 999px;
  padding: 12px 21px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--ember);
  color: #190a03;
  box-shadow: 0 16px 36px rgba(255, 106, 20, 0.18);
}

.button-primary:hover {
  background: var(--ember-light);
  box-shadow: 0 19px 42px rgba(255, 106, 20, 0.26);
}

.button-quiet {
  border: 1px solid var(--line-strong);
  color: var(--paper);
}

.button-quiet:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.microcopy {
  margin: 16px 0 0;
  color: #767c84;
  font-size: 0.78rem;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: #7f858d;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
}

.location-mark {
  position: relative;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ember-light);
  border-radius: 50%;
}

.location-mark::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--ember-light);
}

.portrait-stage {
  align-self: center;
  min-width: 0;
  padding: 18px 0 0;
}

.portrait-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-rail div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border-right: 1px solid var(--line);
  color: var(--muted-light);
  font-size: 0.76rem;
  font-weight: 650;
}

.trust-rail div:last-child {
  border-right: 0;
}

.trust-rail span {
  color: var(--ember);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.section-intro h2,
.work-heading h2,
.process-head h2,
.about-copy h2,
.faq-heading h2,
.final-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.3rem);
  font-weight: 760;
  text-wrap: balance;
}

.section-intro > p:last-child,
.work-heading > p:last-child,
.faq-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services {
  background: var(--ink-2);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(40px, 7vw, 86px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background: var(--panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.service-feature + .service-feature {
  margin-top: 26px;
}

.service-copy,
.design-preview,
.google-visual {
  min-width: 0;
}

.service-number {
  margin-bottom: 22px;
  color: var(--ember-light);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.85rem);
  font-weight: 740;
  text-wrap: balance;
}

.service-copy > p {
  max-width: 60ch;
  margin-bottom: 30px;
  color: var(--muted-light);
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c1c4c9;
  font-size: 0.88rem;
}

.feature-list li span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--ember);
}

.service-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.service-price small,
.service-price strong {
  display: block;
}

.service-price small {
  color: #7f858d;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-price strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.service-price a,
.text-link {
  color: var(--ember-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-price a:hover,
.text-link:hover {
  color: var(--paper);
}

.design-preview {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #090a0b;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.44);
  transform: rotate(1.25deg);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-feature:hover .design-preview {
  transform: rotate(0deg) translateY(-4px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0 13px;
  background: #111317;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a3e44;
}

.browser-bar > span:first-child {
  background: var(--ember);
}

.browser-bar small {
  margin-left: auto;
  color: #686e76;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.preview-canvas {
  min-height: 475px;
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 106, 20, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 42%),
    #0b0c0e;
}

.preview-canvas > p {
  margin-bottom: 22px;
  color: var(--ember-light);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.preview-canvas h4 {
  max-width: 8.2ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 820;
  line-height: 0.92;
}

.preview-line {
  display: block;
  width: 60px;
  height: 2px;
  margin: 30px 0 22px;
  background: var(--ember);
}

.preview-button {
  display: inline-flex;
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 850;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
}

.preview-metrics div {
  padding: 16px 12px;
  background: rgba(8, 9, 11, 0.8);
}

.preview-metrics small,
.preview-metrics strong {
  display: block;
}

.preview-metrics small {
  color: var(--ember-light);
  font-size: 0.52rem;
}

.preview-metrics strong {
  font-size: 0.82rem;
}

.preview-caption {
  padding: 11px 15px;
  color: #757b83;
  font-size: 0.62rem;
  text-align: right;
}

.google-feature {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  background: #12151a;
}

.google-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0b0d10;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(29deg, transparent 47%, rgba(255, 255, 255, 0.055) 48%, rgba(255, 255, 255, 0.055) 49%, transparent 50%),
    linear-gradient(151deg, transparent 47%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.04) 49%, transparent 50%);
  background-size: 95px 95px;
}

.map-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 48% 45%, rgba(255, 106, 20, 0.16), transparent 35%);
}

.map-pin {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 106, 20, 0.58);
  border-radius: 50% 50% 50% 0;
  background: rgba(255, 106, 20, 0.12);
  transform: rotate(-45deg);
}

.map-pin span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.pin-one { top: 18%; left: 21%; }
.pin-two { top: 32%; right: 18%; }
.pin-three { right: 32%; bottom: 18%; }

.profile-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(82%, 390px);
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  padding: 23px;
  background: rgba(22, 25, 30, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
}

.profile-card > small {
  color: var(--ember-light);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.profile-card > strong {
  display: block;
  margin: 7px 0 20px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-block: 11px;
  color: #9399a1;
  font-size: 0.7rem;
}

.profile-row b {
  color: var(--paper-2);
  font-size: 0.65rem;
}

.price-stack {
  display: grid;
  margin: 5px 0 26px;
  border-top: 1px solid var(--line);
}

.price-stack div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-block: 13px;
  color: #969ca4;
  font-size: 0.77rem;
}

.price-stack strong {
  color: var(--paper);
}

.selected-work {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(450px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.work-heading .eyebrow {
  color: var(--ember-dark);
}

.work-heading h2 {
  margin-bottom: 30px;
}

.work-heading > p:last-child {
  color: #555960;
}

.work-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(8, 9, 11, 0.18);
  border-radius: var(--radius);
  background: #0b0d0f;
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(12, 14, 17, 0.18);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease;
}

.work-card:hover {
  box-shadow: 0 34px 80px rgba(12, 14, 17, 0.27);
  transform: translateY(-4px);
}

.work-proof {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0b;
}

.work-proof img {
  display: block;
  width: 100%;
  height: auto;
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px;
}

.work-meta small {
  color: var(--lime);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.work-meta h3 {
  margin: 4px 0 3px;
  font-size: 1.35rem;
}

.work-meta p {
  margin: 0;
  color: #8d939b;
  font-size: 0.76rem;
}

.work-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--lime);
  font-size: 1.35rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.work-card:hover .work-arrow {
  background: var(--lime);
  color: var(--ink);
}

.process {
  background: var(--ink);
}

.process-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.process-head .eyebrow {
  margin-bottom: 6px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1.6fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-block: 38px;
}

.process-index {
  color: var(--ember);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.process-list li > div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
  align-items: baseline;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.process-list p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.about {
  overflow: hidden;
  background: #101216;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.about-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.about-photo::before,
.about-photo::after {
  position: absolute;
  border: 1px solid var(--line);
  content: "";
}

.about-photo::before {
  inset: 5% 10%;
  border-radius: 50%;
}

.about-photo::after {
  inset: 15% 20%;
  border-radius: 50%;
}

.about-halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--ember);
  filter: blur(100px);
  opacity: 0.11;
}

.about-photo img {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: var(--shadow);
  filter: saturate(0.88) contrast(1.04);
}

.about-tag {
  position: absolute;
  right: 0;
  bottom: 14%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 18, 22, 0.88);
  color: #a6abb2;
  font-size: 0.64rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.about-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
}

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted-light);
}

.about-copy blockquote {
  max-width: 700px;
  margin: 38px 0 0;
  border-left: 2px solid var(--ember);
  padding-left: 24px;
  color: var(--paper);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.faq {
  background: var(--ink-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1.3fr);
  align-items: start;
  gap: clamp(55px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 26px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
  cursor: pointer;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--paper-2);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 64ch;
  margin: -3px 50px 25px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 14vw, 180px);
  background: var(--ember);
  color: #170a03;
}

.final-cta::before {
  position: absolute;
  top: -55%;
  right: -8%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(24, 10, 3, 0.19);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 90px rgba(24, 10, 3, 0.025), inset 0 0 0 180px rgba(24, 10, 3, 0.025);
}

.cta-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(24, 10, 3, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 10, 3, 0.13) 1px, transparent 1px);
  mask-image: none;
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.final-inner .eyebrow {
  color: #5d1c00;
}

.final-inner h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 7.2vw, 7rem);
  font-weight: 840;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.final-inner > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(24, 10, 3, 0.76);
  font-size: 1.08rem;
  font-weight: 560;
}

.button-light {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 40px rgba(24, 10, 3, 0.2);
}

.button-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.final-inner > small {
  display: block;
  margin-top: 18px;
  color: rgba(24, 10, 3, 0.68);
}

.final-inner > small a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--line);
  background: #060708;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.footer-brand img {
  width: 125px;
  height: auto;
  mix-blend-mode: screen;
}

.footer-brand p {
  margin: 8px 0 0;
  color: #737981;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #969ca4;
  font-size: 0.75rem;
  font-weight: 650;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 21px;
  color: #626870;
  font-size: 0.68rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .reveal-delay {
  transition-delay: 100ms;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 32px;
  }

  .service-feature,
  .google-feature {
    grid-template-columns: 1fr;
  }

  .google-visual {
    order: 2;
  }

  .work-layout,
  .about-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    min-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px 0;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.3rem, 12.5vw, 6rem);
  }

  .hero h1 em {
    display: inline;
  }

  .portrait-stage {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .trust-rail {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .trust-rail div:nth-child(2) {
    border-right: 0;
  }

  .trust-rail div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-intro,
  .work-layout,
  .process-head,
  .about-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 24px;
  }

  .section-intro .eyebrow {
    margin-bottom: 0;
  }

  .service-feature {
    padding: 30px;
  }

  .design-preview {
    transform: none;
  }

  .work-layout {
    gap: 50px;
  }

  .process-head {
    gap: 22px;
  }

  .process-list li > div {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .about-photo {
    min-height: 480px;
  }

  .about-copy {
    max-width: 700px;
  }

  .faq-layout {
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header.is-scrolled {
    backdrop-filter: blur(12px);
  }

  .brand img {
    width: 94px;
  }

  .header-cta {
    padding: 9px 10px 9px 13px;
    font-size: 0.69rem;
  }

  .header-cta svg {
    width: 16px;
  }

  .hero-layout {
    gap: 25px;
    padding-top: 55px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 13.4vw, 4.55rem);
    letter-spacing: -0.075em;
    line-height: 0.92;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .location-line {
    align-items: flex-start;
    margin-top: 26px;
    line-height: 1.45;
  }

  .location-mark {
    flex: 0 0 auto;
    margin-top: 3px;
  }

  .portrait-stage {
    padding: 24px 0 0;
  }

  .portrait-frame {
    border-radius: 20px;
  }

  .trust-rail div {
    min-height: 64px;
    gap: 8px;
    font-size: 0.66rem;
  }

  .section {
    padding-block: 88px;
  }

  .section-intro,
  .process-head {
    margin-bottom: 40px;
  }

  .section-intro h2,
  .work-heading h2,
  .process-head h2,
  .about-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .section-intro > p:last-child {
    font-size: 0.96rem;
  }

  .service-feature {
    gap: 38px;
    border-radius: 18px;
    padding: 24px 20px;
  }

  .service-copy h3 {
    font-size: clamp(2rem, 9.5vw, 3.1rem);
  }

  .service-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-canvas {
    min-height: 420px;
    padding: 34px 24px;
  }

  .preview-canvas h4 {
    font-size: 3.2rem;
  }

  .preview-metrics {
    margin-top: 50px;
  }

  .google-visual {
    min-height: 390px;
  }

  .profile-card {
    width: 88%;
    padding: 18px;
  }

  .price-stack div {
    font-size: 0.72rem;
  }

  .work-meta {
    padding: 20px;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding-block: 28px;
  }

  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-list p {
    font-size: 0.9rem;
  }

  .about-layout {
    gap: 55px;
  }

  .about-photo {
    min-height: 390px;
  }

  .about-tag {
    right: 0;
    bottom: 8%;
    font-size: 0.56rem;
  }

  .about-copy blockquote {
    padding-left: 18px;
  }

  .faq-list summary {
    font-size: 0.92rem;
  }

  .final-inner h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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


/* The first service is the main offer. Keep its visual weight slightly stronger. */
.google-feature {
  border-color: rgba(255, 106, 20, 0.24);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.25), 0 0 70px rgba(255, 106, 20, 0.035);
}

.arrow {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 560px) {
  .hero .portrait-stage {
    margin-top: 8px;
  }
}
