:root {
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --content-width: 1200px;
  --text-width: 720px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --home-ink: #101417;
  --home-muted: #59636b;
  --home-line: #d9dde0;
  --home-paper: #f5f6f7;
  --home-white: #ffffff;
  --home-black: #070809;
  --home-yellow: #f0b928;
}

body.simple-home {
  margin: 0;
  overflow-x: clip;
  background: var(--home-black);
  color: #f4f6f7;
  font-size: 1rem;
  line-height: 1.65;
}

body.simple-home .shell {
  overflow: clip;
}

body.simple-home .container,
body.simple-home .simple-process > *,
body.simple-home .simple-body > *,
body.simple-home .simple-work-preview > *,
body.simple-home .simple-footer > * {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

body.simple-home .section {
  padding-block: 5rem;
}

body.simple-home h1,
body.simple-home h2,
body.simple-home h3,
body.simple-home p {
  margin-top: 0;
}

body.simple-home h1,
body.simple-home h2,
body.simple-home h3 {
  letter-spacing: 0;
}

body.simple-home h1 {
  max-width: 13ch;
  margin-bottom: var(--space-lg);
  font-size: 4.25rem !important;
  line-height: 1.02 !important;
}

body.simple-home h2 {
  margin-bottom: var(--space-md);
  font-size: 2.6rem;
  line-height: 1.12;
}

body.simple-home h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

body.simple-home p {
  max-width: var(--text-width);
  color: inherit;
  line-height: 1.65;
}

body.simple-home .kicker {
  margin-bottom: var(--space-sm);
  color: #aeb8bf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.simple-home .section-heading {
  max-width: var(--text-width);
  margin-bottom: var(--space-2xl);
}

body.simple-home .action {
  min-height: 46px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  background: transparent;
  color: inherit;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

body.simple-home .action.primary {
  border-color: var(--home-yellow);
  background: var(--home-yellow);
  color: #111;
}

body.simple-home .action:hover,
body.simple-home .action:focus-visible {
  transform: translateY(-1px);
}

body.simple-home :focus-visible {
  outline: 3px solid #6f86ff;
  outline-offset: 3px;
}

/* Hero */
body.simple-home .simple-hero {
  position: relative;
  min-height: 680px;
  padding-top: 88px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #080a0b;
}

body.simple-home .simple-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 44%;
  z-index: -2;
  background: url("assets/Hobart%20Mixer%20Commercial/20240808_144844.jpg") center / cover no-repeat;
  opacity: 0.64;
}

body.simple-home .simple-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #080a0b 8%, rgba(8, 10, 11, 0.96) 38%, rgba(8, 10, 11, 0.42) 72%, rgba(8, 10, 11, 0.18));
}

body.simple-home .simple-hero-inner {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
  padding-block: var(--space-3xl);
}

body.simple-home .hero-message {
  max-width: 760px;
}

body.simple-home .hero-status-row {
  margin-bottom: var(--space-lg);
}

body.simple-home .hero-status-row span {
  padding: 0.45rem 0.7rem;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.84rem;
  font-weight: 700;
}

body.simple-home .simple-hero .lead {
  max-width: 650px;
  margin-bottom: var(--space-xl);
  color: #d7dde1;
  font-size: 1.17rem;
}

body.simple-home .quick-actions,
body.simple-home .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

body.simple-home .hero-whatsapp-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

