:root {
  --white: #ffffff;
  --ink: #171b18;
  --charcoal: #262b28;
  --muted: #6d746f;
  --line: #e1ded7;
  --stone: #f4f1eb;
  --greige: #d9d1c4;
  --sage: #314d42;
  --sage-light: #e7eee9;
  --brass: #b59669;
  --shadow: 0 28px 80px rgba(23, 27, 24, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px max(28px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(225, 222, 215, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 16px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 205px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 17px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.main-nav {
  justify-content: center;
  gap: 34px;
  color: #4f5752;
  font-size: 13px;
  font-weight: 650;
}

.main-nav a:hover,
.phone-link:hover {
  color: var(--sage);
}

.header-actions {
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  font-weight: 720;
}

.phone-link {
  color: var(--muted);
}

.quote-link {
  min-height: 40px;
  padding: 11px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 126px max(64px, calc((100vw - 1160px) / 2)) 34px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 16, 14, 0.82) 0%, rgba(13, 16, 14, 0.58) 36%, rgba(13, 16, 14, 0.22) 66%, rgba(13, 16, 14, 0.04) 100%),
    linear-gradient(180deg, rgba(13, 16, 14, 0.06) 0%, rgba(13, 16, 14, 0.48) 100%);
}

.hero-content,
.hero-rail {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 660px;
  padding: 0 0 74px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(48px, 4.8vw, 72px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  margin: 22px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17.5px;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(960px, 100%);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-rail div {
  min-height: 134px;
  padding: 22px 24px;
  background: rgba(12, 15, 13, 0.42);
  backdrop-filter: blur(16px);
}

.hero-rail span {
  display: block;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 12.5px;
  font-weight: 850;
}

.hero-rail strong {
  display: block;
  color: #fff;
  font-size: 17.5px;
  line-height: 1.25;
}

.hero-rail p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.5px;
  line-height: 1.52;
}

.intro-band {
  padding: 56px max(28px, calc((100vw - 980px) / 2));
  background: var(--stone);
  text-align: center;
}

.intro-band p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 820;
  line-height: 0.98;
  text-wrap: balance;
}


.fit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100vw - 56px));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(23, 27, 24, 0.1);
}

.fit-strip article {
  min-height: 148px;
  padding: 28px 28px 30px;
  background: #fff;
}

