:root {
  --paper: #f4f2ed;
  --white: #ffffff;
  --ink: #0f0f0f;
  --muted: #5a5a5a;
  --accent: #b8a47c;
  --line: #e5e2db;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --header: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
select,
summary,
[role="button"] {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px var(--gutter);
  border-bottom: 1px solid rgba(229, 226, 219, 0.72);
  background: rgba(244, 242, 237, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 34px auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-rule {
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.site-nav a,
.header-phone,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.header-phone:hover,
.text-link:hover {
  color: var(--ink);
}

.header-phone {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 28px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  filter: brightness(0.72);
  transform: scale(1.04);
  animation: hero-settle 1400ms cubic-bezier(.2, .8, .2, 1) both;
  z-index: -2;
}

.line-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.72), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  grid-column: 1;
  z-index: 2;
  width: min(760px, 100%);
  padding: 0 var(--gutter) clamp(42px, 8vw, 96px);
  color: var(--white);
  animation: rise-in 900ms 160ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-proof {
  position: relative;
  grid-column: 2;
  z-index: 2;
  align-self: end;
  justify-self: stretch;
  margin: 0 var(--gutter) clamp(42px, 8vw, 96px) 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.26);
  color: var(--white);
  backdrop-filter: blur(18px);
  animation: rise-in 900ms 320ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-proof p {
  margin: 0;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof p:last-child {
  border-bottom: 0;
}

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

h1,
h2 {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(48px, 8vw, 104px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
  margin-bottom: 22px;
}

.page-hero h1 {
  max-width: 880px;
}

.hero-content p,
.page-hero p,
.section p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

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

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  font: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.hero .button-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  color: currentColor;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip p {
  min-height: 74px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  text-align: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.section,
.page-hero,
.quote-section,
.craft-section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) var(--gutter);
}

.section::before,
.quote-section::before,
.craft-section::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 0;
  height: 1px;
  background: var(--line);
  transform-origin: left;
}

.section-grid,
.service-area,
.founder,
.about-grid,
.split-hero,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section > *,
.page-hero > *,
.craft-section > *,
.quote-section > * {
  max-width: var(--max);
}

.section-label {
  color: var(--accent) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.capability-list {
  columns: 2 260px;
  column-gap: 48px;
}

.capability-list span {
  display: block;
  break-inside: avoid;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 2vw, 22px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.project-grid,
.gallery-grid,
.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-card,
.gallery-item,
.service-matrix article {
  background: var(--paper);
  text-decoration: none;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 700ms ease;
}

.project-card span {
  display: block;
  padding: 18px;
  font-size: 20px;
  font-weight: 600;
  transition: background-color 300ms ease;
}

.project-card:hover img {
  transform: scale(1.05);
  filter: contrast(1.05);
}

.project-card:hover span {
  background: var(--white);
}

.craft-section {
  display: grid;
  gap: 36px;
  overflow: hidden;
  background: var(--white);
}

.craft-copy {
  width: min(650px, 100%);
}

.craft-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  width: 100%;
}

.craft-rail img {
  flex: 0 0 min(420px, 34vw);
  width: min(420px, 34vw);
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.craft-rail img:hover {
  transform: translateY(-8px);
}

.motion-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.motion-band-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.motion-band span {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(26px, 5vw, 64px);
  border-right: 1px solid rgba(244, 242, 237, 0.22);
  color: rgba(244, 242, 237, 0.82);
  font-size: clamp(18px, 2vw, 28px);
  white-space: nowrap;
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.coverage-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(15, 15, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 15, 15, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 38px 38px;
}

.area-map {
  width: 100%;
  min-height: 350px;
  fill: none;
}

.coast-line {
  stroke: rgba(15, 15, 15, 0.12);
  stroke-width: 18;
  stroke-linecap: round;
}

.route-line {
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1 8;
}

.route-link {
  stroke: rgba(184, 164, 124, 0.62);
}

.route-metro {
  stroke: rgba(15, 15, 15, 0.34);
}

.map-node circle {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 2;
}

.node-base circle {
  fill: var(--accent);
  stroke: var(--ink);
}

.map-node text {
  fill: var(--ink);
  stroke: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.route-label {
  fill: var(--muted);
  stroke: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coverage-title-block {
  display: grid;
  gap: 6px;
  padding: 16px 22px 20px;
  border-top: 1px solid rgba(15, 15, 15, 0.18);
}

.coverage-title-block p {
  margin: 0;
}

.coverage-title-block p:first-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-title-block p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.area-copy {
  display: grid;
  gap: 22px;
}

.area-regions {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.area-regions > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.area-regions h3 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-regions ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
}

.area-regions li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.area-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.wide-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.local-grid,
.faq-list,
.search-term-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.local-grid article,
.faq-list article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.local-grid h3,
.faq-list h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.08;
}

.local-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

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

.search-term-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.search-term-list span {
  min-height: 74px;
  display: grid;
  align-items: center;
  padding: 16px 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
}

.founder-frame img,
.split-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-bar p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 26px var(--gutter);
  border-right: 1px solid var(--line);
}

.proof-bar p:last-child {
  border-right: 0;
}

.proof-bar strong {
  color: var(--ink);
  font-size: 14px;
}

.proof-bar span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quote-section {
  background: var(--paper);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.field-help {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

.form-step {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
  padding-top: 2px;
  color: var(--ink);
}

.form-step span {
  color: var(--accent);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.form-step strong {
  font-size: 16px;
}

.form-step small {
  color: var(--muted);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  min-height: 46px;
  padding: 11px 12px;
}

input,
textarea {
  cursor: text;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.full-field,
.quote-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-transform: none;
}

.quote-form button:disabled,
.assistant-form button:disabled {
  cursor: progress;
  opacity: 0.58;
}

.intake-assistant {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  width: min(380px, calc(100vw - 32px));
  color: var(--ink);
}

.assistant-launcher {
  display: grid;
  gap: 2px;
  justify-items: start;
  margin-left: auto;
  min-width: 210px;
  border: 1px solid rgba(244, 242, 237, 0.28);
  border-radius: 8px;
  padding: 13px 16px;
  background: rgba(15, 15, 15, 0.88);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(15, 15, 15, 0.2);
  font: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.assistant-launcher[hidden] {
  display: none;
}

.assistant-launcher span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  text-transform: uppercase;
}

.assistant-launcher strong {
  font-size: 16px;
}

.assistant-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(15, 15, 15, 0.22);
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.assistant-header p,
.assistant-header h2 {
  margin: 0;
}

.assistant-header p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.assistant-header h2 {
  font-size: 22px;
  line-height: 1.1;
}

.assistant-close {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  padding: 7px 9px;
  cursor: pointer;
}

.assistant-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding: 16px;
  background: var(--white);
}

.assistant-message {
  max-width: 88%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.assistant-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.assistant-message.is-user {
  justify-self: end;
  border-color: rgba(184, 164, 124, 0.45);
  background: #f8f6f1;
}

.assistant-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px 0;
  background: var(--white);
}

.assistant-prompts button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.assistant-form {
  display: grid;
  gap: 10px;
  padding: 14px 16px 12px;
  background: var(--white);
}

.assistant-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.assistant-form textarea {
  min-height: 82px;
  max-height: 160px;
}

.assistant-form .button {
  width: 100%;
}

.assistant-privacy {
  margin: 0;
  padding: 0 16px 16px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.page-hero {
  padding-top: clamp(74px, 9vw, 126px);
  padding-bottom: clamp(52px, 8vw, 96px);
}

.split-hero {
  align-items: end;
}

.gallery-section {
  padding-top: 0;
}

.filter-row {
  margin-bottom: 28px;
}

.filter-button {
  color: var(--muted);
  border-color: var(--line);
}

.filter-button.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

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

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-item div,
.service-matrix article {
  padding: clamp(20px, 3vw, 34px);
}

.gallery-item h2,
.service-matrix h2,
.process-list h2,
.about-grid h2,
.contact-details h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.gallery-item p,
.service-matrix p,
.about-grid p,
.contact-details p {
  color: var(--muted);
}

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

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

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2vw, 24px);
}

.process-list span {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.contact-page {
  padding-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: transform 780ms cubic-bezier(.2, .8, .2, 1);
}

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

@keyframes hero-settle {
  from {
    transform: scale(1.09);
    filter: brightness(0.58);
  }
  to {
    transform: scale(1.04);
    filter: brightness(0.72);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

  .nav-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 14px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 720px;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

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

  .trust-strip p {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-grid,
  .service-area,
  .founder,
  .about-grid,
  .split-hero,
  .quote-section,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .gallery-grid,
  .service-matrix,
  .local-grid,
  .search-term-list,
  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-bar p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-bar p:last-child {
    border-bottom: 0;
  }

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

  .area-list,
  .wide-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  h1 {
    font-size: 46px;
  }

  .button,
  .filter-button {
    width: 100%;
  }

  .craft-rail {
    gap: 12px;
  }

  .craft-rail img {
    flex-basis: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .intake-assistant {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .assistant-panel {
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }

  .assistant-messages {
    max-height: 280px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section::before,
  .quote-section::before,
  .craft-section::before {
    animation: draw-line 900ms ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  @keyframes draw-line {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
}

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

  .line-field {
    display: none;
  }
}