body.simple-home .hero-capability-strip {
  max-width: 760px;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body.simple-home .hero-capability-strip > div {
  min-width: 0;
  padding: 0.35rem 1rem 0.35rem 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

body.simple-home .hero-capability-strip > div + div {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

body.simple-home .hero-capability-strip > div > span {
  padding-top: 0.15rem;
  color: var(--home-yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

body.simple-home .hero-capability-strip p {
  margin: 0;
}

body.simple-home .hero-capability-strip strong,
body.simple-home .hero-capability-strip small {
  display: block;
}

body.simple-home .hero-capability-strip strong {
  color: #f5f7f8;
  font-size: 0.88rem;
  line-height: 1.3;
}

body.simple-home .hero-capability-strip small {
  margin-top: 0.22rem;
  color: #9ea8ae;
  font-size: 0.76rem;
  line-height: 1.4;
}

/* The legacy process cards are replaced by direct service routes. */
body.simple-home .simple-process {
  display: none;
}

body.simple-home .service-route-section {
  background: var(--home-paper);
  color: var(--home-ink);
}

body.simple-home .service-route-section .section-heading {
  max-width: 780px;
}

body.simple-home .service-route-section .section-heading p {
  color: var(--home-muted);
}

body.simple-home .service-route-list {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--home-line);
}

body.simple-home .service-route-list a {
  min-width: 0;
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  gap: 0.8rem;
  align-items: start;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  text-decoration: none;
}

body.simple-home .service-route-list a > span {
  padding-top: 0.2rem;
  color: #876600;
  font-size: 0.72rem;
  font-weight: 850;
}

body.simple-home .service-route-list p {
  margin: 0;
}

body.simple-home .service-route-list strong,
body.simple-home .service-route-list small {
  display: block;
}

body.simple-home .service-route-list strong {
  font-size: 1.03rem;
  line-height: 1.3;
}

body.simple-home .service-route-list small {
  margin-top: 0.3rem;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

body.simple-home .service-route-list b {
  color: #876600;
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

body.simple-home .service-route-list a:hover strong,
body.simple-home .service-route-list a:focus-visible strong {
  color: #6f5300;
}

body.simple-home .service-route-list a:hover b,
body.simple-home .service-route-list a:focus-visible b {
  transform: translateX(4px);
}

/* Services */
body.simple-home .simple-body {
  padding-block: var(--space-3xl);
  background: var(--home-black);
  color: #f4f6f7;
}

body.simple-home .simple-body-intro {
  max-width: var(--text-width);
  margin-bottom: var(--space-2xl);
}

body.simple-home .simple-body-intro p {
  color: #aeb7bd;
}

body.simple-home .simple-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

body.simple-home .simple-service-card {
  min-height: 260px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2e3438;
  border-radius: var(--radius-md);
  background: #111416;
}

body.simple-home .simple-service-card:hover,
body.simple-home .simple-service-card:focus-visible {
  border-color: #75818a;
  background: #171b1e;
}

body.simple-home .service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border: 1px solid #3b4349;
  border-radius: var(--radius-sm);
  color: var(--home-yellow);
}

body.simple-home .service-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.simple-home .service-card-number {
  margin-top: var(--space-xl);
  color: #7e8991;
  font-size: 0.72rem;
  font-weight: 800;
}

body.simple-home .simple-service-card strong {
  margin-top: var(--space-xs);
  font-size: 1.15rem;
}

body.simple-home .simple-service-card small {
  margin-top: var(--space-sm);
  color: #aeb7bd;
  line-height: 1.5;
}

/* Projects */
body.simple-home .simple-work-preview {
  padding-block: var(--space-3xl);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: var(--space-2xl);
  background: var(--home-paper);
  color: var(--home-ink);
}

body.simple-home .simple-work-preview .kicker,
body.simple-home .simple-work-preview p,
body.simple-home .work-preview-track span {
  color: var(--home-muted);
}

body.simple-home .work-preview-actions {
  margin-top: var(--space-xl);
}

body.simple-home .work-preview-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

body.simple-home .work-preview-slider {
  min-width: 0;
  overflow: hidden;
}

body.simple-home .work-preview-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

body.simple-home .work-preview-track::-webkit-scrollbar {
  display: none;
}

body.simple-home .work-preview-track a {
  flex: 0 0 min(320px, calc((100% - var(--space-md)) / 2));
  min-width: 260px;
  padding: var(--space-sm);
  display: grid;
  align-content: start;
  scroll-snap-align: start;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md);
  background: #fff;
  text-decoration: none;
}

body.simple-home .work-preview-track a:nth-child(n + 7) {
  display: grid;
}

body.simple-home .work-preview-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  object-fit: cover;
}

body.simple-home .work-preview-track strong {
  color: var(--home-ink);
}

body.simple-home .work-preview-track span {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.45;
}

body.simple-home .work-preview-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--home-ink);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

body.simple-home .work-preview-btn:hover,
body.simple-home .work-preview-btn:focus-visible {
  border-color: #8d6a00;
  color: #6f5300;
}

body.simple-home .work-preview-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

body.simple-home .work-preview-status {
  min-width: 64px;
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

/* Trust and area */
body.simple-home .home-trust {
  background: #0c1013;
  color: #f5f7f8;
}

body.simple-home .home-trust .kicker {
  color: #f2bd28;
}

body.simple-home .home-trust p {
  color: #aeb8be;
}

body.simple-home .home-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

body.simple-home .home-trust-intro h2 {
  max-width: 650px;
  color: #f5f7f8;
}

body.simple-home .home-trust-intro > p:not(.kicker) {
  max-width: 590px;
  line-height: 1.65;
}

body.simple-home .home-trust-intro > a {
  margin-top: var(--space-lg);
  display: inline-flex;
  gap: 0.55rem;
  color: #f5f7f8;
  font-weight: 800;
  text-underline-offset: 0.25em;
}

body.simple-home .home-principles {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body.simple-home .home-principles article {
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

body.simple-home .home-principles article > span {
  padding-top: 0.18rem;
  color: #f2bd28;
  font-size: 0.72rem;
  font-weight: 850;
}

body.simple-home .home-principles h3 {
  margin: 0;
  color: #f5f7f8;
  font-size: 1.02rem;
}

body.simple-home .home-principles p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

body.simple-home .home-service-area {
  background: #eef1f2;
  color: var(--home-ink);
}

body.simple-home .service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

body.simple-home .service-area-layout .section-heading {
  margin: 0;
}

body.simple-home .service-area-layout .section-heading .kicker {
  color: #765900;
}

body.simple-home .service-area-layout .section-heading h2 {
  color: #111517;
}

body.simple-home .service-area-layout .section-heading > p:not(.kicker) {
  max-width: 620px;
  color: #4d585f;
  font-size: 1rem;
  line-height: 1.65;
}

body.simple-home .service-area-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius-md);
  background: #111619;
  color: #f5f7f8;
}

body.simple-home .service-area-label {
  margin: 0 0 1rem;
  color: #f2bd28;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.simple-home .area-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body.simple-home .area-list li {
  padding: 0.85rem 0;
  color: #e2e7ea;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.simple-home .area-list li:nth-child(odd) {
  padding-right: 1rem;
}

body.simple-home .area-list li:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

body.simple-home .service-area-panel-footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

body.simple-home .service-area-panel-footer > span {
  max-width: 340px;
  color: #aeb9bf;
  font-size: 0.78rem;
  line-height: 1.5;
}

body.simple-home .service-area-panel-footer .action {
  flex: 0 0 auto;
}

/* Final CTA and dialog */
body.simple-home .simple-footer {
  padding-block: var(--space-3xl);
  display: block;
  border-top: 1px solid #2d3337;
  background: #070809;
}

body.simple-home .simple-footer-copy {
  max-width: 760px;
}

body.simple-home .simple-footer-copy > p:not(.kicker) {
  color: #adb6bc;
}

body.simple-home .simple-footer-links {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  color: #9da8af;
  font-size: 0.88rem;
}

body.simple-home .callout-dialog {
  width: min(calc(100% - 2rem), 820px);
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow-y: auto;
  border: 1px solid #343b40;
  border-radius: var(--radius-md);
  background: #0c0f11;
  color: #f4f6f7;
}

body.simple-home .callout-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(4px);
}

body.simple-home .callout-dialog-head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  border-bottom: 1px solid #2d3337;
  background: #0c0f11;
}

body.simple-home .callout-dialog-head h2 {
  margin: 0;
  font-size: 1.7rem;
}

body.simple-home .callout-dialog-head button {
  width: 42px;
  height: 42px;
  border: 1px solid #3c444a;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

body.simple-home .simple-request-form {
  width: 100%;
  padding: var(--space-lg);
  border: 0;
  background: #0c0f11;
}

body.simple-home .simple-request-form input,
body.simple-home .simple-request-form select,
body.simple-home .simple-request-form textarea {
  width: 100%;
  color: #fff;
}

@media (max-width: 1024px) {
  body.simple-home h1 {
    font-size: 3.5rem !important;
  }

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

  body.simple-home .simple-work-preview {
    grid-template-columns: 1fr;
  }

  body.simple-home .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.simple-home .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  body.simple-home .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-line);
  }
}

