@import "tailwindcss";

:root {
  --ink: #1d1c1a;
  --paper: #ffffff;
  --paper-deep: #f4f5f6;
  --orange: #ff5a0a;
  --orange-dark: #d94802;
  --muted: #565451;
  --line: #d9dcdf;
  --green: #315f4d;
  --red: #9f3b30;
  --gold: #8d6715;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hero,
.story,
.intake-section {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.section-kicker {
  margin: 0 0 18px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  background: var(--orange);
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #ff6a22;
  transform: translateY(-1px);
}

.button:focus-visible,
.main-site-link:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.text-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.section-nav {
  display: grid;
  position: fixed;
  z-index: 50;
  top: 50%;
  right: 20px;
  gap: 6px;
  transform: translateY(-50%);
}

.section-nav a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 0.58rem;
  font-weight: 800;
  transition: background 150ms ease, transform 150ms ease;
}

.section-nav a:hover {
  background: #171716;
  transform: scale(1.12);
}

.section-nav a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #10100f;
}

.hero-art {
  width: 100%;
  height: auto;
}

.main-site-link {
  display: inline-flex;
  align-items: center;
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 5.4%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(12, 12, 11, 0.82);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: clamp(0.66rem, 0.82vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease;
}

.main-site-link:hover {
  border-color: var(--orange);
  background: rgba(12, 12, 11, 0.96);
}

.hero-cta {
  position: absolute;
  left: 5.4%;
  bottom: 5.7%;
  min-height: clamp(36px, 3.2vw, 54px);
  padding: 0 clamp(16px, 1.8vw, 28px);
  font-size: clamp(0.5rem, 0.75vw, 0.82rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-brand img {
  object-fit: contain;
}

.recognition {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  gap: 20px;
  text-align: center;
  color: #5d5852;
  font-size: 0.82rem;
}

.recognition p {
  margin: 0;
}

.story {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(110px, 14vw, 190px) 0 0;
}

.story h2,
.intake-heading-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.1rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.story-centered {
  text-align: center;
}

.lead-copy,
.section-intro,
.sample-copy > p,
.intake-heading-copy > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
  line-height: 1.7;
}

.lead-copy {
  max-width: 940px;
  margin: 34px auto 0;
}

.section-intro {
  max-width: 800px;
  margin: 28px 0 0;
}

.three-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 6vw, 80px);
  margin-top: 82px;
  text-align: left;
}

.three-promises span,
.numbered-list > article > span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.three-promises h3 {
  margin: 18px 0 14px;
  font-size: 1.65rem;
  line-height: 1.18;
}

.three-promises p,
.numbered-list p,
.artifact-card p,
.process-list p,
.fit-columns li,
.pricing-line p,
.guarantee p,
.credit-note {
  color: var(--muted);
  line-height: 1.65;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 66px;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.question-list span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.question-list p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.68rem);
  line-height: 1.32;
}

.centered-cta {
  margin-top: 54px;
  text-align: center;
}

.numbered-list {
  margin-top: 70px;
}

.numbered-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
}

.numbered-list article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  padding: 31px 0;
  border-top: 1px solid var(--line);
}

.numbered-list h3 {
  margin: 2px 0 9px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.numbered-list p {
  margin: 0;
}

.rating-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rating-line div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px;
  background: #f6f7f8;
  text-align: center;
}

.rating-line div:first-child {
  background: #e4ece7;
  color: var(--green);
}

.rating-line div:nth-child(2) {
  background: #fbf0d4;
  color: var(--gold);
}

.rating-line div:last-child {
  background: #f5ddd6;
  color: var(--red);
}

.rating-line strong {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.75rem;
}

.rating-line span {
  color: #6d6760;
  font-size: 0.82rem;
  line-height: 1.45;
}

.deliverable-story {
  width: min(1180px, calc(100% - 40px));
}

.deliverable-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px);
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 90, 10, 0.13), transparent 30%),
    linear-gradient(135deg, #faf5ec 0%, #efe3d3 100%);
  border: 1px solid #dfd1bf;
  color: var(--ink);
}

