@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Public Sans";
  src: url("fonts/public-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --paper: #fbf9f5;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #57534e;
  --hairline: #e7e2d8;
  --brand: #0f5c4a;
  --brand-hover: #0b4638;
  --brand-tint: #eaf3ef;
  --amber: #e0a100;
  --max: 1080px;
  --radius: 10px;
  --shadow: 0 9px 24px rgba(15, 92, 74, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--brand);
}

a:hover {
  color: var(--brand-hover);
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--hairline);
  background: rgba(251, 249, 245, 0.96);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  font-family: "Public Sans", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.nav-toggle {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 0.6rem;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-list a {
  color: var(--ink);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--brand);
}

.language-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.language-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
}

.language-switch button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--brand);
  color: var(--surface);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  padding: 0.65rem 1.05rem;
  background: var(--brand);
  color: var(--surface);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta:hover,
.button:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  color: var(--surface);
}

.language-switch button[aria-pressed="true"]:hover {
  background: var(--brand-hover);
  color: var(--surface);
}

.nav-cta *,
.button *,
.language-switch button[aria-pressed="true"] * {
  color: inherit;
}

.button--primary {
  box-shadow: var(--shadow);
}

.button--secondary {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
}

.button--secondary:hover {
  background: var(--brand-tint);
  color: var(--brand-hover);
}

.button--quiet {
  border-color: var(--hairline);
  background: var(--surface);
  color: var(--ink);
  box-shadow: none;
}

.button--quiet:hover {
  border-color: var(--brand);
  background: var(--brand-tint);
  color: var(--brand-hover);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 750px;
  margin-bottom: 1.3rem;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.1rem;
}