@media (max-width: 900px) {
  body.simple-home .simple-hero::before {
    inset: 34% 0 0;
    opacity: 0.38;
  }

  body.simple-home .simple-hero::after {
    background: linear-gradient(180deg, #080a0b 12%, rgba(8, 10, 11, 0.94) 52%, rgba(8, 10, 11, 0.46));
  }

  body.simple-home .hero-message {
    max-width: 700px;
  }

  body.simple-home h1 {
    max-width: 12ch;
    font-size: 3rem !important;
  }

  body.simple-home .hero-capability-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.simple-home .hero-capability-strip > div,
  body.simple-home .hero-capability-strip > div + div {
    padding: 0.65rem 0;
    border-left: 0;
  }

  body.simple-home .hero-capability-strip > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 760px) {
  body.simple-home .section,
  body.simple-home .simple-body,
  body.simple-home .simple-work-preview,
  body.simple-home .simple-footer {
    padding-block: 3.5rem;
  }

  body.simple-home h1 {
    max-width: 12ch;
    font-size: 2.65rem !important;
  }

  body.simple-home h2 {
    font-size: 2rem;
  }

  body.simple-home .simple-hero {
    min-height: 650px;
    padding-top: 74px;
  }

  body.simple-home .simple-hero::before {
    inset: 34% 0 0;
    opacity: 0.38;
  }

  body.simple-home .simple-hero::after {
    background: linear-gradient(180deg, #080a0b 12%, rgba(8, 10, 11, 0.94) 52%, rgba(8, 10, 11, 0.46));
  }

  body.simple-home .simple-hero-inner {
    padding-block: var(--space-2xl);
  }

  body.simple-home .hero-message,
  body.simple-home .simple-hero .lead,
  body.simple-home .quick-actions,
  body.simple-home .hero-capability-strip {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.simple-home .simple-hero .lead {
    overflow-wrap: anywhere;
  }

  body.simple-home .quick-actions .action,
  body.simple-home .footer-actions .action {
    width: 100%;
  }

  body.simple-home .hero-capability-strip {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  body.simple-home .hero-capability-strip > div,
  body.simple-home .hero-capability-strip > div + div {
    padding: 0;
    border-left: 0;
  }

  body.simple-home .service-route-list {
    grid-template-columns: 1fr;
  }

  body.simple-home .simple-service-grid,
  body.simple-home .home-trust-layout,
  body.simple-home .service-area-layout {
    grid-template-columns: 1fr;
  }

  body.simple-home .simple-service-card {
    min-height: 230px;
  }

  body.simple-home .work-preview-track a {
    flex-basis: min(82vw, 320px);
  }

  body.simple-home .home-trust-layout {
    gap: var(--space-xl);
  }

  body.simple-home .area-list {
    grid-template-columns: 1fr;
  }

  body.simple-home .area-list li,
  body.simple-home .area-list li:nth-child(odd),
  body.simple-home .area-list li:nth-child(even) {
    padding: 0.75rem 0;
    border-left: 0;
  }

  body.simple-home .service-area-panel-footer {
    display: grid;
  }

  body.simple-home .service-area-panel-footer .action {
    width: 100%;
  }

  body.simple-home .callout-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
  }
}

@media (max-width: 360px) {
  body.simple-home h1 {
    font-size: 2.35rem !important;
  }

  body.simple-home .container,
  body.simple-home .simple-process > *,
  body.simple-home .simple-body > *,
  body.simple-home .simple-work-preview > *,
  body.simple-home .simple-footer > * {
    width: min(calc(100% - 1.25rem), var(--content-width));
  }
}

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