.deliverable-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.deliverable-heading > p:last-child {
  max-width: 690px;
  margin: 26px 0 0;
  color: #5f574f;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.artifact-case {
  position: relative;
  z-index: 1;
  margin-top: 62px;
  padding: 0 32px;
  border: 1px solid #d0c7bb;
  background: #f7f7f7;
  color: var(--ink);
  box-shadow: 0 30px 75px rgba(74, 55, 34, 0.2);
  transform: rotate(-0.35deg);
}

.artifact-case::before,
.artifact-case::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10px -9px -10px 9px;
  border: 1px solid #bfb5a9;
  background: #ededed;
}

.artifact-case::after {
  inset: 19px -17px -19px 17px;
  z-index: -2;
  background: #dedede;
}

.artifact-case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 29px 0;
  border-bottom: 1px solid #cfc5b9;
}

.artifact-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.artifact-brand div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.artifact-brand span,
.artifact-manifest span {
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.63rem;
  font-weight: 800;
}

.artifact-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.artifact-manifest {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.artifact-manifest strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 32px 0;
}

.artifact-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 190px;
  padding: 27px;
  border: 1px solid #d6cec3;
  background: #fff;
  box-shadow: 0 10px 24px rgba(49, 42, 34, 0.07);
}

.artifact-card-1,
.artifact-card-6 {
  grid-column: 1 / -1;
  min-height: auto;
}

.artifact-card-1 {
  border-left: 4px solid var(--green);
  background: #e8efea;
}

.artifact-card-6 {
  border-color: #dfb69f;
  background: #f3e4da;
  color: #1d1b19;
}

.artifact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #ecb08f;
  background: #fff3eb;
  color: var(--orange-dark);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.artifact-card-1 .artifact-icon {
  border-color: #9eb9a9;
  background: #fff;
  color: var(--green);
}

.artifact-card-6 .artifact-icon {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.artifact-card h3 {
  margin: 3px 0 9px;
  font-size: clamp(1.18rem, 1.7vw, 1.52rem);
  line-height: 1.18;
}

.artifact-card p {
  margin: 0;
  font-size: 0.9rem;
}

.artifact-card-6 p {
  color: #5f554e;
}

.artifact-case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 25px 0 30px;
  border-top: 1px solid #cfc5b9;
}

.artifact-case-footer p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #625c55;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.artifact-case-footer i {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.artifact-seal {
  padding: 8px 13px;
  border: 2px solid var(--orange-dark);
  color: var(--orange-dark);
  transform: rotate(-4deg);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 900;
}

.sample-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: center;
}

.sample-copy > p {
  margin: 28px 0 0;
}

.text-link {
  display: inline-block;
  margin-top: 27px;
  padding-bottom: 5px;
  color: var(--orange-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}

.sample-stack {
  position: relative;
  min-height: 780px;
}

.sample-page {
  position: absolute;
  width: min(455px, 82%);
  border: 1px solid #d9d1c7;
  box-shadow: 0 26px 55px rgba(53, 44, 35, 0.16);
}

.sample-page-one {
  top: 0;
  left: 4%;
  transform: rotate(-4deg);
}

.sample-page-two {
  top: 74px;
  right: 0;
  transform: rotate(4deg);
}

.sample-page-three {
  top: 230px;
  left: 16%;
  transform: rotate(-1deg);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 42px;
  margin: 74px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--orange);
}

.process-list li {
  position: relative;
  text-align: center;
}

.process-list li > span {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.process-list h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.process-list p {
  margin: 0;
  font-size: 0.92rem;
}

.reliability-copy {
  max-width: 880px;
  margin: 62px auto 0;
  padding: 28px 32px;
  border-left: 3px solid var(--orange);
  background: #f6f7f8;
}

.reliability-copy p {
  margin: 0;
  line-height: 1.7;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(56px, 10vw, 120px);
  margin-top: 67px;
}

.fit-columns h3 {
  margin: 0 0 28px;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  font-weight: 400;
}

.fit-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-columns li {
  position: relative;
  padding: 0 0 17px 25px;
}

.fit-columns li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

.pricing-story {
  text-align: center;
}

.pricing-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 90px;
  margin-top: 70px;
}