.fit-strip strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.feature-field legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.fit-strip span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.feature-field {
  margin: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-field legend {
  padding: 0 6px;
}

.feature-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.feature-options label {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #4a514c;
  font-size: 12px;
  font-weight: 760;
}

.feature-options input {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  accent-color: var(--sage);
}
.section {
  width: var(--container);
  margin: 0 auto;
  padding: 105px 0;
}

.section-title {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 46px;
}

.section-title span,
.ai-copy span,
.result-copy span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2,
.ai-copy h2,
.result-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.centered-title {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-title span {
  display: block;
  margin-bottom: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

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

.work-card.large-card {
  grid-row: span 2;
  min-height: 660px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.work-card:hover img {
  transform: scale(1.025);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56));
}

.work-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.work-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

.work-card p {
  margin: 12px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.58;
}

.ai-section {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
  padding: 108px max(28px, calc((100vw - 1180px) / 2));
  background: var(--charcoal);
  color: #fff;
}

.ai-copy {
  position: sticky;
  top: 112px;
}

.ai-copy h2 {
  margin-top: 18px;
  color: #fff;
}

.ai-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.prompt-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.prompt-list p {
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

.prompt-list strong {
  color: #fff;
}

.intake-card {
  padding: 28px;
  background: #fbfaf7;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.intake-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.intake-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.intake-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.credits {
  display: flex;
  gap: 7px;
  padding-top: 4px;
}

.credit {
  width: 24px;
  height: 10px;
  background: #d8d2c7;
  border-radius: 999px;
}

.credit.active {
  background: var(--sage);
}

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

.identity-grid,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.identity-grid,
.mode-toggle,
.mode-area,
.detail-grid,
.submit-button {
  margin-top: 20px;
}

.full-field {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: #3f4641;
  font-size: 12px;
  font-weight: 790;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  font-size: 14px;
}

textarea {
  resize: vertical;
  line-height: 1.56;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(49, 77, 66, 0.1);
}

.mode-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mode-button {
  min-height: 46px;
  background: transparent;
  color: var(--muted);
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
}

.mode-button + .mode-button {
  border-left: 1px solid var(--line);
}

.mode-button.active {
  background: var(--ink);
  color: #fff;
}

.mode-area {
  display: none;
}

.mode-area.active {
  display: block;
}

.upload-zone {
  min-height: 138px;
  place-items: center;
  padding: 28px;
  background: #fff;
  border: 1px dashed rgba(49, 77, 66, 0.42);
  border-radius: var(--radius);
  text-align: center;
}

.upload-zone input {
  display: none;
}

.upload-zone strong {
  color: var(--sage);
  font-size: 14px;
}

.upload-zone span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 640;
}

.submit-button {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.52;
}

[hidden] {
  display: none !important;
}

.contact-grid {
  margin-top: 22px;
}

.contact-submit {
  width: 100%;
  margin-top: 20px;
}

.contact-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.52;
}

.contact-note.is-success {
  color: var(--sage);
  font-weight: 780;
}

.contact-note.is-error {
  color: #9b332d;
  font-weight: 760;
}

.intake-short-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: #eef2ed;
  color: #314d42;
  border: 1px solid rgba(49, 77, 66, 0.14);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}
.intake-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 4px 12px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
}

.progress-step span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #fff;
  background: #a7aaa6;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.progress-step strong {
  font-size: 14px;
  font-weight: 830;
}

.progress-step.active,
.progress-step.complete {
  color: var(--ink);
  border-bottom-color: var(--sage);
}

.progress-step.active span,
.progress-step.complete span {
  background: var(--sage);
}

.progress-step.locked {
  opacity: 0.62;
}

.registration-step {
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.step-heading span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
}

.step-heading h4 {
  margin: 7px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.step-heading p {
  margin: 8px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.register-button {
  width: 100%;
  margin-top: 20px;
}

.registration-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.registration-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 0;
}

.registration-summary[hidden] {
  display: none;
}

.registration-summary div {
  display: grid;
  gap: 4px;
}

.registration-summary strong {
  color: var(--sage);
  font-size: 15px;
}

.registration-summary span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.text-button {
  flex: 0 0 auto;
  padding: 8px 0;
  color: var(--sage);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
}

.text-button:hover,
.text-button:focus-visible {
  text-decoration: underline;
}

.registration-step.is-complete .step-heading,
.registration-step.is-complete .identity-grid,
.registration-step.is-complete .consent-stack,
.registration-step.is-complete .register-button,
.registration-step.is-complete .registration-note {
  display: none;
}

.preview-step {
  min-width: 0;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.preview-step legend {
  width: 100%;
  padding: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 840;
  line-height: 1.25;
}

.preview-lock-message {
  margin: 10px 0 0;
  padding: 12px 14px;
  color: #5f665f;
  background: #eeeae3;
  border-left: 3px solid #a7aaa6;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.5;
}

.preview-step:not([disabled]) .preview-lock-message {
  display: none;
}

.preview-step[disabled] > :not(legend):not(.preview-lock-message) {
  display: none;
}

.optional-note-field {
  margin-top: 20px;
}

.optional-details {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.optional-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--sage);
  cursor: pointer;
  font-size: 13px;
  font-weight: 860;
  list-style: none;
}

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

.optional-details summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--stone);
  border-radius: 50%;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.optional-details[open] summary::after {
  content: "-";
}

.optional-details-body {
  display: grid;
  gap: 16px;
  padding: 0 16px 16px;
}