.trust-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-note {
  position: relative;
  min-height: 320px;
  padding: 2rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.hero-note::before {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 58px;
  height: 58px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  content: "";
}

.hero-note strong {
  display: block;
  max-width: 240px;
  margin: 4rem 0 1rem;
  color: var(--brand);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.hero-note p {
  max-width: 280px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pcb-motif {
  display: block;
  width: 100%;
  height: 72px;
  margin: 2rem 0;
  color: var(--brand);
  opacity: 0.58;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--tint {
  background: var(--brand-tint);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.section-heading p {
  max-width: 590px;
  color: var(--muted);
}

.trust-bar {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar-item {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--hairline);
}

.trust-bar-item:last-child {
  border-right: 0;
}

.trust-bar-item strong {
  display: block;
  color: var(--brand);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.trust-bar-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
  border: 1px solid var(--hairline);
  background: transparent;
}

.service-item {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 14px 4px;
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(15, 92, 74, 0.03);
  transition: transform 0.48s var(--spring-ease), box-shadow 0.48s var(--soft-ease), border-color 0.3s ease;
}

.icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--brand);
}

.service-item p,
.pillar p,
.process-step p,
.service-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.service-item:hover,
.service-item:focus-within {
  border-color: rgba(15, 92, 74, 0.35);
  box-shadow: var(--card-shadow);
  transform: translateY(-6px);
}

.service-item .icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--brand);
  transition: transform 0.45s var(--spring-ease);
}

.service-item:hover .icon,
.service-item:focus-within .icon {
  transform: translateY(-2px) rotate(-3deg);
}

.service-item h3 {
  max-width: 18ch;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.service-item p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.1rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.pricing-panel h3 {
  color: var(--brand);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-placeholder {
  min-height: 180px;
  padding: 1.5rem;
  border: 1px dashed var(--brand);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.92rem;
}

.review-placeholder strong {
  display: block;
  margin-top: 2rem;
  color: var(--brand);
  font-size: 0.82rem;
}

.review {
  min-height: 180px;
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

.review p {
  margin: 0;
}

.review strong {
  display: block;
  margin-top: 1.25rem;
  color: var(--brand);
  font-size: 0.82rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question .plus {
  flex: 0 0 auto;
  margin-left: 1rem;
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-answer {
  max-width: 720px;
  padding: 0 2rem 1.2rem 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.contact-details address {
  margin-bottom: 1.3rem;
  font-style: normal;
}

.contact-details dt {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0.15rem 0 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.map-placeholder {
  display: grid;
  min-height: 150px;
  margin-top: 1rem;
  place-items: center;
  border: 1px dashed var(--brand);
  background: var(--brand-tint);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #b9b4aa;
  border-radius: 6px;
  padding: 0.75rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--hairline);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-grid h2 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 0.78rem;
}

.timeline {
  position: relative;
  max-width: 850px;
  margin: 3rem auto 0;
  padding-left: 5rem;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.15rem;
  width: 1px;
  background: var(--brand);
  content: "";
  opacity: 0.45;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.timeline-number {
  position: absolute;
  top: 1.4rem;
  left: -5rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: var(--paper);
  color: var(--brand);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
}

.timeline-item h2 {
  margin-bottom: 0.6rem;
  border: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.timeline-item p {
  max-width: 680px;
  color: var(--muted);
}

.timeline-item p:last-child {
  margin-bottom: 0;
}

.page-intro {
  max-width: 770px;
  padding: clamp(4rem, 8vw, 6rem) 0 1rem;
}

.page-intro .lede {
  max-width: 700px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.tool-card {
  padding: 1.4rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.tool-card h3 {
  font-size: 1.25rem;
}

.tool-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.thanks {
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    top: 4.5rem;
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--hairline);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li a,
  .nav-list .nav-cta {
    display: block;
    padding: 0.8rem;
  }

  .nav-list .nav-cta {
    text-align: center;
  }

  .language-item {
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
  }

  .hero-grid,
  .contact-grid,
  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .hero-note {
    min-height: 250px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .section-heading,
  .service-list,
  .pillar-list,
  .trust-bar-inner,
  .process,
  .reviews,
  .footer-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-item {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .trust-bar-item:last-child {
    border-bottom: 0;
  }

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

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

  .timeline {
    padding-left: 3.1rem;
  }

  .timeline::before {
    left: 0.65rem;
  }

  .timeline-number {
    left: -3.1rem;
  }
}

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

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

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

/* Professional layout pass: one rhythm, one header pattern, one card language. */
:root {
  --muted: #4f4a44;
  --space-section: clamp(3.75rem, 6vw, 5.75rem);
  --space-content: clamp(1.5rem, 3vw, 2.5rem);
  --space-tight: clamp(0.65rem, 1.2vw, 0.9rem);
  --measure: 66ch;
  --display-tracking: -0.045em;
}

.section {
  padding: var(--space-section) 0;
}

.hero {
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(2.5rem, 5.5vw, 5.5rem);
  align-items: stretch;
}

.hero > .container > div:first-child {
  align-self: center;
}

.hero-note {
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workbench-illustration {
  width: min(100%, 28rem);
  margin-bottom: 1.25rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: var(--display-tracking);
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.15;
}

.section-heading {
  display: block;
  max-width: var(--measure);
  margin-bottom: var(--space-content);
}

.section-heading > div {
  max-width: 680px;
}

.section-heading > p {
  max-width: 66ch;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
}

.section-heading h2::after {
  width: 3.75rem;
  margin-top: 0.5rem;
}

.service-note {
  margin-top: 1.25rem;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.pickup-card {
  position: relative;
  max-width: 760px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(224, 161, 0, 0.55);
  border-radius: 14px 14px 14px 4px;
  background: #fffaf0;
  box-shadow: 6px 6px 0 rgba(224, 161, 0, 0.1);
}

.pickup-card .eyebrow {
  margin-bottom: 0.85rem;
}

.pickup-card h3 {
  margin-bottom: 0.65rem;
  color: var(--brand);
}

.pickup-card p {
  max-width: 58rem;
  color: var(--muted);
}

.pickup-card strong {
  display: inline-block;
  margin: 0.25rem 0 0.65rem;
  color: var(--brand-hover);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.pickup-card .pickup-note {
  margin: 0;
  font-size: 0.88rem;
}

.pillar {
  min-height: 0;
  align-content: start;
}

.pillar-list {
  grid-auto-rows: auto;
}

.pillar-number {
  align-self: start;
  padding-top: 0.15rem;
}

.pillar-icon {
  width: 3.15rem;
  height: 3.15rem;
}

.pillar h3 {
  margin-top: 0.1rem;
}

.process-step {
  min-height: 16rem;
  display: flex;
  flex-direction: column;
}

.process {
  grid-auto-rows: 1fr;
}

.process-step p {
  margin-top: auto;
  padding-top: 1rem;
  line-height: 1.55;
}

.pricing-panel {
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.reviews {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.review,
.review-placeholder {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  line-height: 1.55;
}

.review strong,
.review-placeholder strong {
  margin-top: auto;
  padding-top: 1rem;
}

.faq-list {
  max-width: 760px;
}

.contact-grid {
  gap: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-note {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  .pickup-card {
    padding: 1.4rem;
  }

  .pillar {
    min-height: 0;
  }

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

/* Crafted polish layer */
:root {
  --cream-band: #f3eee3;
  --spring-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --soft-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --card-shadow: 0 12px 28px rgba(15, 92, 74, 0.1);
}

.utility-bar {
  background: var(--brand);
  color: var(--surface);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.15rem;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.utility-item svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.utility-serving {
  font-weight: 700;
}

.site-header {
  box-shadow: 0 1px 0 rgba(15, 92, 74, 0.04);
}

.hero {
  padding-top: clamp(5.5rem, 11vw, 9rem);
  background: var(--paper);
}

.hero-grid {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border: 1px solid rgba(15, 92, 74, 0.2);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: var(--brand-tint);
  color: var(--brand-hover);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.section-heading h2 {
  position: relative;
  width: fit-content;
}

.section-heading h2::after {
  display: block;
  width: 4.5rem;
  height: 0.45rem;
  margin-top: 0.35rem;
  border-bottom: 2px solid var(--amber);
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.section--cream {
  background: var(--cream-band);
}

.hero-note {
  min-height: 0;
  overflow: visible;
  border: 1px solid rgba(15, 92, 74, 0.23);
  background: var(--brand-tint);
  box-shadow: 12px 14px 0 rgba(224, 161, 0, 0.12), var(--card-shadow);
  transform: rotate(1.2deg);
}

.hero-note::after {
  position: absolute;
  z-index: 0;
  right: -2rem;
  bottom: -2.5rem;
  width: 10rem;
  height: 10rem;
  border: 1px dashed rgba(15, 92, 74, 0.35);
  border-radius: 50%;
  content: "";
}

.pcb-motif {
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
  color: var(--brand);
}

.workbench-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 25rem);
  margin: 0 auto 0.4rem;
  color: var(--brand);
}

.hero-note strong,
.hero-note p {
  position: relative;
  z-index: 1;
}

.hero-note strong {
  display: block;
  margin: 0 0 0.8rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.hero-note p {
  max-width: 28rem;
  margin-bottom: 0;
}

.doodle {
  position: absolute;
  z-index: 2;
  color: var(--amber);
  font-family: "Fraunces", Georgia, serif;
  pointer-events: none;
  animation: doodle-drift 4.5s ease-in-out infinite;
}

.doodle-star {
  width: 1.5rem;
  height: 1.5rem;
}

.doodle-star--one {
  top: 1.3rem;
  right: 2rem;
}

.doodle-plus {
  width: 1.4rem;
  height: 1.4rem;
}

.doodle-plus--one {
  bottom: 2.3rem;
  left: 1.5rem;
}

.doodle-dot {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid var(--amber);
  border-radius: 50%;
}

.doodle-dot--one {
  top: 4.5rem;
  left: 2.25rem;
}

@keyframes doodle-drift {
  0%, 100% {
    opacity: 0.72;
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px) rotate(2deg);
  }
}

.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--brand);
  color: var(--surface);
}

.trust-bar-item {
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-bar-item strong,
.trust-bar-item span {
  color: var(--surface);
}

.service-note {
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1rem;
  background: rgba(224, 161, 0, 0.1);
}

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

.pillar {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem 3.4rem minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid var(--hairline);
  border-radius: 12px 12px 12px 3px;
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(15, 92, 74, 0.03);
  transition: transform 0.48s var(--spring-ease), box-shadow 0.48s var(--soft-ease);
}

.pillar:hover,
.pillar:focus-within {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}

.pillar:nth-child(odd),
.pillar:nth-child(even) {
  background: var(--surface);
}

.pillar-list > .pillar:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 0.5rem);
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar-list > .pillar:last-child:nth-child(odd) > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-list > .pillar:last-child:nth-child(odd) p {
  max-width: 46ch;
}

.pillar-list > .pillar:last-child:nth-child(odd) .pillar-number {
  align-self: center;
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(15, 92, 74, 0.2);
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
}

.pillar-number {
  padding-top: 0.35rem;
  color: var(--amber);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.pillar h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.pillar .promise {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 600;
}

.pillar-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.pillar h3,
.pillar p,
.process-step h3,
.process-step p,
.pricing-panel h2,
.pricing-panel h3,
.pricing-panel p,
.review,
.review-placeholder,
.faq-question,
.faq-answer,
.contact-details,
.contact-form,
.map-placeholder,
.hero-note strong,
.hero-note p,
.utility-item {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  gap: 1.15rem;
  counter-reset: process;
}

.process::before {
  position: absolute;
  z-index: 0;
  top: 1.7rem;
  right: calc((100% - 3 * 1.15rem) / 8);
  left: calc((100% - 3 * 1.15rem) / 8);
  height: 0;
  border-top: 2px dotted var(--amber);
  opacity: 0.75;
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 3.1rem 1.25rem 1.35rem;
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--brand);
  border-radius: 14px 14px 14px 4px;
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(15, 92, 74, 0.03);
  transition: transform 0.48s var(--spring-ease), box-shadow 0.48s var(--soft-ease);
}

.process-step:hover,
.process-step:focus-within {
  box-shadow: var(--card-shadow);
  transform: translateY(-5px);
}

.process-step::before {
  position: absolute;
  top: 1.08rem;
  left: 50%;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  font-size: 0.68rem;
  line-height: 1;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px var(--brand);
}

.pricing-panel {
  border: 1px solid rgba(224, 161, 0, 0.45);
  border-radius: 16px 16px 16px 4px;
  min-width: 0;
  background: #fffaf0;
  box-shadow: 8px 8px 0 rgba(224, 161, 0, 0.08);
}

.review,
.review-placeholder {
  border-radius: 14px 14px 14px 4px;
  min-width: 0;
  transition: transform 0.48s var(--spring-ease), box-shadow 0.48s var(--soft-ease);
}

.review:hover,
.review-placeholder:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}

.faq-item {
  min-width: 0;
  border-radius: 10px 10px 10px 3px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:focus-within {
  border-color: rgba(15, 92, 74, 0.45);
  box-shadow: 0 4px 16px rgba(15, 92, 74, 0.08);
}

.button,
.nav-cta {
  box-shadow: 0 5px 0 rgba(11, 70, 56, 0.12);
  transition: transform 0.35s var(--spring-ease), box-shadow 0.35s var(--soft-ease), background 0.25s ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 8px 16px rgba(11, 70, 56, 0.18);
  transform: translateY(-2px);
}

.button--secondary,
.button--quiet {
  box-shadow: none;
}

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

.floating-actions {
  position: fixed;
  z-index: 15;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.floating-action {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  box-shadow: 0 5px 14px rgba(15, 92, 74, 0.2);
  transition: transform 0.35s var(--spring-ease), box-shadow 0.3s ease, background 0.25s ease;
}

.floating-action svg {
  width: 1.35rem;
  height: 1.35rem;
}

.floating-action:hover,
.floating-action:focus-visible {
  background: var(--brand-hover);
  color: var(--surface);
  box-shadow: 0 8px 18px rgba(11, 70, 56, 0.28);
  transform: translateY(-3px);
}

.floating-action--top {
  border-color: var(--hairline);
  background: var(--surface);
  color: var(--brand);
  opacity: 0;
  pointer-events: none;
}

.floating-action--top.is-active {
  opacity: 1;
  pointer-events: auto;
}

.floating-action--top:hover,
.floating-action--top:focus-visible {
  background: var(--brand-tint);
  color: var(--brand-hover);
}

/* Explicit white foregrounds for every pine-filled surface and state. */
.utility-bar,
.utility-bar *,
.trust-bar,
.trust-bar *,
.nav-cta,
.nav-cta *,
.button--primary,
.button--primary *,
.language-switch button[aria-pressed="true"],
.language-switch button[aria-pressed="true"] *,
.process-step::before,
.floating-action--whatsapp,
.floating-action--whatsapp *,
.floating-action--call,
.floating-action--call * {
  color: #fff;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta:active,
.button--primary:hover,
.button--primary:focus-visible,
.button--primary:active,
.language-switch button[aria-pressed="true"]:hover,
.language-switch button[aria-pressed="true"]:focus-visible,
.language-switch button[aria-pressed="true"]:active,
.floating-action--whatsapp:hover,
.floating-action--whatsapp:focus-visible,
.floating-action--whatsapp:active,
.floating-action--call:hover,
.floating-action--call:focus-visible,
.floating-action--call:active {
  color: #fff;
}

/* The navigation link rule is more specific than .nav-cta; keep the CTA white. */
.nav-list .nav-cta,
.nav-list .nav-cta:hover,
.nav-list .nav-cta:focus-visible,
.nav-list .nav-cta:active {
  color: #fff !important;
}

.reveal {
  transition: opacity 0.65s var(--soft-ease), transform 0.65s var(--soft-ease);
}

.service-list > :nth-child(2),
.pillar-list > :nth-child(2),
.process > :nth-child(2) {
  transition-delay: 0.06s;
}

.service-list > :nth-child(3),
.pillar-list > :nth-child(3),
.process > :nth-child(3) {
  transition-delay: 0.12s;
}

.service-list > :nth-child(4),
.pillar-list > :nth-child(4),
.process > :nth-child(4) {
  transition-delay: 0.18s;
}

@media (max-width: 900px) {
  .utility-inner {
    flex-wrap: wrap;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .utility-serving {
    display: inline-flex;
  }

  .hero-note {
    min-height: 0;
  }

}

@media (max-width: 680px) {
  .utility-inner {
    justify-content: space-between;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .hero-note {
    min-height: 0;
    transform: none;
  }

  .workbench-illustration {
    max-height: 150px;
  }

  .pillar {
    grid-template-columns: 2.25rem 2.8rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1.1rem 0.9rem;
  }

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

  .pillar-list > .pillar:last-child:nth-child(odd) {
    width: 100%;
  }

  .pillar-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 2.6rem;
  }

  .process::before {
    top: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    left: 1.05rem;
    width: 2px;
    height: auto;
    border-top: 0;
    border-left: 2px dotted var(--amber);
  }

  .process-step {
    padding: 1.25rem 1rem;
  }

  .process-step::before {
    top: 1.15rem;
    left: -2.125rem;
    transform: none;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .service-item:hover,
  .pillar:hover,
  .process-step:hover,
  .button:hover,
  .nav-cta:hover,
  .floating-action:hover {
    transform: none !important;
  }
}

/* Final micro-polish overrides the earlier crafted layer. */
.hero {
  padding-top: clamp(3.25rem, 6vw, 5rem);
}

h1,
h2,
h3,
.service-item h3,
.pillar h3,
.process-step h3,
.pricing-panel h2,
.pricing-panel h3 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 680px) {
  .hero {
    padding-top: 2.75rem;
  }
}

.floating-action--chat,
.floating-action--chat * {
  color: #fff;
}

/* Quiet editorial finish: paper texture, measured type, and restrained motion. */
body {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(224, 161, 0, 0.16);
}

.eyebrow {
  border-color: rgba(15, 92, 74, 0.28);
  border-radius: 0;
  padding: 0.32rem 0 0.42rem;
  letter-spacing: 0.14em;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
}

.lede,
.section-heading > p,
.service-note,
.contact-details,
.contact-form {
  max-width: var(--measure);
}

.section {
  position: relative;
}

.section--cream {
  border-top: 1px solid rgba(224, 161, 0, 0.18);
  border-bottom: 1px solid rgba(224, 161, 0, 0.18);
}

.section-heading {
  position: relative;
  padding-left: 1.1rem;
  border-left: 2px solid var(--amber);
}

.section-heading h2::after {
  width: 3rem;
  height: 0.3rem;
  margin-top: 0.65rem;
}

.hero-note {
  transform: rotate(0.7deg);
  box-shadow: 10px 12px 0 rgba(224, 161, 0, 0.1), var(--card-shadow);
}

.hero-pullquote {
  max-width: 12ch;
  margin-top: 0.5rem;
  letter-spacing: -0.035em;
}

.hero-caption {
  max-width: 32ch;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(15, 92, 74, 0.2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-item,
.pillar,
.process-step,
.review,
.review-placeholder,
.pickup-card,
.pricing-panel {
  border-radius: 14px 14px 14px 4px;
}

.service-item,
.pillar,
.process-step,
.review,
.review-placeholder {
  box-shadow: 0 2px 0 rgba(15, 92, 74, 0.035);
}

.service-item p,
.pillar p,
.process-step p,
.review p {
  max-width: 62ch;
}

.service-item:hover,
.service-item:focus-within,
.pillar:hover,
.pillar:focus-within,
.process-step:hover,
.process-step:focus-within,
.review:hover,
.review-placeholder:hover {
  transform: translateY(-3px);
}

.service-list > :nth-child(5),
.pillar-list > :nth-child(5) {
  transition-delay: 0.24s;
}

.service-list > :nth-child(6) {
  transition-delay: 0.3s;
}

.service-list > :nth-child(7) {
  transition-delay: 0.36s;
}

.service-list > :nth-child(8) {
  transition-delay: 0.42s;
}

.photo-frame {
  display: block;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 14px 4px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-frame--hero {
  position: relative;
  z-index: 1;
  margin: 0 auto 1rem;
  border-color: rgba(15, 92, 74, 0.24);
  box-shadow: 7px 8px 0 rgba(224, 161, 0, 0.1), var(--card-shadow);
}

.photo-frame--hero img {
  aspect-ratio: 3 / 2;
}

.hero-note {
  transform: none;
  justify-content: flex-start;
}

.hero-note::before,
.hero-note::after {
  display: none;
}

.hero-note .pcb-motif {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-note .photo-frame--hero {
  width: 100%;
  margin-bottom: 1.25rem;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.editorial-figure {
  min-width: 0;
  margin: 0;
}

.editorial-figure figcaption {
  min-height: 2.8em;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.handover-figure {
  align-self: start;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(0.85rem, 2vw, 1.35rem);
}

.workshop-figure {
  display: grid;
  grid-template-rows: auto minmax(2.8em, auto);
  align-content: start;
}

@media (max-width: 680px) {
  h1 {
    max-width: 15ch;
  }

  .section-heading {
    padding-left: 0.85rem;
  }

  .why-layout,
  .workshop-gallery {
    grid-template-columns: 1fr;
  }

  .handover-figure {
    position: static;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .workshop-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-figure:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.55rem);
    justify-self: center;
  }
}

/* Why ByteCare: broad, calm cards instead of narrow text ribbons. */
.why-layout {
  display: block;
}

.handover-figure {
  width: 100%;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.handover-figure .photo-frame img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.pillar-list {
  grid-auto-rows: auto;
  align-items: stretch;
}

.pillar {
  grid-template-columns: 2.5rem 3.25rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 0;
  align-content: start;
  gap: 0.7rem 0.85rem;
  padding: clamp(1.15rem, 2vw, 1.5rem);
}

.pillar > div {
  display: contents;
}

.pillar h3 {
  grid-column: 3;
  align-self: center;
  margin: 0;
}

.pillar p {
  grid-column: 1 / -1;
  max-width: 46ch;
  margin-bottom: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.pillar .promise {
  margin-top: 0.4rem;
}

.pillar .promise + p {
  margin-top: 0.45rem;
}

main p,
main h1,
main h2,
main h3,
main dt,
main dd,
main figcaption {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 680px) {
  .handover-figure {
    margin-bottom: 1.5rem;
  }

  .handover-figure .photo-frame img {
    aspect-ratio: 4 / 3;
  }

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

@media (prefers-reduced-motion: reduce) {
  body {
    background-image: none;
  }
}

.chat-panel {
  box-sizing: border-box;
  position: fixed;
  z-index: 14;
  right: 5.2rem;
  bottom: 1.2rem;
  display: flex;
  width: min(380px, calc(100vw - 6.5rem));
  max-height: min(680px, calc(100vh - 2rem));
  flex-direction: column;
  gap: 0.85rem;
  overflow: auto;
  padding: 1.15rem;
  border: 1px solid var(--hairline);
  border-radius: 16px 16px 4px 16px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.18);
}

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

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.chat-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.chat-header .eyebrow {
  margin-bottom: 0.25rem;
}

.chat-close {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.chat-intro,
.chat-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-disclaimer {
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.78rem;
}

.chat-messages {
  display: flex;
  min-height: 5rem;
  max-height: 250px;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
  padding: 0.25rem;
}

.chat-message {
  max-width: 90%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--hairline);
  border-radius: 10px 10px 10px 3px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.chat-message--user {
  align-self: flex-end;
  border-color: var(--brand);
  background: var(--brand-tint);
}

.chat-message--typing {
  color: var(--muted);
  font-style: italic;
}

.chat-form,
.chat-booking form {
  display: grid;
  gap: 0.65rem;
}

.chat-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.chat-form textarea {
  min-height: 2.75rem;
}

.chat-booking {
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline);
}

.chat-booking h3 {
  margin-bottom: 0.75rem;
  color: var(--brand);
}

.chat-booking label {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.chat-booking input,
.chat-booking textarea {
  width: 100%;
  min-width: 0;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.chat-booking .chat-pickup {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.chat-booking .chat-pickup input {
  width: 1.1rem;
  height: 1.1rem;
}

.chat-book-button,
.chat-book-cta {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--brand);
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.chat-book-button:hover,
.chat-book-button:focus-visible,
.chat-book-cta:hover,
.chat-book-cta:focus-visible {
  background: var(--brand-hover);
  color: #fff;
}

@media (max-width: 680px) {
  .chat-panel {
    right: 0.75rem;
    bottom: 4.8rem;
    width: min(380px, calc(100vw - 2.5rem));
    max-height: calc(100vh - 6rem);
  }

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

/* Approximate price guide */
.pricing-guide {
  display: block;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.pricing-intro {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.pricing-intro h2 {
  margin-bottom: 0.65rem;
}

.pricing-intro h3 {
  margin-bottom: 0.75rem;
  color: var(--brand);
}

.pricing-disclaimer {
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: rgba(224, 161, 0, 0.12);
  color: var(--ink);
  font-weight: 650;
  line-height: 1.55;
}

.price-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-group {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--hairline);
  border-radius: 12px 12px 12px 3px;
  background: var(--surface);
}

.price-group h3 {
  margin-bottom: 0.85rem;
  color: var(--brand);
  font-size: 1.25rem;
}

.price-list {
  margin: 0;
}

.price-list > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--hairline);
}

.price-list > div:first-child {
  border-top: 0;
  padding-top: 0.35rem;
}

.price-list dt,
.price-list dd {
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: none;
  line-height: 1.4;
}

.price-list dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.price-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  text-align: left;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.pricing-cta {
  margin-top: 1.5rem;
}

@media (max-width: 680px) {
  .price-guide {
    grid-template-columns: 1fr;
  }

  .price-group {
    padding: 1.1rem;
  }
}

/* Subtle drifting hand-drawn repair-tech icons scattered behind the content. */
.bg-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-icons .bi {
  position: absolute;
  display: block;
  width: 3rem;
  height: 3rem;
  color: var(--brand);
  opacity: 0.28;
  will-change: transform;
  animation: bi-float-a 22s ease-in-out infinite;
}

.bg-icons .bi svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bg-icons .bi--amber {
  color: var(--amber);
  opacity: 0.34;
}

.bi-1  { top: 6%;  left: 5%;  width: 3.5rem; height: 3.5rem; animation: bi-float-a 24s ease-in-out infinite; }
.bi-2  { top: 12%; left: 91%; width: 2.6rem; height: 2.6rem; animation: bi-float-b 27s ease-in-out infinite 2s; }
.bi-3  { top: 22%; left: 88%; width: 3.6rem; height: 3.6rem; animation: bi-drift-c 30s ease-in-out infinite 1s; }
.bi-4  { top: 31%; left: 4%;  width: 2.9rem; height: 2.9rem; animation: bi-drift-c 28s ease-in-out infinite 3s; }
.bi-5  { top: 41%; left: 92%; width: 2.3rem; height: 2.3rem; animation: bi-float-b 22s ease-in-out infinite 2s; }
.bi-6  { top: 51%; left: 5%;  width: 3.3rem; height: 3.3rem; animation: bi-float-a 31s ease-in-out infinite 4s; }
.bi-7  { top: 61%; left: 90%; width: 2.6rem; height: 2.6rem; animation: bi-float-b 26s ease-in-out infinite 3s; }
.bi-8  { top: 71%; left: 5%;  width: 2.8rem; height: 2.8rem; animation: bi-drift-c 25s ease-in-out infinite 2s; }
.bi-9  { top: 81%; left: 89%; width: 2.4rem; height: 2.4rem; animation: bi-float-a 29s ease-in-out infinite 5s; }
.bi-10 { top: 91%; left: 7%;  width: 2.7rem; height: 2.7rem; animation: bi-float-b 28s ease-in-out infinite 1s; }
.bi-11 { top: 9%;  left: 84%; width: 2.4rem; height: 2.4rem; animation: bi-float-b 26s ease-in-out infinite 1s; }
.bi-12 { top: 17%; left: 8%;  width: 2.3rem; height: 2.3rem; animation: bi-drift-c 29s ease-in-out infinite 2s; }
.bi-13 { top: 27%; left: 93%; width: 2.6rem; height: 2.6rem; animation: bi-float-a 24s ease-in-out infinite 3s; }
.bi-14 { top: 36%; left: 6%;  width: 2.8rem; height: 2.8rem; animation: bi-float-b 27s ease-in-out infinite 1s; }
.bi-15 { top: 46%; left: 88%; width: 3rem;   height: 3rem;   animation: bi-drift-c 31s ease-in-out infinite 4s; }
.bi-16 { top: 56%; left: 4%;  width: 2.4rem; height: 2.4rem; animation: bi-float-a 25s ease-in-out infinite 2s; }
.bi-17 { top: 66%; left: 91%; width: 3rem;   height: 3rem;   animation: bi-float-b 28s ease-in-out infinite 3s; }
.bi-18 { top: 76%; left: 6%;  width: 2.5rem; height: 2.5rem; animation: bi-drift-c 26s ease-in-out infinite 1s; }

@keyframes bi-float-a {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-48px) rotate(10deg); }
}

@keyframes bi-float-b {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(42px) rotate(-12deg); }
}

@keyframes bi-drift-c {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(34px, -38px) rotate(14deg); }
}

@media (max-width: 680px) {
  .bg-icons .bi { opacity: 0.2; }
  .bi--amber { opacity: 0.26; }
  .bi-3, .bi-4, .bi-7, .bi-9,
  .bi-11, .bi-13, .bi-15, .bi-17 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-icons .bi { animation: none; }
}

.hero,
.section:not(.section--tint):not(.section--cream) {
  background: transparent;
}