.pricing-line > div {
  padding-top: 28px;
  border-top: 2px solid var(--orange);
}

.price {
  margin: 0;
  color: var(--orange-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
}

.pricing-line h3 {
  margin: 18px 0 8px;
  font-size: 1.45rem;
}

.pricing-line p:last-child {
  margin: 0;
}

.guarantee {
  max-width: 880px;
  margin: 65px auto 0;
  padding: 30px 36px;
  border: 1px solid var(--orange);
  background: #fff6f1;
}

.guarantee p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.credit-note {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 0.85rem;
}

.faq-list {
  max-width: 900px;
  margin: 62px auto 0;
  border-bottom: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 770px;
  margin: -4px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.team-story {
  width: min(1180px, calc(100% - 40px));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 68px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 46px rgba(53, 44, 35, 0.1);
}

.team-photo-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d8d5d0;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-jason {
  object-position: center 42%;
}

.team-photo-emiliano {
  object-position: center center;
}

.team-photo-ray {
  object-position: center 38%;
}

.team-copy {
  padding: 30px 28px 34px;
}

.team-copy > p:first-child {
  margin: 0 0 9px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.65rem;
  font-weight: 800;
}

.team-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.13;
}

.team-rule {
  width: 34px;
  height: 2px;
  margin: 22px 0;
  background: var(--orange);
}

.team-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.intake-section {
  margin-top: clamp(120px, 16vw, 210px);
  padding: clamp(90px, 11vw, 145px) 0;
  background: var(--paper-deep);
}

.intake-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1.16fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.intake-heading-copy > p {
  margin: 30px 0 0;
}

.intake-form {
  min-height: 610px;
  padding: clamp(32px, 5vw, 54px);
  background: #fff;
  box-shadow: 0 25px 65px rgba(53, 44, 35, 0.1);
}

.intake-form-title {
  margin: 0 0 26px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
}

.form-progress {
  display: flex;
  align-items: center;
  width: 170px;
  margin-bottom: 36px;
}

.form-progress span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #bbb4aa;
  color: #8d867d;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-progress span.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.form-progress i {
  flex: 1;
  height: 1px;
  background: #ccc5bc;
}

.form-step {
  margin: 0 0 28px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
}

.intake-form label {
  display: block;
  margin-bottom: 22px;
  color: #3d3935;
  font-size: 0.82rem;
  font-weight: 700;
}

.intake-form label > span {
  color: #999087;
  font-size: 0.72rem;
  font-weight: 400;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 13px 14px;
  border: 1px solid #cfc7bc;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}

.intake-form input,
.intake-form select {
  min-height: 50px;
}

.intake-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.form-button {
  width: 100%;
  margin-top: 5px;
}

.form-reassurance {
  margin: 14px 0 0;
  color: #8b837a;
  font-size: 0.75rem;
  line-height: 1.55;
  text-align: center;
}

.form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.text-button {
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: #625c55;
  cursor: pointer;
  text-decoration: underline;
}

.form-error {
  margin: 0 0 18px;
  padding: 12px 14px;
  background: #f8e3df;
  color: #8c3026;
  font-size: 0.82rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

[hidden] {
  display: none !important;
}

.analysis-popup-backdrop {
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 24px;
  background: rgba(15, 15, 14, 0.68);
  backdrop-filter: blur(6px);
}

.analysis-popup {
  position: relative;
  width: min(520px, 100%);
  padding: 42px 38px 36px;
  border: 1px solid #e3d5c8;
  border-top: 5px solid var(--orange);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.analysis-popup-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: #e8efea;
  color: var(--green);
  border: 1px solid #a8bdaf;
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 700;
}

.analysis-popup .form-step {
  margin-bottom: 12px;
}

.analysis-popup h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 400;
}

.analysis-popup > p:not(.form-step) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.analysis-popup .form-reassurance {
  margin-top: 18px !important;
  font-size: 0.74rem;
}

.analysis-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #655f58;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.analysis-popup-close:hover {
  background: #f3ede7;
  color: #171716;
}

.analysis-popup-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

footer {
  padding: 46px 20px 30px;
  background: #0f0f0f;
  color: #d3cec7;
}