.result-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(700px, 1.3fr);
  gap: 34px;
  align-items: start;
  scroll-margin-top: 118px;
  padding: 78px max(28px, calc((100vw - 1280px) / 2));
  background: var(--stone);
}

.result-copy h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.3vw, 50px);
}

.result-copy p {
  margin: 18px 0 0;
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.material-panel {
  padding: clamp(18px, 2.6vw, 26px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.design-preview {
  overflow: hidden;
  background: #f4f1eb;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.design-board-svg {
  display: block;
  width: 100%;
  height: auto;
}

.primary-upload-zone {
  margin-top: 20px;
  cursor: pointer;
}

.local-preview-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.4vw, 28px);
  background: #f7f4ee;
}

.guide-step {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.guide-step span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.guide-step strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.guide-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.local-preview-output {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  padding: 16px;
  background: #f7f4ee;
}

.preview-reference-column,
.generated-preview-column {
  min-width: 0;
}

.uploaded-reference {
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.uploaded-reference img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eee8dd;
}

.uploaded-reference figcaption,
.uploaded-reference.no-upload,
.uploaded-reference.file-reference {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.uploaded-reference span,
.local-only-note strong {
  color: var(--brass);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uploaded-reference strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.uploaded-reference p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.generated-board {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.local-only-note {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 14px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.local-only-note span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.fit-checks {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.fit-checks li {
  position: relative;
  padding: 11px 12px 11px 34px;
  color: #3d4540;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13.5px;
  line-height: 1.45;
}

.fit-checks li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.result-section.contact-only-result {
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1fr);
}

.contact-only-result .design-preview {
  background: #fff;
}

.contact-confirmation {
  display: grid;
  gap: 18px;
  min-height: 320px;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
}

.confirmation-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-confirmation h3 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 0.98;
}

.contact-confirmation p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.material-panel h3 {
  margin: 24px 0 0;
  font-size: clamp(24px, 2.4vw, 32px);
}

.material-panel ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.material-panel li {
  padding: 14px 0;
  color: #3d4540;
  border-top: 1px solid var(--line);
  font-size: 16.5px;
  line-height: 1.55;
}

.manager-note {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.estimate-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.estimate-strip div {
  min-width: 0;
  padding: 14px 15px;
  background: #f7f5ef;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.estimate-strip span {
  display: block;
  color: var(--brass);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.estimate-strip strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.result-action-card {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 10px;
}

.result-action-card strong,
.result-action-card span {
  display: block;
}

.result-action-card strong {
  color: var(--sage);
  font-size: 18px;
  line-height: 1.25;
}

.result-action-card span {
  margin-top: 5px;
  color: #4c6057;
  font-size: 15.5px;
  line-height: 1.45;
}

.result-cta-primary {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 880;
  text-decoration: none;
}

.finish-details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.finish-details summary {
  cursor: pointer;
  padding: 15px 16px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 860;
}

.finish-details ul {
  margin: 0;
  padding: 0 16px 12px;
}

.finish-details li {
  padding: 12px 0;
}

.material-section {
  width: 100%;
  padding-right: max(28px, calc((100vw - 1180px) / 2));
  padding-left: max(28px, calc((100vw - 1180px) / 2));
}

.supplier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.supplier-grid article {
  min-height: 285px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.supplier-grid small {
  display: block;
  margin-bottom: 38px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

.supplier-grid p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.supplier-grid a {
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
}


.material-panel li strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 860;
}

.material-panel li span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.concept-grid article {
  min-height: 238px;
}

.case-section {
  width: 100%;
  padding: 112px max(28px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f4ec 0%, #ffffff 46%, #f4f0e8 100%);
}

.case-title {
  display: block;
  max-width: 760px;
  margin-bottom: 42px;
}

.case-title span {
  display: block;
  margin-bottom: 14px;
}

.case-title p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.case-showcase {
  display: grid;
  gap: 28px;
  margin-top: 50px;
}

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(23, 27, 24, 0.08);
}

.case-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.case-video-media {
  min-height: 390px;
  background: var(--ink);
}

.case-video-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  background: var(--ink);
}

.case-video-card .case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.case-video-card .case-body h3 {
  font-size: clamp(28px, 3vw, 42px);
}
.case-feature {
  display: grid;
  grid-template-columns: minmax(340px, 560px) minmax(320px, 1fr);
  align-items: stretch;
  max-width: 1120px;
  margin-inline: auto;
}

.ba-slider {
  --split: 50%;
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: auto;
  overflow: hidden;
  background: #d8d1c4;
  touch-action: pan-y;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.ba-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 8px 11px;
  background: rgba(23, 27, 24, 0.9);
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ba-label-before {
  left: 18px;
}

.ba-label-after {
  right: 18px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(23, 27, 24, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(23, 27, 24, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(23, 27, 24, 0.2);
  transform: translate(-50%, -50%);
}

.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.ba-handle span::before {
  left: 19px;
  transform: translateY(-50%) rotate(-45deg);
}

.ba-handle span::after {
  right: 19px;
  transform: translateY(-50%) rotate(135deg);
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
}

.case-collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.case-pair figure {
  position: relative;
  height: clamp(340px, 29vw, 450px);
  margin: 0;
  overflow: hidden;
  background: #d8d1c4;
}

.case-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-before,
.case-after {
  object-position: center center;
}

.case-pair span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  background: rgba(23, 27, 24, 0.86);
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-body {
  padding: 26px;
}

.case-feature .case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 40px;
}

.case-body small {
  display: block;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.case-collection .case-body h3 {
  font-size: clamp(23px, 2vw, 30px);
}

.case-body p {
  margin: 15px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.process-section {
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 270px;
  padding: 26px;
  background: #fff;
}

.timeline span {
  display: block;
  margin-bottom: 80px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 860;
}

.timeline h3 {
  margin: 0;
  font-size: 21px;
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto 86px;
  width: var(--container);
  padding: 58px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 790px;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
}

.final-cta .button {
  min-width: 190px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 25px max(28px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--sage);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .case-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .case-feature,
  .case-video-card {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .case-feature .case-body,
  .case-video-card .case-body {
    padding: 30px;
  }
}
@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    padding: 14px;
  }

  .brand-logo {
    width: 174px;
  }

  .phone-link {
    display: none;
  }

  .quote-link {
    min-height: 36px;
    padding: 9px 12px;
  }

  .hero {
    min-height: 760px;
    padding: 106px 18px 24px;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 16, 14, 0.82) 0%, rgba(13, 16, 14, 0.58) 55%, rgba(13, 16, 14, 0.18) 100%),
      linear-gradient(180deg, rgba(13, 16, 14, 0.08) 0%, rgba(13, 16, 14, 0.64) 100%);
  }

  .hero-content {
    max-width: 100%;
    padding: 0 0 22px;
    border-left: 0;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(42px, 12vw, 56px);
    line-height: 1.02;
  }

  .hero p {
    max-width: 94%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-rail {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-rail div {
    min-height: 0;
    padding: 14px 15px;
  }

  .hero-rail span {
    margin-bottom: 8px;
  }

  .hero-rail p {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.05;
  }

  .feature-options {
    grid-template-columns: 1fr;
  }

  .feature-options label {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }
  .intro-band {
    padding: 48px 18px;
  }

  .intro-band p {
    font-size: clamp(25px, 8vw, 34px);
  }

  .fit-strip,
  .work-grid,
  .ai-section,
  .result-section,
  .supplier-grid,
  .timeline,
  .service-content {
    grid-template-columns: 1fr;
  }

  .fit-strip {
    width: var(--container);
    margin-top: 0;
  }

  .work-card.large-card {
    min-height: 440px;
  }

  .ai-section {
    gap: 32px;
    padding: 76px 14px;
  }

  .ai-copy {
    position: static;
  }

  .ai-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .prompt-list {
    gap: 6px;
    margin-top: 24px;
  }

  .intake-card {
    padding: 20px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  }

  .intake-head {
    display: grid;
    gap: 12px;
  }

  .credits {
    padding-top: 0;
  }

  .identity-grid,
  .detail-grid,
  .mode-toggle {
    grid-template-columns: 1fr;
  }

  .mode-button + .mode-button {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .result-section {
    padding: 72px 14px;
  }

  .result-section.contact-only-result {
    grid-template-columns: minmax(0, 1fr);
  }

  .result-section > * {
    min-width: 0;
  }

  .local-preview-guide,
  .local-preview-output {
    grid-template-columns: 1fr;
  }

  .guide-step {
    min-height: 0;
  }

  .estimate-strip {
    grid-template-columns: 1fr;
  }

  .result-action-card {
    display: grid;
    align-items: stretch;
  }

  .result-cta-primary {
    width: 100%;
  }

  .final-cta {
    width: var(--container);
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 58px;
    padding: 28px;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(30px, 10vw, 42px);
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 14px;
  }
}
.material-panel li a {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .confirmation-steps {
    grid-template-columns: 1fr;
  }
}
.consent-stack {
  display: grid;
  gap: 10px;
  margin: 16px 0 2px;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  accent-color: var(--sage);
}

.consent-field a {
  color: var(--sage);
  font-weight: 780;
}

.optional-consent {
  color: #858b85;
}
.policy-page,
.service-content {
  width: min(940px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 130px 0 80px;
}

.policy-page section,
.service-content article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.policy-page h1,
.service-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.policy-page h2,
.service-content h2 {
  margin: 30px 0 8px;
  font-size: 24px;
}

.policy-page p,
.service-content p,
.service-hero p {
  color: var(--muted);
  line-height: 1.68;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 36px;
  align-items: center;
  min-height: 78vh;
  padding: 120px 36px 52px;
  background: #f6f4ef;
}

.service-hero img {
  width: 100%;
  height: min(64vh, 620px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(23, 27, 24, 0.16);
}

.service-hero .button {
  margin-top: 18px;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 42px;
}

.service-content h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .service-hero,
  .service-content {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 96px 18px 42px;
  }
}
.scope-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}

.scope-link:hover {
  color: var(--brass);
}




.partner-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 44px;
  align-items: center;
  width: var(--container);
  margin: 84px auto 0;
  padding: 46px;
  background: #fff;
  border: 1px solid var(--line);
}

.partner-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-copy h2 {
  max-width: 470px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 0.98;
}

.partner-copy p {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.partner-logo-grid article {
  display: grid;
  min-height: 154px;
  place-items: center;
  gap: 12px;
  padding: 22px;
  background: var(--stone);
  border: 1px solid var(--line);
}

.partner-logo-grid img {
  display: block;
  width: 100%;
  max-width: 152px;
  height: 86px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.partner-logo-grid strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

/* partner-responsive-overrides */
@media (max-width: 1040px) {
  .case-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .case-feature,
  .case-video-card {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .case-feature .case-body,
  .case-video-card .case-body {
    padding: 30px;
  }
}
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section .ai-copy {
    position: static;
  }

  .partner-strip {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px;
  }

  .partner-copy h2,
  .partner-copy p {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .partner-strip {
    width: min(100vw - 28px, 1180px);
    margin-top: 42px;
    gap: 24px;
    padding: 24px 18px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-logo-grid article {
    min-height: 112px;
    gap: 8px;
    padding: 12px 10px;
  }

  .partner-logo-grid img {
    max-width: min(112px, 31vw);
    height: 54px;
  }

  .partner-logo-grid strong {
    font-size: 13.5px;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

@media (max-width: 460px) {
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.restaurant-proof {
  padding-top: 84px;
}

.restaurant-showcase {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.restaurant-showcase figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.restaurant-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-feature img {
  height: min(68vw, 760px);
  min-height: 560px;
}

.restaurant-showcase figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.restaurant-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.restaurant-photo-grid img {
  height: clamp(340px, 32vw, 480px);
}

.commercial-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.commercial-photo-grid figure {
  background: #fff;
}

.commercial-photo-grid img {
  height: clamp(360px, 34vw, 560px);
  image-rendering: auto;
}

.commercial-photo-grid figcaption {
  min-height: 58px;
  font-size: 13.5px;
}

@media (max-width: 980px) {
  .commercial-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* restaurant-responsive-overrides */
@media (max-width: 720px) {
  .restaurant-proof {
    padding-top: 56px;
  }

  .restaurant-feature img {
    height: 430px;
    min-height: 0;
  }

  .restaurant-photo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .restaurant-photo-grid img {
    height: 360px;
  }

  .commercial-photo-grid img {
    height: 390px;
  }
}

@media (max-width: 430px) {
  .restaurant-feature img,
  .restaurant-photo-grid img {
    height: 300px;
  }

  .commercial-photo-grid img {
    height: 340px;
  }
}

/* real-case-responsive-overrides */
@media (max-width: 1040px) {
  .case-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .case-feature,
  .case-video-card {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .case-feature .case-body,
  .case-video-card .case-body {
    padding: 30px;
  }
}
@media (max-width: 720px) {
  .case-section {
    padding: 72px 14px;
  }

  .case-title {
    margin-bottom: 0;
  }

  .case-title p {
    font-size: 15px;
  }

  .case-showcase {
    gap: 18px;
    margin-top: 30px;
  }

  .case-video-media,
  .case-video-media video {
    min-height: 260px;
  }

  .ba-slider {
    aspect-ratio: 4 / 5;
    min-height: 0;
    height: auto;
  }

  .ba-handle span {
    width: 48px;
    height: 48px;
  }

  .ba-handle span::before {
    left: 15px;
  }

  .ba-handle span::after {
    right: 15px;
  }

  .case-collection {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-pair figure {
    height: 300px;
  }

  .case-body,
  .case-feature .case-body {
    padding: 22px;
  }

  .case-body h3,
  .case-collection .case-body h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .case-body p {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .case-pair {
    grid-template-columns: 1fr;
  }

  .case-pair figure {
    height: 280px;
  }
}
/* readability-pass-20260721 */
body {
  font-size: 17px;
}

.site-header {
  padding-top: 24px;
  padding-bottom: 24px;
}

.brand-logo {
  width: 218px;
}

.main-nav,
.header-actions {
  font-size: 15px;
  font-weight: 760;
}

.main-nav {
  gap: 38px;
}

.phone-link {
  color: #505850;
}

.quote-link {
  min-height: 46px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 820;
}

.button {
  min-height: 52px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 15.5px;
}

.hero p,
.service-hero p {
  font-size: 17.5px;
}

.hero-rail strong,
.fit-strip strong {
  font-size: 18px;
}

.hero-rail p,
.fit-strip span,
.work-card p,
.case-body p,
.timeline p,
.material-panel li,
.material-panel p,
.supplier-grid p,
.partner-copy p,
.service-content p,
.final-cta p {
  font-size: 16px;
  line-height: 1.62;
}

.section-title span,
.ai-copy span,
.result-copy span,
.partner-copy span,
.supplier-grid small,
.case-body small,
.timeline span {
  font-size: 13px;
}

.section-title p,
.case-title p {
  font-size: 17px;
  line-height: 1.62;
}

label,
.feature-field legend {
  font-size: 14.5px;
}

input,
textarea,
select,
.mode-button,
.optional-details summary {
  min-height: 52px;
  font-size: 16px;
}

input,
textarea,
select {
  padding: 14px 15px;
}

.upload-zone strong {
  font-size: 16px;
}

.upload-zone span,
.form-note,
.intake-short-note {
  font-size: 14.5px;
  line-height: 1.55;
}

.material-panel li strong,
.supplier-grid a,
.scope-link,
.partner-logo-grid strong {
  font-size: 15px;
}

.timeline h3 {
  font-size: 23px;
}

.site-footer,
.restaurant-showcase figcaption,
.commercial-photo-grid figcaption {
  font-size: 14.5px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .brand-logo {
    width: 205px;
  }

  .main-nav {
    gap: 26px;
    font-size: 14.5px;
  }

  .header-actions {
    font-size: 14.5px;
  }

  .quote-link {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .main-nav {
    display: none;
  }

  .brand-logo {
    width: 190px;
  }

  .header-actions {
    min-width: 0;
    justify-self: end;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16.5px;
  }

  .site-header {
    padding: 14px;
  }

  .brand-logo {
    width: 188px;
  }

  .quote-link {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 14.5px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.56;
  }

  .button {
    min-height: 48px;
    font-size: 15px;
  }

  .hero-rail strong {
    font-size: 17px;
  }

  .case-body p,
  .timeline p,
  .work-card p,
  .fit-strip span,
  .material-panel li,
  .supplier-grid p {
    font-size: 15.5px;
  }
}
/* end-readability-pass-20260721 */
/* mobile-readability-fix-20260721 */
@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(178px, 48vw);
  }

  .header-actions {
    min-width: 0;
    justify-self: end;
  }

  .quote-link {
    width: auto;
    max-width: 44vw;
    min-height: 44px;
    padding: 10px 13px;
    text-align: center;
    line-height: 1.18;
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-logo-grid article {
    min-width: 0;
  }

  .partner-logo-grid img {
    max-width: min(126px, 34vw);
  }

  .partner-logo-grid strong {
    font-size: 13.5px;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
  }
}
/* end-mobile-readability-fix-20260721 */

.contact-section .ai-copy > span {
  font-size: 13px;
  letter-spacing: 0;
}

.contact-section .ai-copy > p {
  font-size: 18px;
  line-height: 1.65;
}

.contact-section .prompt-list p {
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-card {
  padding: 32px;
}

.contact-card .intake-head {
  padding-bottom: 24px;
}

.contact-card .intake-head h3 {
  max-width: 650px;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-card .intake-head p {
  max-width: 650px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.contact-card .contact-grid {
  gap: 17px;
  margin-top: 24px;
}

.contact-card label:not(.consent-field) {
  gap: 9px;
  font-size: 14.5px;
  line-height: 1.35;
}

.contact-card input:not([type="checkbox"]),
.contact-card textarea,
.contact-card select {
  min-height: 54px;
  padding: 14px 15px;
  font-size: 16px;
  line-height: 1.45;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #6b716c;
  opacity: 1;
}

.contact-card .optional-details {
  margin-top: 18px;
}

.contact-card .optional-details summary {
  min-height: 56px;
  font-size: 15.5px;
  line-height: 1.35;
}

.contact-card .consent-stack {
  gap: 13px;
  margin-top: 20px;
}

.contact-card .consent-field {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  font-size: 13.5px;
  font-weight: 660;
  line-height: 1.5;
}

.contact-card .consent-field input {
  width: 20px;
  height: 20px;
}

.contact-card .contact-submit {
  min-height: 56px;
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.3;
}

.contact-card .contact-note {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .contact-section {
    gap: 22px;
  }


  .contact-card {
    padding: 24px 20px;
  }

  .contact-card .intake-head h3 {
    font-size: 28px;
    line-height: 1.14;
  }

  .contact-section .prompt-list {
    display: none;
  }

  .contact-section .ai-copy p {
    margin-top: 16px;
  }
}