.footer-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 82px);
  align-items: center;
}

.footer-brand-block {
  align-self: start;
}

.footer-brand {
  font-size: 1.15rem;
}

.footer-positioning {
  margin: 18px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.footer-tagline {
  margin: 11px 0 0;
  color: #9f9991;
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  color: #eee9e2;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.45;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid #302f2d;
  border-radius: 10px;
  background: #171716;
  color: inherit;
  text-decoration: none;
}

a.footer-contact-item:hover {
  border-color: var(--orange);
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #282623;
  font-size: 1rem;
}

.footer-contact-item small,
.footer-contact-item strong {
  display: block;
}

.footer-contact-item small {
  margin-bottom: 3px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.58rem;
  font-weight: 800;
}

.footer-contact-item strong {
  color: #f1ede8;
  font-size: 0.77rem;
  font-weight: 600;
}

.footer-legal {
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid #343331;
  border-bottom: 1px solid #343331;
}

.footer-legal p {
  margin: 0;
  color: #8f8a83;
  font-size: 0.69rem;
  line-height: 1.6;
}

.footer-legal strong {
  color: #c9c4bd;
}

.footer-small {
  margin: 18px 0 0;
  color: #88827b;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1160px) {
  .section-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .sample-story,
  .intake-shell {
    grid-template-columns: 1fr;
  }

  .sample-copy {
    max-width: 650px;
  }

  .sample-stack {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list::before {
    display: none;
  }

  .intake-heading-copy {
    max-width: 700px;
  }

  .intake-form {
    width: min(700px, 100%);
  }

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

  .team-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  }

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

@media (max-width: 700px) {
  .recognition,
  .three-promises,
  .question-list,
  .numbered-list,
  .rating-line,
  .fit-columns,
  .pricing-line {
    grid-template-columns: 1fr;
  }

  .recognition {
    gap: 13px;
  }

  .story {
    padding-top: 110px;
  }

  .three-promises {
    gap: 44px;
  }

  .question-list,
  .numbered-list {
    margin-top: 48px;
  }

  .question-list {
    gap: 0;
  }

  .numbered-list {
    gap: 0;
  }

  .rating-line {
    gap: 1px;
  }

  .artifact-case {
    margin-top: 48px;
  }

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

  .hero-cta {
    position: static;
    width: 100%;
    min-height: 54px;
    border-radius: 0;
    font-size: 0.78rem;
  }

  .main-site-link {
    top: 12px;
    left: 14px;
    padding: 8px 11px;
    font-size: 0.62rem;
  }

  .artifact-card-1,
  .artifact-card-6 {
    grid-column: auto;
  }

  .artifact-case-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .artifact-case-footer p {
    align-items: flex-start;
    flex-direction: column;
  }

  .artifact-case-footer i {
    display: none;
  }

  .sample-stack {
    min-height: 680px;
  }

  .process-list {
    gap: 54px 26px;
  }

  .fit-columns {
    gap: 55px;
  }

  .pricing-line {
    gap: 55px;
  }

  .team-card {
    display: block;
  }
}

@media (max-width: 520px) {
  .story,
  .intake-shell {
    width: min(100% - 28px, 1180px);
  }

  .button {
    width: 100%;
  }

  .question-list li,
  .numbered-list article {
    grid-template-columns: 46px 1fr;
    gap: 10px;
  }

  .deliverable-story {
    width: min(100% - 18px, 1180px);
  }

  .deliverable-stage {
    padding: 44px 18px;
  }

  .artifact-case {
    padding: 0 18px;
  }

  .artifact-case-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .artifact-manifest {
    align-items: flex-start;
  }

  .artifact-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .artifact-icon {
    width: 42px;
    height: 42px;
  }

  .team-story {
    width: min(100% - 28px, 1180px);
  }

  .team-copy {
    padding: 26px 22px 30px;
  }

  .sample-stack {
    min-height: 550px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .reliability-copy,
  .guarantee,
  .intake-form {
    padding: 26px 22px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .analysis-popup {
    padding: 38px 24px 30px;
  }

  .form-actions .text-button {
    order: 2;
  }
}

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

  .button {
    transition: none;
  }
}
