@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&family=Roboto+Condensed:wght@500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", "Helvetica Neue", Arial, sans-serif;
  --ink: #111111;
  --soft-ink: #333333;
  --paper: #ffffff;
  --quiet: #f0f2f1;
  --muted: #555e5c;
  --line: #111111;
  --green: #00a878;
  --green-dark: #006c5b;
  --gold: #f6e54d;
  --rose: #ff4f79;
  --cyan: #00c2ff;
  --shadow: 12px 12px 0 rgba(17, 17, 17, 0.16);
}

html[data-site-style="studio"] {
  --ink: #17202a;
  --soft-ink: #2d3a44;
  --paper: #f8fbff;
  --quiet: #e7f2f4;
  --muted: #40505b;
  --line: #17202a;
  --green: #00a6a6;
  --green-dark: #006b6b;
  --gold: #ffd166;
  --rose: #ef476f;
  --cyan: #118ab2;
  --shadow: 0 18px 34px rgba(23, 32, 42, 0.18);
}

html[data-site-style="night"] {
  --ink: #f7f8f2;
  --soft-ink: #d9ddce;
  --paper: #101210;
  --quiet: #1b1f1a;
  --muted: #c0c7b8;
  --line: #f7f8f2;
  --green: #7dfc9a;
  --green-dark: #3fd56f;
  --gold: #ffd23f;
  --rose: #ff5c8a;
  --cyan: #56d8ff;
  --shadow: 0 0 0 2px rgba(86, 216, 255, 0.34), 0 16px 38px rgba(0, 0, 0, 0.45);
}

html[data-site-style="southwest"] {
  --ink: #2d1f2f;
  --soft-ink: #493848;
  --paper: #fff6e7;
  --quiet: #d9eee2;
  --muted: #675356;
  --line: #2d1f2f;
  --green: #3f8f7a;
  --green-dark: #1f6158;
  --gold: #f3b34b;
  --rose: #c85b43;
  --cyan: #169ca3;
  --shadow: 10px 10px 0 rgba(45, 31, 47, 0.18);
}

html[data-site-style="slate"] {
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --ink: #152235;
  --soft-ink: #24364d;
  --paper: #f7f9fc;
  --quiet: #eef3f8;
  --muted: #5c6b7d;
  --line: #cfdae6;
  --green: #2f5f93;
  --green-dark: #203f62;
  --gold: #d8c4a0;
  --rose: #8da0b8;
  --cyan: #3e74bf;
  --shadow: 0 20px 50px rgba(21, 34, 53, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--paper);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(0, 194, 255, 0.09) 16px 17px, transparent 17px 32px),
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(255, 79, 121, 0.08) 28px 30px, transparent 30px 58px);
}

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

a {
  color: inherit;
}

.site-header {
  --header-scroll-progress: 0;
  --header-floating-top: 18px;
  --header-floating-side: clamp(14px, 3vw, 36px);
  --header-floating-radius: 8px;
  --header-stuck-radius: 0px;
  --header-floating-padding-y: 12px;
  --header-floating-padding-x: 12px;
  --header-stuck-padding-y: 14px;
  --header-stuck-padding-x: clamp(18px, 3vw, 36px);
  position: fixed;
  top: calc(var(--header-floating-top) * (1 - var(--header-scroll-progress)));
  left: calc(var(--header-floating-side) * (1 - var(--header-scroll-progress)));
  right: calc(var(--header-floating-side) * (1 - var(--header-scroll-progress)));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding:
    calc(
      var(--header-floating-padding-y) +
      (var(--header-stuck-padding-y) - var(--header-floating-padding-y)) * var(--header-scroll-progress)
    )
    calc(
      var(--header-floating-padding-x) +
      (var(--header-stuck-padding-x) - var(--header-floating-padding-x)) * var(--header-scroll-progress)
    );
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: calc(
    var(--header-floating-radius) +
    (var(--header-stuck-radius) - var(--header-floating-radius)) * var(--header-scroll-progress)
  );
  box-shadow: 8px 8px 0 var(--gold);
  transition:
    top 180ms ease,
    left 180ms ease,
    right 180ms ease,
    padding 180ms ease,
    border-radius 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  will-change: top, left, right, padding, border-radius;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wordmark {
  width: clamp(170px, 24vw, 310px);
  max-height: 48px;
  background: transparent;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 10px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 8px;
  color: var(--paper);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  outline: none;
}

.style-switcher {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--paper);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.style-switcher:hover {
  background: var(--cyan);
}

.style-switcher:focus-visible {
  outline: 4px solid var(--rose);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 138px clamp(18px, 6vw, 80px) 62px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 112px;
  right: clamp(18px, 6vw, 80px);
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 48%, var(--ink) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, var(--ink) 48% 52%, transparent 52%),
    var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 6vw, 80px);
  right: clamp(18px, 6vw, 80px);
  bottom: 28px;
  height: 18px;
  background:
    linear-gradient(90deg, var(--rose) 0 25%, var(--cyan) 25% 50%, var(--green) 50% 75%, var(--gold) 75%);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.16);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: grayscale(1) contrast(1.25);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.18) 70%),
    linear-gradient(135deg, rgba(0, 194, 255, 0.22) 0 20%, transparent 20% 48%, rgba(255, 79, 121, 0.22) 48% 64%, transparent 64%),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.12) 0 1px, transparent 1px 6px);
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  width: min(880px, 100%);
  padding: 0;
}

.eyebrow {
  --badge-text: var(--ink);
  --badge-border: rgba(17, 17, 17, 0.82);
  --badge-glow: rgba(255, 255, 255, 0.44);
  --badge-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.08)),
    linear-gradient(120deg, #ffe98d 0%, #ffd766 42%, #fff1b8 100%);
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--badge-text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--badge-bg);
  border: 2px solid var(--badge-border);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.eyebrow::after,
.plan-label::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -32%;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--badge-glow), transparent);
  transform: rotate(18deg);
  opacity: 0.9;
  pointer-events: none;
  animation: badge-shine 4.8s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 12ch;
  font-size: 6rem;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 rgba(0, 194, 255, 0.34);
}

h2 {
  font-size: 3.45rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow),
.section-copy p,
.feature-copy p,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-content p:not(.eyebrow) {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 6px 6px 0 var(--ink);
}

.button.primary:hover {
  background: var(--gold);
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-project-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.3s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease,
    background-color 0.5s ease,
    border-color 0.5s ease;
}

.button-project-cta::before,
.button-project-cta::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: width 0.5s ease;
  z-index: -1;
}

.button-project-cta::before {
  left: -12px;
  background: var(--green);
}

.button-project-cta::after {
  right: -12px;
  background: var(--green-dark);
}

.button-project-cta span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.button-project-cta:hover,
.button-project-cta:focus-visible {
  color: var(--paper);
  border-color: var(--green-dark);
  background: var(--cyan);
}

.button-project-cta:hover::before,
.button-project-cta:hover::after,
.button-project-cta:focus-visible::before,
.button-project-cta:focus-visible::after {
  width: 58%;
}

.button-project-cta:hover span,
.button-project-cta:focus-visible span {
  color: var(--paper);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
}

.button.secondary:hover {
  background: var(--rose);
}

.button-secondary-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.3s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease,
    background-color 0.5s ease,
    border-color 0.5s ease;
}

.button-secondary-cta::before,
.button-secondary-cta::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: width 0.5s ease;
  z-index: -1;
}

.button-secondary-cta::before {
  left: -12px;
  background: rgba(255, 255, 255, 0.92);
}

.button-secondary-cta::after {
  right: -12px;
  background: var(--quiet);
}

.button-secondary-cta span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.button-secondary-cta:hover,
.button-secondary-cta:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--paper);
}

.button-secondary-cta:hover::before,
.button-secondary-cta:hover::after,
.button-secondary-cta:focus-visible::before,
.button-secondary-cta:focus-visible::after {
  width: 58%;
}

.button-secondary-cta:hover span,
.button-secondary-cta:focus-visible span {
  color: var(--ink);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: clamp(18px, 3vw, 34px);
  background: var(--ink);
}

.stat {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 32px clamp(20px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
}

.stat:nth-child(1) {
  background:
    repeating-linear-gradient(135deg, rgba(0, 194, 255, 0.24) 0 10px, transparent 10px 20px),
    var(--paper);
  transform: rotate(-1deg);
}

.stat:nth-child(2) {
  background:
    repeating-linear-gradient(90deg, rgba(246, 229, 77, 0.34) 0 12px, transparent 12px 24px),
    var(--paper);
  transform: translateY(10px);
}

.stat:nth-child(3) {
  background:
    repeating-linear-gradient(45deg, rgba(255, 79, 121, 0.2) 0 10px, transparent 10px 20px),
    var(--paper);
  transform: rotate(1deg);
}

.stat strong {
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  color: var(--soft-ink);
  font-weight: 900;
}

.split-section,
.process-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 80px);
}

.split-section,
.process-section {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1) 2px, transparent 2px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(17, 17, 17, 0.1) 2px, transparent 2px) 0 0 / 72px 72px,
    var(--quiet);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.section-copy,
.section-heading {
  position: sticky;
  top: 124px;
  padding: 0 0 0 clamp(18px, 3vw, 28px);
  border-left: 14px solid var(--cyan);
}

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

.service-card,
.process-grid article {
  position: relative;
  min-height: 230px;
  padding: 30px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.14);
  overflow: hidden;
}

.service-card::before,
.process-grid article::before {
  content: "";
  position: absolute;
  inset: auto -24px -34px auto;
  width: 124px;
  height: 124px;
  background: var(--cyan);
  border: 2px solid var(--ink);
  transform: rotate(18deg);
}

.service-card::before {
  border: 0;
  opacity: 0.5;
}

.process-grid article::before {
  border: 0;
  opacity: 0.5;
}

.service-card:nth-child(2)::before,
.process-grid article:nth-child(2)::before {
  background: var(--gold);
}

.service-card:nth-child(3)::before,
.process-grid article:nth-child(3)::before {
  background: var(--rose);
}

.service-card:nth-child(4)::before,
.process-grid article:nth-child(4)::before {
  background: var(--green);
}

.service-card > *,
.process-grid article > * {
  position: relative;
  z-index: 1;
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 30px;
}

.bio-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 36px);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.14);
}

.bio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-card p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.feature-media {
  position: relative;
  min-height: 600px;
  background: var(--gold);
  overflow: hidden;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 194, 255, 0.28) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, rgba(255, 79, 121, 0.34), transparent 54%);
  mix-blend-mode: multiply;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.4);
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(52px, 7vw, 92px);
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(0, 194, 255, 0.24) 46% 48%, transparent 48%),
    linear-gradient(45deg, transparent 0 68%, rgba(246, 229, 77, 0.24) 68% 70%, transparent 70%),
    var(--ink);
}

.feature-copy .eyebrow {
  background: var(--rose);
}

.feature-copy h2 {
  color: var(--paper);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(135deg, var(--gold) 0 50%, var(--cyan) 50%);
  border: 2px solid var(--paper);
  border-radius: 4px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
  border-left-color: var(--rose);
}

.process-section .section-heading {
  position: static;
  top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
}

.process-grid span {
  width: max-content;
  padding: 6px 10px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.testimonial-section {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: end;
  padding: clamp(36px, 6vw, 80px);
  color: var(--paper);
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.testimonial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.25)),
    repeating-linear-gradient(135deg, rgba(246, 229, 77, 0.2) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, rgba(0, 194, 255, 0.32) 0 24%, transparent 24% 58%, rgba(255, 79, 121, 0.32) 58%);
}

.testimonial-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.3);
}

blockquote {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(17, 17, 17, 0.82);
  border: 2px solid var(--paper);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--rose);
}

blockquote p {
  margin: 0 0 18px;
  color: var(--paper);
  font-size: 3rem;
  line-height: 1.12;
  text-transform: uppercase;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 88px);
  background:
    linear-gradient(90deg, var(--gold) 0 18px, transparent 18px),
    linear-gradient(0deg, rgba(0, 168, 120, 0.12), transparent 48%),
    var(--paper);
  border-top: 2px solid var(--ink);
}

.contact-section > div {
  padding-left: clamp(18px, 3vw, 28px);
  border-left: 14px solid var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 0;
  background: transparent;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 4px solid var(--gold);
  border-color: var(--cyan);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--cyan) 0 12%, var(--rose) 12% 24%, var(--green) 24% 36%, transparent 36%),
    var(--ink);
  border-top: 2px solid var(--ink);
}

.site-footer p {
  margin: 0;
}

.services-plan-link {
  width: max-content;
  margin-top: 24px;
}

.plans-page .site-header {
  box-shadow: 8px 8px 0 var(--rose);
}

.plans-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 138px clamp(18px, 6vw, 80px) 62px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.plans-hero-image,
.plans-hero-overlay {
  position: absolute;
  inset: 0;
}

.plans-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: grayscale(1) contrast(1.2);
}

.plans-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.7) 44%, rgba(17, 17, 17, 0.18)),
    repeating-linear-gradient(135deg, rgba(246, 229, 77, 0.22) 0 12px, transparent 12px 26px),
    linear-gradient(0deg, rgba(255, 79, 121, 0.34), transparent 58%);
}

.plans-hero-content {
  width: min(980px, 100%);
}

.plans-hero .eyebrow {
  background: var(--rose);
}

.plans-hero h1 {
  max-width: 12ch;
  color: var(--paper);
  text-shadow: 5px 5px 0 rgba(0, 194, 255, 0.34);
}

.plans-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.plans-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(18px, 3vw, 34px);
  background: var(--ink);
}

.plans-strip div {
  min-height: 154px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px clamp(20px, 4vw, 44px);
  background: var(--paper);
  border: 2px solid var(--ink);
}

.plans-strip div:nth-child(1) {
  background:
    repeating-linear-gradient(135deg, rgba(255, 79, 121, 0.18) 0 10px, transparent 10px 20px),
    var(--paper);
  transform: rotate(-1deg);
}

.plans-strip div:nth-child(2) {
  background:
    repeating-linear-gradient(90deg, rgba(0, 194, 255, 0.2) 0 12px, transparent 12px 24px),
    var(--paper);
  transform: translateY(10px);
}

.plans-strip div:nth-child(3) {
  background:
    repeating-linear-gradient(45deg, rgba(246, 229, 77, 0.34) 0 10px, transparent 10px 20px),
    var(--paper);
  transform: rotate(1deg);
}

.plans-strip strong {
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.plans-strip span {
  color: var(--muted);
  font-weight: 900;
}

.plans-section,
.plans-faq {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1) 2px, transparent 2px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(17, 17, 17, 0.1) 2px, transparent 2px) 0 0 / 72px 72px,
    var(--quiet);
}

.plans-heading {
  position: static;
  max-width: 920px;
  margin-bottom: 38px;
  border-left-color: var(--cyan);
}

.plans-heading p:not(.eyebrow),
.plans-faq .section-heading + .faq-grid p {
  color: var(--muted);
}

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

.plan-card {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.14);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -34px;
  width: 150px;
  height: 150px;
  background: var(--cyan);
  transform: rotate(18deg);
  opacity: 0.46;
}

.plan-card:nth-child(1)::before {
  background: var(--gold);
}

.plan-card:nth-child(3)::before {
  background: var(--green);
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.featured-plan {
  background:
    linear-gradient(135deg, rgba(0, 194, 255, 0.13), transparent 52%),
    var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--rose);
}

.plan-label {
  --badge-text: var(--paper);
  --badge-border: rgba(17, 17, 17, 0.82);
  --badge-glow: rgba(255, 255, 255, 0.26);
  --badge-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, #111111 0%, #213445 52%, #3f657f 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: max-content;
  padding: 6px 10px;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 2px solid var(--badge-border);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(17, 17, 17, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes badge-shine {
  0%,
  18% {
    left: -32%;
    opacity: 0;
  }

  30%,
  62% {
    opacity: 0.9;
  }

  82%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

.plan-price {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: var(--soft-ink);
  font-weight: 700;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(135deg, var(--gold) 0 50%, var(--cyan) 50%);
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.plan-card .button {
  align-self: end;
  margin-top: 8px;
}

.plan-card-actions,
.plan-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-card-actions .button {
  margin-top: 0;
}

.plan-modal {
  width: min(900px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
}

.plan-modal::backdrop {
  background:
    linear-gradient(135deg, rgba(0, 194, 255, 0.18), rgba(255, 79, 121, 0.18)),
    rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(9px);
}

.plan-modal-panel {
  position: relative;
  display: grid;
  gap: 18px;
  max-height: min(760px, calc(100vh - 32px));
  padding: clamp(24px, 4vw, 42px);
  overflow: auto;
  background:
    linear-gradient(90deg, var(--cyan) 0 10px, transparent 10px),
    linear-gradient(135deg, rgba(246, 229, 77, 0.18), transparent 50%),
    var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 14px 0 var(--gold);
}

.plan-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.plan-modal h2 {
  max-width: 10ch;
  padding-right: 48px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.plan-modal h3 {
  font-size: 1.1rem;
}

.plan-modal p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.plan-modal-price {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
}

.plan-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0;
}

.plan-modal-grid div {
  padding: 20px;
  background: var(--quiet);
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
}

.plan-modal-grid ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.plan-modal-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--soft-ink);
  font-weight: 600;
}

.plan-modal-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.addons-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 5vw, 68px);
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 80px);
  color: var(--paper);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(0, 194, 255, 0.24) 48% 50%, transparent 50%),
    linear-gradient(45deg, transparent 0 72%, rgba(246, 229, 77, 0.24) 72% 74%, transparent 74%),
    var(--ink);
}

.addons-section > div:first-child {
  padding-left: clamp(18px, 3vw, 28px);
  border-left: 14px solid var(--rose);
}

.addons-section h2,
.plans-cta h2 {
  color: var(--paper);
}

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

.addons-grid article,
.faq-grid details {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(255, 79, 121, 0.28);
}

.addons-grid h3,
.faq-grid summary {
  color: var(--ink);
}

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

.faq-grid details {
  min-height: 0;
}

.faq-grid summary {
  position: relative;
  display: block;
  padding-right: 34px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  padding-top: 2px;
}

.faq-grid details:hover,
.faq-grid details:focus-within {
  border-color: var(--cyan);
}

.faq-grid summary:focus-visible {
  outline: none;
}

.plans-faq .section-heading {
  position: static;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.plans-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 90px) clamp(20px, 6vw, 80px);
  color: var(--paper);
  background:
    linear-gradient(90deg, var(--cyan) 0 16px, transparent 16px),
    var(--ink);
}

.plans-cta div {
  max-width: 820px;
}

.plans-cta .eyebrow {
  background: var(--green);
}

.plans-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.examples-page .site-header {
  box-shadow: 8px 8px 0 var(--green);
}

.examples-intro {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 138px clamp(18px, 6vw, 80px) 58px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.examples-hero-image,
.examples-hero-overlay {
  position: absolute;
  inset: 0;
}

.examples-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: contrast(1.08) saturate(1.02);
}

.examples-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.62) 46%, rgba(17, 17, 17, 0.08)),
    repeating-linear-gradient(135deg, rgba(0, 194, 255, 0.22) 0 10px, transparent 10px 24px),
    linear-gradient(0deg, rgba(0, 168, 120, 0.42), transparent 55%);
}

.examples-intro-content {
  width: min(980px, 100%);
  position: relative;
  z-index: 1;
}

.examples-intro .eyebrow {
  background: var(--green);
}

.examples-intro h1 {
  max-width: 13ch;
  color: var(--paper);
  text-shadow: 5px 5px 0 rgba(0, 194, 255, 0.34);
}

.examples-intro p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.examples-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(32px, 5vw, 70px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(0, 168, 120, 0.12) 0 16px, transparent 16px),
    var(--quiet);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.example-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.14);
}

.example-summary span {
  width: max-content;
  padding: 6px 10px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.example-summary h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--ink);
  overflow-wrap: anywhere;
}

.example-summary p {
  margin: 0;
  color: var(--muted);
}

.example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.example-summary.coming-soon {
  background:
    repeating-linear-gradient(135deg, rgba(0, 194, 255, 0.16) 0 12px, transparent 12px 24px),
    var(--paper);
}

.paper-garden-summary {
  background:
    radial-gradient(circle at top left, rgba(246, 229, 77, 0.24), transparent 42%),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.07) 0 1px, transparent 1px 32px),
    #fcfbf7;
}

.paper-garden-summary h2 {
  max-width: 8ch;
}

.mesa-concept {
  --mesa-cream: #f5f8e4;
  --mesa-teal: #719f9f;
  --mesa-orange: #ed8b22;
  --mesa-burgundy: #663434;
  --mesa-brown: #826640;
  --mesa-cream-rgb: 245, 248, 228;
  --mesa-teal-rgb: 113, 159, 159;
  --mesa-orange-rgb: 237, 139, 34;
  --mesa-burgundy-rgb: 102, 52, 52;
  --mesa-brown-rgb: 130, 102, 64;
  padding: clamp(52px, 7vw, 92px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(var(--mesa-teal-rgb), 0.2) 2px, transparent 2px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(var(--mesa-teal-rgb), 0.2) 2px, transparent 2px) 0 0 / 64px 64px,
    var(--mesa-cream);
}

.mesa-shell {
  max-width: 1440px;
  margin: 0 auto;
  color: var(--mesa-burgundy);
  background: var(--mesa-cream);
  border: 2px solid var(--mesa-burgundy);
}

.mesa-site-page {
  background: #f5f8e4;
}

.mesa-site-page .mesa-concept {
  min-height: 100vh;
  padding: 0;
}

.mesa-site-page .mesa-shell {
  max-width: none;
  border: 0;
}

.mesa-site-page .mesa-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
}

.mesa-topbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 42px);
  border-bottom: 2px solid var(--mesa-burgundy);
  background: var(--mesa-cream);
}

.mesa-logo img {
  max-height: 54px;
  object-fit: contain;
}

.mesa-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.mesa-nav a,
.mesa-call {
  padding: 9px 11px;
  color: var(--mesa-burgundy);
  border: 2px solid var(--mesa-burgundy);
  border-radius: 8px;
  text-decoration: none;
  background: var(--mesa-cream);
}

.mesa-nav a:hover,
.mesa-call:hover {
  background: var(--mesa-orange);
  color: var(--mesa-cream);
}

.mesa-call {
  font-weight: 900;
}

.mesa-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.mesa-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.05);
}

.mesa-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--mesa-burgundy-rgb), 0.82), rgba(var(--mesa-burgundy-rgb), 0.18) 65%),
    linear-gradient(0deg, rgba(var(--mesa-teal-rgb), 0.48), transparent 48%);
}

.mesa-hero-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(28px, 6vw, 76px) clamp(18px, 5vw, 70px);
  padding: clamp(24px, 4vw, 42px);
  color: var(--mesa-cream);
  background: rgba(var(--mesa-burgundy-rgb), 0.9);
  border: 2px solid var(--mesa-cream);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--mesa-teal);
}

.mesa-kicker {
  margin: 0 0 12px;
  color: var(--mesa-orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mesa-hero-panel .mesa-kicker,
.mesa-contact .mesa-kicker {
  color: var(--mesa-orange);
}

.mesa-hero-panel h1,
.mesa-hero-panel h2,
.mesa-section-heading h2,
.mesa-section-heading h3,
.mesa-agents h2,
.mesa-agents h3,
.mesa-contact h2,
.mesa-contact h3 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mesa-hero-panel h1,
.mesa-hero-panel h2 {
  max-width: 12ch;
  color: var(--mesa-cream);
  font-size: 4.8rem;
}

.mesa-hero-panel p:not(.mesa-kicker) {
  max-width: 620px;
  color: rgba(var(--mesa-cream-rgb), 0.86);
  font-size: 1.08rem;
}

.mesa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mesa-button,
.mesa-search a,
.mesa-contact-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  color: var(--mesa-burgundy);
  background: var(--mesa-cream);
  border: 2px solid var(--mesa-burgundy);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.mesa-button-main,
.mesa-search a {
  color: var(--mesa-cream);
  background: var(--mesa-orange);
  box-shadow: 5px 5px 0 var(--mesa-burgundy);
}

.mesa-hero-panel .mesa-button {
  border-color: var(--mesa-cream);
}

.mesa-hero-panel .mesa-button-main {
  border-color: var(--mesa-burgundy);
}

.mesa-search {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--mesa-burgundy);
  border-bottom: 2px solid var(--mesa-burgundy);
  background: var(--mesa-burgundy);
}

.mesa-search div,
.mesa-search a {
  min-height: 126px;
}

.mesa-search div {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  background: var(--mesa-cream);
  border-right: 2px solid var(--mesa-burgundy);
}

.mesa-search span,
.mesa-listing-card span {
  color: var(--mesa-brown);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mesa-search strong {
  font-size: 1.05rem;
}

.mesa-search a {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mesa-data-stats {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 70px);
  color: var(--mesa-cream);
  background:
    linear-gradient(90deg, rgba(var(--mesa-orange-rgb), 0.2) 0 16px, transparent 16px),
    radial-gradient(circle at 82% 20%, rgba(var(--mesa-teal-rgb), 0.32), transparent 28%),
    linear-gradient(135deg, rgba(var(--mesa-orange-rgb), 0.2), transparent 54%),
    var(--mesa-burgundy);
  border-bottom: 2px solid var(--mesa-burgundy);
  overflow: hidden;
}

.mesa-data-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
}

.mesa-data-copy::after {
  content: "";
  width: min(260px, 54vw);
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--mesa-orange) 0 18px, var(--mesa-teal) 18px 36px, transparent 36px 54px);
}

.mesa-data-copy h2,
.mesa-data-copy h3 {
  margin: 0;
  color: var(--mesa-cream);
  font-size: clamp(2.35rem, 5vw, 5.15rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.mesa-data-copy p:not(.mesa-kicker) {
  max-width: 540px;
  margin: 0;
  color: rgba(var(--mesa-cream-rgb), 0.82);
  font-size: 1.08rem;
}

.mesa-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mesa-stat-grid article {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: var(--mesa-burgundy);
  background: var(--mesa-cream);
  border: 2px solid rgba(var(--mesa-cream-rgb), 0.44);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(var(--mesa-teal-rgb), 0.55);
}

.mesa-stat-grid article::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, transparent 47%, rgba(var(--mesa-orange-rgb), 0.62) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(var(--mesa-teal-rgb), 0.62) 47% 53%, transparent 53%),
    rgba(var(--mesa-teal-rgb), 0.16);
  border-radius: 8px;
  opacity: 0.9;
  transform: rotate(45deg);
}

.mesa-stat-grid article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 8px;
  background:
    linear-gradient(90deg, var(--mesa-orange), var(--mesa-teal)),
    rgba(var(--mesa-burgundy-rgb), 0.1);
  border-radius: 8px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.mesa-stat-grid article.is-counted::after {
  transform: scaleX(1);
}

.mesa-stat-grid article > span:first-child {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  color: var(--mesa-brown);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.mesa-stat-grid strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  align-self: center;
  color: var(--mesa-burgundy);
  font-size: clamp(4.25rem, 7.4vw, 6.8rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.mesa-stat-grid strong span {
  font: inherit;
  color: inherit;
  line-height: inherit;
}

.mesa-stat-grid small {
  position: relative;
  z-index: 1;
  color: var(--mesa-brown);
  font-weight: 900;
  text-transform: uppercase;
}

.mesa-listing-carousel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  min-height: 560px;
  color: var(--mesa-cream);
  background: var(--mesa-burgundy);
  border-bottom: 2px solid var(--mesa-burgundy);
}

.mesa-carousel-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(var(--mesa-orange-rgb), 0.24) 0 14px, transparent 14px),
    linear-gradient(135deg, rgba(var(--mesa-teal-rgb), 0.22), transparent 58%),
    var(--mesa-burgundy);
}

.mesa-carousel-copy h2,
.mesa-carousel-copy h3 {
  margin: 0;
  color: var(--mesa-cream);
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.mesa-carousel-copy p:not(.mesa-kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(var(--mesa-cream-rgb), 0.82);
  font-size: 1.08rem;
}

.mesa-carousel-stage {
  position: relative;
  --mesa-carousel-caption-height: clamp(142px, 17vw, 176px);
  min-height: clamp(560px, 62vw, 720px);
  overflow: hidden;
  background: var(--mesa-burgundy);
}

.mesa-carousel-slides,
.mesa-carousel-slide {
  position: absolute;
  inset: 0;
}

.mesa-carousel-slide {
  display: grid;
  grid-template-rows: minmax(0, 1fr) var(--mesa-carousel-caption-height);
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.mesa-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mesa-carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.02);
}

.mesa-carousel-slide::after {
  content: none;
}

.mesa-carousel-caption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 22px;
  align-content: center;
  align-items: center;
  width: 100%;
  min-height: var(--mesa-carousel-caption-height);
  padding: clamp(18px, 3vw, 30px) clamp(20px, 4vw, 44px);
  color: var(--mesa-cream);
  background:
    linear-gradient(90deg, rgba(var(--mesa-orange-rgb), 0.22) 0 12px, transparent 12px),
    var(--mesa-burgundy);
  border-top: 2px solid var(--mesa-cream);
}

.mesa-carousel-caption span {
  color: var(--mesa-orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mesa-carousel-caption h3,
.mesa-carousel-caption h4 {
  margin: 0;
  color: var(--mesa-cream);
  font-size: clamp(1.18rem, 2.1vw, 1.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.mesa-carousel-caption p {
  margin: 0;
  color: rgba(var(--mesa-cream-rgb), 0.8);
  font-size: 0.95rem;
}

.mesa-carousel-caption a {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: max-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 10px 14px;
  color: var(--mesa-burgundy);
  background: var(--mesa-cream);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.mesa-carousel-control {
  position: absolute;
  top: calc((100% - var(--mesa-carousel-caption-height)) / 2);
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--mesa-burgundy);
  background: var(--mesa-cream);
  border: 2px solid var(--mesa-burgundy);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(var(--mesa-burgundy-rgb), 0.42);
  cursor: pointer;
  font: inherit;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.mesa-carousel-control:hover,
.mesa-carousel-control:focus-visible {
  background: var(--mesa-orange);
}

.mesa-carousel-prev {
  left: 16px;
}

.mesa-carousel-next {
  right: 16px;
}

.mesa-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--mesa-burgundy);
}

.mesa-proof article {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--mesa-cream);
  border-right: 2px solid rgba(var(--mesa-cream-rgb), 0.2);
}

.mesa-proof strong {
  color: var(--mesa-orange);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.mesa-proof span {
  color: rgba(var(--mesa-cream-rgb), 0.78);
}

.mesa-listings,
.mesa-communities,
.mesa-agents,
.mesa-contact {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 70px);
}

.mesa-listings {
  background: var(--mesa-cream);
}

.mesa-section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
  padding-left: 22px;
  border-left: 12px solid var(--mesa-orange);
}

.mesa-section-heading h2,
.mesa-section-heading h3,
.mesa-agents h2,
.mesa-agents h3,
.mesa-contact h2,
.mesa-contact h3 {
  font-size: 2.7rem;
}

.mesa-section-heading p:not(.mesa-kicker),
.mesa-agents p,
.mesa-contact p {
  margin: 0;
  color: var(--mesa-brown);
}

.mesa-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mesa-listing-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--mesa-cream);
  border: 2px solid var(--mesa-burgundy);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(var(--mesa-teal-rgb), 0.42);
}

.mesa-listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mesa-listing-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.mesa-listing-card h4 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.mesa-listing-card p {
  margin: 0;
  color: var(--mesa-brown);
}

.mesa-communities {
  background:
    repeating-linear-gradient(90deg, rgba(var(--mesa-orange-rgb), 0.18) 0 12px, transparent 12px 24px),
    rgba(var(--mesa-teal-rgb), 0.18);
  border-top: 2px solid var(--mesa-burgundy);
  border-bottom: 2px solid var(--mesa-burgundy);
}

.mesa-community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mesa-community-grid a {
  min-height: 154px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--mesa-burgundy);
  background: var(--mesa-cream);
  border: 2px solid var(--mesa-burgundy);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 rgba(var(--mesa-brown-rgb), 0.28);
}

.mesa-community-grid a:hover {
  color: var(--mesa-cream);
  background: var(--mesa-teal);
}

.mesa-agents {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  background: var(--mesa-cream);
}

.mesa-agents img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 2px solid var(--mesa-burgundy);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--mesa-teal);
}

.mesa-agents div {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.mesa-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.78fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  color: var(--mesa-cream);
  background:
    linear-gradient(90deg, var(--mesa-orange) 0 16px, transparent 16px),
    var(--mesa-burgundy);
}

.mesa-contact h2,
.mesa-contact h3 {
  color: var(--mesa-cream);
}

.mesa-contact p {
  color: rgba(var(--mesa-cream-rgb), 0.78);
}

.mesa-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mesa-contact-actions a {
  white-space: nowrap;
}

.mesa-contact-actions a[href^="mailto:"] {
  grid-column: 1 / -1;
}

.mesa-contact-actions span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 11px 16px;
  color: var(--mesa-cream);
  border: 2px solid rgba(var(--mesa-cream-rgb), 0.36);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

html[data-site-style="studio"] body {
  background:
    linear-gradient(90deg, rgba(17, 138, 178, 0.12) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(239, 71, 111, 0.08) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  font-family: var(--font-body);
}

html[data-site-style="studio"] body::before {
  background:
    linear-gradient(135deg, transparent 0 70%, rgba(255, 209, 102, 0.18) 70% 72%, transparent 72%),
    linear-gradient(45deg, transparent 0 56%, rgba(0, 166, 166, 0.14) 56% 58%, transparent 58%);
}

html[data-site-style="studio"] .site-header {
  color: var(--ink);
  background: rgba(248, 251, 255, 0.95);
  border-color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

html[data-site-style="studio"] .brand-mark {
  border-color: var(--ink);
}

html[data-site-style="studio"] .nav a {
  color: var(--ink);
  border-color: rgba(23, 32, 42, 0.2);
}

html[data-site-style="studio"] .nav-toggle {
  color: var(--ink);
  border-color: rgba(23, 32, 42, 0.25);
}

html[data-site-style="studio"] .style-switcher {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

html[data-site-style="studio"] h1,
html[data-site-style="studio"] h2,
html[data-site-style="studio"] h3 {
  text-transform: none;
  line-height: 1.05;
  text-shadow: none;
}

html[data-site-style="studio"] .hero::before,
html[data-site-style="studio"] .hero::after {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

html[data-site-style="studio"] .hero::before {
  top: 124px;
  right: clamp(20px, 7vw, 96px);
  width: min(34vw, 430px);
  height: min(25vw, 310px);
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.82) 18px, transparent 18px),
    linear-gradient(0deg, rgba(248, 251, 255, 0.58) 12px, transparent 12px),
    linear-gradient(135deg, rgba(255, 209, 102, 0.92), rgba(0, 166, 166, 0.62));
  border: 1px solid rgba(23, 32, 42, 0.16);
  clip-path: polygon(0 10%, 86% 0, 100% 18%, 92% 92%, 10% 100%, 0 82%);
  opacity: 0.86;
  transform: rotate(2deg);
}

html[data-site-style="studio"] .hero::after {
  height: 10px;
  background:
    linear-gradient(90deg, var(--cyan) 0 34%, var(--green) 34% 68%, var(--rose) 68%);
  border: 0;
}

html[data-site-style="studio"] .service-card::before,
html[data-site-style="studio"] .process-grid article::before,
html[data-site-style="studio"] .plan-card::before {
  inset: auto 22px 22px auto;
  width: 86px;
  height: 10px;
  background: var(--cyan);
  border-radius: 8px;
  opacity: 0.8;
  transform: none;
}

html[data-site-style="studio"] .service-card:nth-child(2)::before,
html[data-site-style="studio"] .process-grid article:nth-child(2)::before {
  background: var(--gold);
}

html[data-site-style="studio"] .service-card:nth-child(3)::before,
html[data-site-style="studio"] .process-grid article:nth-child(3)::before {
  background: var(--rose);
}

html[data-site-style="studio"] .service-card:nth-child(4)::before,
html[data-site-style="studio"] .process-grid article:nth-child(4)::before {
  background: var(--green);
}

html[data-site-style="studio"] .feature-media::after,
html[data-site-style="studio"] .testimonial-section::after {
  background:
    linear-gradient(135deg, rgba(17, 138, 178, 0.34), transparent 54%),
    linear-gradient(45deg, transparent 0 64%, rgba(255, 209, 102, 0.32) 64% 66%, transparent 66%);
  mix-blend-mode: multiply;
}

html[data-site-style="studio"] .hero-image,
html[data-site-style="studio"] .feature-media img,
html[data-site-style="studio"] .testimonial-section img,
html[data-site-style="studio"] .plans-hero-image {
  filter: saturate(0.95) contrast(1.08);
}

html[data-site-style="studio"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.88) 44%, rgba(248, 251, 255, 0.2) 78%),
    linear-gradient(135deg, rgba(17, 138, 178, 0.14), transparent 54%);
}

html[data-site-style="studio"] .plans-hero-overlay,
html[data-site-style="studio"] .examples-hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 32, 42, 0.9), rgba(23, 32, 42, 0.54) 54%, rgba(23, 32, 42, 0.08)),
    linear-gradient(135deg, rgba(17, 138, 178, 0.26), rgba(239, 71, 111, 0.16));
}

html[data-site-style="studio"] .service-card,
html[data-site-style="studio"] .process-grid article,
html[data-site-style="studio"] .example-summary,
html[data-site-style="studio"] .plan-card,
html[data-site-style="studio"] .addons-grid article,
html[data-site-style="studio"] .faq-grid details,
html[data-site-style="studio"] .stat,
html[data-site-style="studio"] .plans-strip div {
  border-color: rgba(23, 32, 42, 0.3);
  box-shadow: var(--shadow);
}

html[data-site-style="studio"] .button.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--cyan);
}

html[data-site-style="studio"] .button.secondary {
  background: var(--paper);
}

html[data-site-style="studio"] .feature-band,
html[data-site-style="studio"] .addons-section,
html[data-site-style="studio"] .plans-cta {
  background:
    linear-gradient(135deg, rgba(17, 138, 178, 0.22), transparent 52%),
    var(--ink);
}

html[data-site-style="studio"] blockquote {
  background: rgba(23, 32, 42, 0.86);
  box-shadow: var(--shadow);
}

html[data-site-style="night"] body {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 92, 138, 0.22), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(86, 216, 255, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(247, 248, 242, 0.06) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(247, 248, 242, 0.06) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--paper);
}

html[data-site-style="night"] body::before {
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(125, 252, 154, 0.12) 18px 20px, transparent 20px 38px),
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255, 210, 63, 0.1) 30px 32px, transparent 32px 62px);
}

html[data-site-style="night"] .site-header {
  color: var(--ink);
  background: rgba(16, 18, 16, 0.94);
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(86, 216, 255, 0.26), 0 0 28px rgba(86, 216, 255, 0.18);
}

html[data-site-style="night"] .brand-mark {
  border-color: var(--cyan);
}

html[data-site-style="night"] .nav a {
  color: var(--ink);
  border-color: rgba(247, 248, 242, 0.32);
}

html[data-site-style="night"] .nav-toggle {
  color: var(--ink);
  border-color: rgba(247, 248, 242, 0.28);
}

html[data-site-style="night"] .nav a:hover,
html[data-site-style="night"] .style-switcher:hover {
  color: #101210;
}

html[data-site-style="night"] .style-switcher {
  color: #101210;
  background: var(--green);
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(125, 252, 154, 0.34);
}

html[data-site-style="night"] h1,
html[data-site-style="night"] h2,
html[data-site-style="night"] h3 {
  text-shadow: 4px 4px 0 rgba(255, 92, 138, 0.4);
}

html[data-site-style="night"] .hero::before {
  top: 132px;
  right: clamp(18px, 6vw, 80px);
  width: min(34vw, 390px);
  height: min(34vw, 390px);
  background:
    repeating-linear-gradient(90deg, rgba(86, 216, 255, 0.48) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(0deg, rgba(125, 252, 154, 0.32) 0 2px, transparent 2px 18px),
    rgba(16, 18, 16, 0.82);
  border: 2px solid var(--cyan);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 36px rgba(86, 216, 255, 0.36);
}

html[data-site-style="night"] .hero::after {
  height: 12px;
  background:
    repeating-linear-gradient(90deg, var(--green) 0 18px, var(--cyan) 18px 36px, var(--rose) 36px 54px, var(--gold) 54px 72px);
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(86, 216, 255, 0.44);
}

html[data-site-style="night"] .service-card::before,
html[data-site-style="night"] .process-grid article::before,
html[data-site-style="night"] .plan-card::before {
  inset: auto -18px -24px auto;
  width: 132px;
  height: 132px;
  background:
    linear-gradient(90deg, transparent 47%, var(--cyan) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--green) 47% 53%, transparent 53%),
    rgba(86, 216, 255, 0.12);
  border: 2px solid rgba(86, 216, 255, 0.56);
  opacity: 0.72;
  transform: rotate(45deg);
  box-shadow: 0 0 22px rgba(86, 216, 255, 0.26);
}

html[data-site-style="night"] .service-card:nth-child(2)::before,
html[data-site-style="night"] .process-grid article:nth-child(2)::before {
  background:
    linear-gradient(90deg, transparent 47%, var(--gold) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--cyan) 47% 53%, transparent 53%),
    rgba(255, 210, 63, 0.12);
  border-color: rgba(255, 210, 63, 0.58);
}

html[data-site-style="night"] .service-card:nth-child(3)::before,
html[data-site-style="night"] .process-grid article:nth-child(3)::before {
  background:
    linear-gradient(90deg, transparent 47%, var(--rose) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--cyan) 47% 53%, transparent 53%),
    rgba(255, 92, 138, 0.12);
  border-color: rgba(255, 92, 138, 0.58);
}

html[data-site-style="night"] .service-card:nth-child(4)::before,
html[data-site-style="night"] .process-grid article:nth-child(4)::before {
  background:
    linear-gradient(90deg, transparent 47%, var(--green) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--gold) 47% 53%, transparent 53%),
    rgba(125, 252, 154, 0.12);
  border-color: rgba(125, 252, 154, 0.58);
}

html[data-site-style="night"] .feature-media::after,
html[data-site-style="night"] .testimonial-section::after {
  background:
    linear-gradient(0deg, rgba(16, 18, 16, 0.9), rgba(16, 18, 16, 0.25)),
    repeating-linear-gradient(90deg, rgba(86, 216, 255, 0.22) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(0deg, rgba(255, 92, 138, 0.14) 0 2px, transparent 2px 18px);
  mix-blend-mode: screen;
}

html[data-site-style="night"] .hero-image,
html[data-site-style="night"] .feature-media img,
html[data-site-style="night"] .testimonial-section img,
html[data-site-style="night"] .plans-hero-image,
html[data-site-style="night"] .examples-hero-image {
  filter: grayscale(1) contrast(1.45) brightness(0.72);
}

html[data-site-style="night"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 18, 16, 0.98) 0%, rgba(16, 18, 16, 0.78) 44%, rgba(16, 18, 16, 0.22) 78%),
    repeating-linear-gradient(0deg, rgba(86, 216, 255, 0.12) 0 1px, transparent 1px 7px);
}

html[data-site-style="night"] .plans-hero-overlay,
html[data-site-style="night"] .examples-hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 18, 16, 0.94), rgba(16, 18, 16, 0.64) 48%, rgba(16, 18, 16, 0.14)),
    repeating-linear-gradient(135deg, rgba(86, 216, 255, 0.18) 0 10px, transparent 10px 24px),
    linear-gradient(0deg, rgba(255, 92, 138, 0.22), transparent 58%);
}

html[data-site-style="night"] .service-card,
html[data-site-style="night"] .process-grid article,
html[data-site-style="night"] .example-summary,
html[data-site-style="night"] .plan-card,
html[data-site-style="night"] .addons-grid article,
html[data-site-style="night"] .faq-grid details,
html[data-site-style="night"] .stat,
html[data-site-style="night"] .plans-strip div,
html[data-site-style="night"] input,
html[data-site-style="night"] textarea {
  background: #171a16;
  border-color: rgba(86, 216, 255, 0.58);
  box-shadow: var(--shadow);
}

html[data-site-style="night"] .split-section,
html[data-site-style="night"] .process-section,
html[data-site-style="night"] .plans-section,
html[data-site-style="night"] .plans-faq,
html[data-site-style="night"] .examples-overview,
html[data-site-style="night"] .contact-section {
  background:
    linear-gradient(90deg, rgba(86, 216, 255, 0.08) 2px, transparent 2px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 210, 63, 0.06) 2px, transparent 2px) 0 0 / 72px 72px,
    var(--quiet);
}

html[data-site-style="night"] .button.primary {
  color: #101210;
  background: var(--green);
  border-color: var(--cyan);
  box-shadow: 6px 6px 0 var(--rose);
}

html[data-site-style="night"] .button.secondary {
  color: var(--ink);
  background: #171a16;
  border-color: var(--cyan);
}

html[data-site-style="night"] .feature-band,
html[data-site-style="night"] .addons-section,
html[data-site-style="night"] .plans-cta,
html[data-site-style="night"] .stats-section,
html[data-site-style="night"] .plans-strip,
html[data-site-style="night"] .site-footer {
  background:
    linear-gradient(135deg, rgba(86, 216, 255, 0.12), transparent 54%),
    var(--paper);
}

html[data-site-style="night"] .plans-hero h1,
html[data-site-style="night"] .examples-intro h1,
html[data-site-style="night"] .feature-copy h2,
html[data-site-style="night"] .addons-section h2,
html[data-site-style="night"] .plans-cta h2,
html[data-site-style="night"] .site-footer,
html[data-site-style="night"] blockquote p {
  color: var(--ink);
}

html[data-site-style="night"] blockquote {
  background: rgba(16, 18, 16, 0.9);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

html[data-site-style="southwest"] body {
  background:
    linear-gradient(90deg, rgba(45, 31, 47, 0.08) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(0deg, rgba(22, 156, 163, 0.08) 1px, transparent 1px) 0 0 / 68px 68px,
    radial-gradient(circle at 16% 12%, rgba(243, 179, 75, 0.22), transparent 28%),
    var(--paper);
}

html[data-site-style="southwest"] body::before {
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(200, 91, 67, 0.12) 22px 24px, transparent 24px 54px),
    repeating-linear-gradient(45deg, transparent 0 34px, rgba(63, 143, 122, 0.12) 34px 36px, transparent 36px 78px);
}

html[data-site-style="southwest"] .site-header {
  color: var(--paper);
  background: rgba(45, 31, 47, 0.96);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--cyan);
}

html[data-site-style="southwest"] .brand-mark {
  border-color: var(--gold);
}

html[data-site-style="southwest"] .nav a {
  color: var(--paper);
  border-color: rgba(255, 246, 231, 0.34);
}

html[data-site-style="southwest"] .nav-toggle {
  color: var(--paper);
  border-color: rgba(255, 246, 231, 0.28);
}

html[data-site-style="southwest"] .nav a:hover,
html[data-site-style="southwest"] .style-switcher:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

html[data-site-style="southwest"] .style-switcher {
  color: var(--paper);
  background: var(--rose);
  border-color: var(--gold);
  box-shadow: 4px 4px 0 rgba(243, 179, 75, 0.58);
}

html[data-site-style="southwest"] h1,
html[data-site-style="southwest"] h2,
html[data-site-style="southwest"] h3 {
  text-shadow: 4px 4px 0 rgba(243, 179, 75, 0.32);
}

html[data-site-style="southwest"] .hero::before {
  top: 118px;
  right: clamp(18px, 6vw, 80px);
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 246, 231, 0.7) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 246, 231, 0.52) 47% 53%, transparent 53%),
    linear-gradient(135deg, var(--gold), var(--rose) 54%, var(--cyan));
  border: 2px solid rgba(45, 31, 47, 0.72);
  clip-path: polygon(50% 0, 100% 28%, 86% 100%, 14% 100%, 0 28%);
  box-shadow: var(--shadow);
  opacity: 0.88;
  transform: rotate(8deg);
}

html[data-site-style="southwest"] .hero::after {
  height: 14px;
  background:
    repeating-linear-gradient(90deg, var(--rose) 0 22px, var(--gold) 22px 44px, var(--cyan) 44px 66px, var(--green) 66px 88px);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 rgba(45, 31, 47, 0.14);
}

html[data-site-style="southwest"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 246, 231, 0.98) 0%, rgba(255, 246, 231, 0.9) 42%, rgba(255, 246, 231, 0.18) 76%),
    linear-gradient(135deg, rgba(22, 156, 163, 0.18), transparent 48%, rgba(200, 91, 67, 0.16) 48% 66%, transparent 66%);
}

html[data-site-style="southwest"] .hero-image,
html[data-site-style="southwest"] .feature-media img,
html[data-site-style="southwest"] .testimonial-section img,
html[data-site-style="southwest"] .plans-hero-image,
html[data-site-style="southwest"] .examples-hero-image {
  filter: saturate(0.86) contrast(1.08) sepia(0.14);
}

html[data-site-style="southwest"] .eyebrow,
html[data-site-style="southwest"] .example-summary span,
html[data-site-style="southwest"] .plan-label {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--ink);
}

html[data-site-style="southwest"] .service-card::before,
html[data-site-style="southwest"] .process-grid article::before,
html[data-site-style="southwest"] .plan-card::before {
  background:
    linear-gradient(90deg, transparent 46%, var(--cyan) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, var(--gold) 46% 54%, transparent 54%),
    rgba(200, 91, 67, 0.18);
  opacity: 0.86;
  transform: rotate(45deg);
}

html[data-site-style="southwest"] .service-card,
html[data-site-style="southwest"] .process-grid article,
html[data-site-style="southwest"] .example-summary,
html[data-site-style="southwest"] .plan-card,
html[data-site-style="southwest"] .addons-grid article,
html[data-site-style="southwest"] .faq-grid details,
html[data-site-style="southwest"] .stat,
html[data-site-style="southwest"] .plans-strip div,
html[data-site-style="southwest"] input,
html[data-site-style="southwest"] textarea {
  border-color: rgba(45, 31, 47, 0.56);
  box-shadow: var(--shadow);
}

html[data-site-style="southwest"] .button.primary {
  color: var(--paper);
  background: var(--rose);
  box-shadow: 6px 6px 0 var(--cyan);
}

html[data-site-style="southwest"] .button.secondary {
  color: var(--ink);
  background: var(--paper);
}

html[data-site-style="southwest"] .feature-band,
html[data-site-style="southwest"] .addons-section,
html[data-site-style="southwest"] .plans-cta,
html[data-site-style="southwest"] .site-footer {
  background:
    linear-gradient(135deg, rgba(243, 179, 75, 0.2), transparent 52%),
    var(--ink);
}

html[data-site-style="southwest"] .split-section,
html[data-site-style="southwest"] .process-section,
html[data-site-style="southwest"] .plans-section,
html[data-site-style="southwest"] .plans-faq,
html[data-site-style="southwest"] .examples-overview,
html[data-site-style="southwest"] .contact-section {
  background:
    linear-gradient(90deg, rgba(22, 156, 163, 0.1) 2px, transparent 2px) 0 0 / 78px 78px,
    linear-gradient(0deg, rgba(200, 91, 67, 0.08) 2px, transparent 2px) 0 0 / 78px 78px,
    var(--quiet);
}

html[data-site-style="southwest"] blockquote {
  background: rgba(45, 31, 47, 0.9);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

html[data-site-style="slate"] body {
  background:
    radial-gradient(circle at top left, rgba(62, 116, 191, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfcfe 0%, var(--paper) 38%, #f1f5fa 100%);
  font-family: var(--font-body);
}

html[data-site-style="slate"] body::before,
html[data-site-style="slate"] .hero::before,
html[data-site-style="slate"] .service-card::before,
html[data-site-style="slate"] .process-grid article::before,
html[data-site-style="slate"] .plan-card::before {
  display: none;
}

html[data-site-style="slate"] .site-header {
  --header-floating-radius: 16px;
  --header-stuck-padding-y: 16px;
  --header-stuck-padding-x: clamp(18px, 3vw, 42px);
  color: var(--ink);
  background: rgba(247, 249, 252, 0.88);
  border: 1px solid rgba(21, 34, 53, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

html[data-site-style="slate"] .brand-mark {
  border-color: rgba(21, 34, 53, 0.12);
  border-radius: 12px;
}

html[data-site-style="slate"] .nav a {
  color: var(--soft-ink);
  border-color: transparent;
  border-radius: 999px;
}

html[data-site-style="slate"] .nav a:hover {
  color: var(--ink);
  background: rgba(62, 116, 191, 0.1);
  border-color: transparent;
}

html[data-site-style="slate"] .nav-toggle {
  color: var(--ink);
  border-color: rgba(21, 34, 53, 0.12);
  border-radius: 12px;
}

html[data-site-style="slate"] .style-switcher {
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
}

html[data-site-style="slate"] .style-switcher:hover {
  background: var(--cyan);
}

html[data-site-style="slate"] h1,
html[data-site-style="slate"] h2,
html[data-site-style="slate"] h3 {
  line-height: 1.08;
  text-transform: none;
  text-shadow: none;
  letter-spacing: -0.04em;
}

html[data-site-style="slate"] h1 {
  max-width: 12ch;
  font-size: clamp(3.35rem, 7vw, 5.2rem);
}

html[data-site-style="slate"] h2 {
  font-size: clamp(2.5rem, 4.4vw, 3.6rem);
}

html[data-site-style="slate"] h3 {
  font-size: 1.28rem;
}

html[data-site-style="slate"] .hero {
  min-height: 92vh;
  align-items: center;
  padding-bottom: 88px;
}

html[data-site-style="slate"] .hero::after {
  left: clamp(18px, 6vw, 80px);
  right: clamp(18px, 6vw, 80px);
  bottom: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 34, 53, 0), rgba(21, 34, 53, 0.24), rgba(21, 34, 53, 0));
  border: 0;
  box-shadow: none;
}

html[data-site-style="slate"] .hero-image,
html[data-site-style="slate"] .feature-media img,
html[data-site-style="slate"] .testimonial-section img,
html[data-site-style="slate"] .plans-hero-image,
html[data-site-style="slate"] .examples-hero-image {
  filter: saturate(0.82) contrast(1.02) brightness(0.96);
}

html[data-site-style="slate"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.97) 0%, rgba(247, 249, 252, 0.92) 44%, rgba(247, 249, 252, 0.36) 74%, rgba(247, 249, 252, 0.08) 100%),
    linear-gradient(180deg, rgba(247, 249, 252, 0.12), rgba(247, 249, 252, 0.22));
}

html[data-site-style="slate"] .plans-hero-overlay,
html[data-site-style="slate"] .examples-hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 34, 53, 0.86), rgba(21, 34, 53, 0.66) 48%, rgba(21, 34, 53, 0.18) 100%),
    linear-gradient(135deg, rgba(141, 160, 184, 0.12), rgba(62, 116, 191, 0.18));
}

html[data-site-style="slate"] .hero-content p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.75;
  text-shadow: none;
}

html[data-site-style="slate"] .eyebrow,
html[data-site-style="slate"] .example-summary span,
html[data-site-style="slate"] .plan-label {
  padding: 7px 12px;
  color: var(--green-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  background: rgba(62, 116, 191, 0.08);
  border: 1px solid rgba(62, 116, 191, 0.14);
  border-radius: 999px;
}

html[data-site-style="slate"] .button {
  border-width: 1px;
  border-color: rgba(21, 34, 53, 0.14);
  border-radius: 12px;
}

html[data-site-style="slate"] .button.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(21, 34, 53, 0.18);
}

html[data-site-style="slate"] .button.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(21, 34, 53, 0.2);
}

html[data-site-style="slate"] .button.secondary {
  color: var(--ink);
  background: rgba(247, 249, 252, 0.72);
}

html[data-site-style="slate"] .button.secondary:hover {
  background: rgba(62, 116, 191, 0.08);
}

html[data-site-style="slate"] .split-section,
html[data-site-style="slate"] .process-section,
html[data-site-style="slate"] .plans-section,
html[data-site-style="slate"] .plans-faq,
html[data-site-style="slate"] .examples-overview,
html[data-site-style="slate"] .contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(238, 243, 248, 0.92));
}

html[data-site-style="slate"] .section-copy,
html[data-site-style="slate"] .section-heading,
html[data-site-style="slate"] .contact-section > div {
  padding-left: 22px;
  border-left-width: 4px;
  border-left-color: rgba(62, 116, 191, 0.9);
}

html[data-site-style="slate"] .section-heading {
  border-left-color: rgba(141, 160, 184, 0.9);
}

html[data-site-style="slate"] .service-card,
html[data-site-style="slate"] .process-grid article,
html[data-site-style="slate"] .example-summary,
html[data-site-style="slate"] .plan-card,
html[data-site-style="slate"] .addons-grid article,
html[data-site-style="slate"] .faq-grid details,
html[data-site-style="slate"] .stat,
html[data-site-style="slate"] .plans-strip div,
html[data-site-style="slate"] input,
html[data-site-style="slate"] textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 34, 53, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

html[data-site-style="slate"] .feature-band,
html[data-site-style="slate"] .addons-section,
html[data-site-style="slate"] .plans-cta {
  background:
    linear-gradient(180deg, rgba(236, 242, 248, 0.96), rgba(247, 249, 252, 0.96));
  color: var(--ink);
}

html[data-site-style="slate"] .feature-media {
  background: #dbe5f0;
}

html[data-site-style="slate"] .feature-media::after {
  background: linear-gradient(180deg, rgba(21, 34, 53, 0.08), rgba(21, 34, 53, 0.18));
  mix-blend-mode: multiply;
}

html[data-site-style="slate"] .feature-copy {
  background: transparent;
}

html[data-site-style="slate"] .feature-copy .eyebrow {
  background: rgba(141, 160, 184, 0.12);
  border-color: rgba(141, 160, 184, 0.18);
}

html[data-site-style="slate"] .feature-copy h2,
html[data-site-style="slate"] .plans-hero h1,
html[data-site-style="slate"] .examples-intro h1,
html[data-site-style="slate"] blockquote p {
  color: var(--ink);
}

html[data-site-style="slate"] .feature-copy p,
html[data-site-style="slate"] .plans-hero p:not(.eyebrow),
html[data-site-style="slate"] .examples-intro p:not(.eyebrow) {
  color: var(--muted);
}

html[data-site-style="slate"] .examples-page .site-header {
  box-shadow: var(--shadow);
}

html[data-site-style="slate"] .examples-intro {
  color: var(--paper);
}

html[data-site-style="slate"] .examples-hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 34, 53, 0.88) 0%, rgba(21, 34, 53, 0.72) 46%, rgba(21, 34, 53, 0.3) 76%, rgba(21, 34, 53, 0.12) 100%),
    linear-gradient(180deg, rgba(62, 116, 191, 0.12), rgba(21, 34, 53, 0.16));
}

html[data-site-style="slate"] .examples-intro h1 {
  color: #f7f9fc;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

html[data-site-style="slate"] .examples-intro p:not(.eyebrow) {
  color: rgba(247, 249, 252, 0.9);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

html[data-site-style="slate"] .examples-overview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(238, 243, 248, 0.94));
}

html[data-site-style="slate"] .example-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.9));
}

html[data-site-style="slate"] .example-summary h2 {
  color: var(--ink);
}

html[data-site-style="slate"] .example-summary p {
  color: var(--soft-ink);
}

html[data-site-style="slate"] .example-summary-dark {
  color: #f7f9fc;
  background:
    linear-gradient(180deg, rgba(24, 31, 42, 0.94), rgba(10, 12, 16, 0.96)),
    #0d1015;
  border-color: rgba(216, 196, 160, 0.48);
  box-shadow: 0 20px 50px rgba(10, 12, 16, 0.28);
}

html[data-site-style="slate"] .example-summary-dark h2 {
  color: #f7f9fc;
}

html[data-site-style="slate"] .example-summary-dark p {
  color: rgba(247, 249, 252, 0.82);
}

html[data-site-style="slate"] .check-list li::before,
html[data-site-style="slate"] .plan-card li::before {
  background: var(--cyan);
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

html[data-site-style="slate"] .process-grid span {
  color: var(--paper);
  background: var(--green-dark);
}

html[data-site-style="slate"] .testimonial-section {
  border-color: rgba(21, 34, 53, 0.08);
}

html[data-site-style="slate"] .testimonial-section::after {
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.2), rgba(21, 34, 53, 0.7)),
    linear-gradient(90deg, rgba(21, 34, 53, 0.18), rgba(21, 34, 53, 0));
}

html[data-site-style="slate"] blockquote {
  background: rgba(247, 249, 252, 0.88);
  border: 1px solid rgba(21, 34, 53, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

html[data-site-style="slate"] blockquote p {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  text-transform: none;
}

html[data-site-style="slate"] cite {
  color: var(--green-dark);
}

html[data-site-style="slate"] .contact-section {
  border-top-color: rgba(21, 34, 53, 0.08);
}

html[data-site-style="slate"] input:focus,
html[data-site-style="slate"] textarea:focus {
  outline-color: rgba(62, 116, 191, 0.24);
  border-color: rgba(62, 116, 191, 0.48);
}

html[data-site-style="slate"] .site-footer {
  color: rgba(247, 249, 252, 0.88);
  background: #152235;
  border-top-color: rgba(247, 249, 252, 0.08);
}

html[data-site-style="slate"] .plans-page .site-header {
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .process-grid,
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mesa-topbar,
  .mesa-search,
  .mesa-data-stats,
  .mesa-listing-carousel,
  .mesa-proof,
  .mesa-listing-grid,
  .mesa-community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mesa-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 920px) {
  .site-header {
    --header-floating-top: 12px;
    --header-floating-side: clamp(10px, 3vw, 20px);
    --header-floating-padding-y: 11px;
    --header-floating-padding-x: 11px;
    --header-stuck-padding-y: 13px;
    --header-stuck-padding-x: clamp(14px, 4vw, 22px);
    position: fixed;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: start;
    gap: 10px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 10px;
  }

  .site-header.is-menu-open .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-header.is-menu-open .nav a {
    width: 100%;
    padding: 11px 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    min-height: 90vh;
    padding-top: 116px;
  }

  .hero::before {
    width: 220px;
    height: 220px;
    opacity: 0.72;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
      repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.1) 0 1px, transparent 1px 7px);
  }

  .stats-section,
  .plans-strip,
  .split-section,
  .feature-band,
  .contact-section,
  .addons-section,
  .plans-cta,
  .examples-overview,
  .mesa-agents,
  .mesa-contact {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .section-heading {
    position: static;
  }

  .feature-media,
  .feature-media img {
    min-height: 360px;
  }

  .examples-intro {
    min-height: 78vh;
    padding-top: 116px;
  }

  .plans-hero {
    min-height: 78vh;
    padding-top: 116px;
  }

  .plans-strip div:nth-child(1),
  .plans-strip div:nth-child(2),
  .plans-strip div:nth-child(3) {
    transform: none;
  }

  .plans-grid,
  .addons-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    grid-column: auto;
  }

  .plans-cta {
    justify-items: start;
  }

  .examples-hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.42)),
      repeating-linear-gradient(135deg, rgba(0, 194, 255, 0.18) 0 10px, transparent 10px 24px);
  }

  .mesa-topbar {
    grid-template-columns: 1fr;
  }

  .mesa-call {
    width: max-content;
  }

  .mesa-listing-carousel {
    grid-template-columns: 1fr;
  }

  .mesa-data-stats {
    grid-template-columns: 1fr;
  }

  .mesa-carousel-stage {
    --mesa-carousel-caption-height: 172px;
    min-height: clamp(560px, 82vw, 680px);
  }

  .mesa-hero-panel {
    margin-right: 18px;
  }

  .mesa-hero-panel h1,
  .mesa-hero-panel h2 {
    font-size: 3.3rem;
  }

  html[data-site-style="slate"] .site-header {
    background: rgba(247, 249, 252, 0.94);
  }

  html[data-site-style="slate"] .site-header.is-menu-open .nav a {
    background: rgba(62, 116, 191, 0.08);
    border: 1px solid rgba(21, 34, 53, 0.08);
  }

  html[data-site-style="slate"] .hero-overlay {
    background:
      linear-gradient(0deg, rgba(247, 249, 252, 0.96), rgba(247, 249, 252, 0.82)),
      linear-gradient(180deg, rgba(247, 249, 252, 0.16), rgba(247, 249, 252, 0.24));
  }

  html[data-site-style="slate"] .examples-hero-overlay {
    background:
      linear-gradient(0deg, rgba(21, 34, 53, 0.88), rgba(21, 34, 53, 0.52)),
      linear-gradient(135deg, rgba(141, 160, 184, 0.12), rgba(62, 116, 191, 0.18));
  }
}

@media (max-width: 620px) {
  .brand {
    align-items: flex-start;
    max-width: 260px;
  }

  h1 {
    max-width: 10ch;
    font-size: 3rem;
  }

  html[data-site-style="slate"] h1 {
    max-width: 11ch;
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .stats-section {
    padding: 12px;
  }

  .stat {
    min-height: 140px;
    transform: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2),
  .stat:nth-child(3) {
    transform: none;
  }

  .stat strong {
    font-size: 1.8rem;
  }

  .services-grid,
  .process-grid,
  .mesa-search,
  .mesa-data-stats,
  .mesa-stat-grid,
  .mesa-listing-carousel,
  .mesa-proof,
  .mesa-listing-grid,
  .mesa-community-grid,
  .mesa-contact-actions {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-grid article {
    min-height: 190px;
  }

  .examples-intro h1,
  .plans-hero h1 {
    max-width: 10ch;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-modal {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .plan-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 22px;
    box-shadow: 7px 7px 0 var(--gold);
  }

  .plan-modal h2 {
    max-width: 8ch;
    font-size: 2.45rem;
  }

  .plan-modal-grid {
    grid-template-columns: 1fr;
  }

  .example-summary h2,
  .mesa-section-heading h2,
  .mesa-section-heading h3,
  .mesa-agents h2,
  .mesa-agents h3,
  .mesa-contact h2,
  .mesa-contact h3 {
    font-size: 2rem;
  }

  .mesa-concept {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mesa-site-page .mesa-concept {
    padding: 0;
  }

  .mesa-hero {
    min-height: 620px;
  }

  .mesa-hero-panel {
    width: calc(100% - 24px);
    margin: 0 12px 28px;
    padding: 22px;
    box-shadow: 6px 6px 0 var(--mesa-teal);
  }

  .mesa-hero-panel h1,
  .mesa-hero-panel h2 {
    font-size: 2.42rem;
  }

  .mesa-actions,
  .mesa-button {
    width: 100%;
  }

  .mesa-search div,
  .mesa-search a {
    min-height: 104px;
  }

  .mesa-carousel-stage {
    --mesa-carousel-caption-height: 224px;
    min-height: clamp(520px, 118vw, 620px);
  }

  .mesa-stat-grid article {
    min-height: 205px;
  }

  .mesa-stat-grid strong {
    font-size: clamp(4rem, 16vw, 6.2rem);
  }

  .mesa-carousel-caption {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 18px;
  }

  .mesa-carousel-caption a {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    text-align: center;
  }

  .mesa-carousel-control {
    top: calc((100% - var(--mesa-carousel-caption-height)) / 2);
    width: 46px;
    height: 46px;
    font-size: 2rem;
    transform: translateY(-50%);
  }

  .mesa-carousel-prev {
    left: 14px;
  }

  .mesa-carousel-next {
    right: 14px;
  }

  .mesa-proof article {
    min-height: 150px;
  }

  blockquote {
    box-shadow: 7px 7px 0 var(--rose);
  }

  blockquote p {
    font-size: 1.85rem;
  }

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

  .contact-form {
    padding: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

.example-summary-dark {
  color: #f2f2eb;
  background:
    linear-gradient(135deg, rgba(214, 141, 5, 0.24), transparent 48%),
    repeating-linear-gradient(90deg, rgba(242, 242, 235, 0.09) 0 1px, transparent 1px 18px),
    #000000;
  border-color: #c77b47;
  box-shadow: 10px 10px 0 rgba(181, 84, 84, 0.28);
}

.example-summary-dark span {
  color: #000000;
  background: #f2f2eb;
}

.example-summary-dark p {
  color: rgba(242, 242, 235, 0.82);
}

.example-summary-dark .button.primary {
  color: #000000;
  background: #d68d05;
  border-color: #d68d05;
  box-shadow: 5px 5px 0 rgba(181, 84, 84, 0.58);
}

body.paper-garden-page {
  --pg-page-bg:
    radial-gradient(circle at top, rgba(214, 184, 120, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f1df 0%, #efe7d1 100%);
  --pg-text: #201a16;
  --pg-muted: #4f4035;
  --pg-soft: #705d4f;
  --pg-panel-strong: rgba(32, 26, 22, 0.04);
  --pg-mark-bg: #201a16;
  --pg-mark-text: #fffaf1;
  --pg-nav-bg: transparent;
  --pg-nav-text: #201a16;
  --pg-button-bg: transparent;
  --pg-button-text: #201a16;
  --pg-button-border: rgba(32, 26, 22, 0.22);
  --pg-button-primary-bg: #201a16;
  --pg-button-primary-text: #fffaf1;
  --pg-rule: rgba(32, 26, 22, 0.12);
  --pg-rule-strong: rgba(32, 26, 22, 0.1);
  margin: 0;
  color: var(--pg-text);
  font-family: Georgia, "Times New Roman", serif;
  background: var(--pg-page-bg);
}

body.paper-garden-page[data-paper-garden-style="index-card"] {
  --pg-page-bg:
    linear-gradient(90deg, rgba(88, 146, 255, 0.14) 0 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(180deg, #f9f6ee 0%, #f1ecdf 100%);
  --pg-text: #1d2d4a;
  --pg-muted: #43556f;
  --pg-soft: #60728b;
  --pg-panel-strong: rgba(44, 100, 200, 0.06);
  --pg-mark-bg: #2c64c8;
  --pg-mark-text: #f8fbff;
  --pg-nav-bg: transparent;
  --pg-nav-text: #1d2d4a;
  --pg-button-bg: transparent;
  --pg-button-text: #1d2d4a;
  --pg-button-border: rgba(44, 100, 200, 0.2);
  --pg-button-primary-bg: #2c64c8;
  --pg-button-primary-text: #f8fbff;
  --pg-rule: rgba(44, 100, 200, 0.12);
  --pg-rule-strong: rgba(44, 100, 200, 0.12);
}

body.paper-garden-page[data-paper-garden-style="midnight"] {
  --pg-page-bg:
    radial-gradient(circle at top, rgba(149, 112, 67, 0.18), transparent 26%),
    linear-gradient(180deg, #13161c 0%, #0c0f14 100%);
  --pg-text: #f2eadc;
  --pg-muted: #d0c3af;
  --pg-soft: #b89d7d;
  --pg-panel-strong: rgba(238, 220, 191, 0.06);
  --pg-mark-bg: #f0b56c;
  --pg-mark-text: #13161c;
  --pg-nav-bg: transparent;
  --pg-nav-text: #f2eadc;
  --pg-button-bg: transparent;
  --pg-button-text: #f2eadc;
  --pg-button-border: rgba(240, 181, 108, 0.14);
  --pg-button-primary-bg: #f0b56c;
  --pg-button-primary-text: #13161c;
  --pg-rule: rgba(238, 220, 191, 0.1);
  --pg-rule-strong: rgba(238, 220, 191, 0.12);
}

body.paper-garden-page[data-paper-garden-style="signal"] {
  --pg-page-bg:
    radial-gradient(circle at top right, rgba(255, 84, 84, 0.2), transparent 28%),
    linear-gradient(180deg, #fff9f3 0%, #f8efe7 100%);
  --pg-text: #25181b;
  --pg-muted: #5d4345;
  --pg-soft: #8f6662;
  --pg-panel-strong: rgba(255, 84, 84, 0.06);
  --pg-mark-bg: #ff5454;
  --pg-mark-text: #fffaf6;
  --pg-nav-bg: transparent;
  --pg-nav-text: #25181b;
  --pg-button-bg: transparent;
  --pg-button-text: #25181b;
  --pg-button-border: rgba(255, 84, 84, 0.16);
  --pg-button-primary-bg: #25181b;
  --pg-button-primary-text: #fffaf6;
  --pg-rule: rgba(37, 24, 27, 0.08);
  --pg-rule-strong: rgba(255, 84, 84, 0.12);
}

body.paper-garden-page[data-paper-garden-style="index-card"] .paper-garden-hero h1,
body.paper-garden-page[data-paper-garden-style="index-card"] .paper-garden-section h2,
body.paper-garden-page[data-paper-garden-style="index-card"] .paper-garden-section h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

body.paper-garden-page[data-paper-garden-style="midnight"] .paper-garden-hero h1,
body.paper-garden-page[data-paper-garden-style="midnight"] .paper-garden-section h2,
body.paper-garden-page[data-paper-garden-style="midnight"] .paper-garden-section h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

body.paper-garden-page[data-paper-garden-style="signal"] .paper-garden-hero h1,
body.paper-garden-page[data-paper-garden-style="signal"] .paper-garden-section h2,
body.paper-garden-page[data-paper-garden-style="signal"] .paper-garden-section h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

body.paper-garden-page::before {
  display: none;
}

.paper-garden-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.paper-garden-header {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pg-rule);
}

.paper-garden-brand {
  display: grid;
  gap: 4px;
  text-decoration: none;
}

.paper-garden-brand strong,
.paper-garden-mark {
  font-family: var(--font-display);
}

.paper-garden-brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-garden-brand span {
  color: var(--pg-soft);
  font-size: 0.92rem;
}

.paper-garden-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 9px;
  color: var(--pg-mark-text);
  background: var(--pg-mark-bg);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-garden-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.paper-garden-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.paper-garden-nav a,
.paper-garden-link-list a,
.paper-garden-posts a,
.paper-garden-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.paper-garden-nav a {
  padding: 0;
  color: var(--pg-nav-text);
  background: var(--pg-nav-bg);
  border-radius: 0;
  text-decoration: underline;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.paper-garden-style-toggle {
  min-height: auto;
  padding: 0;
  color: var(--pg-button-text);
  background: var(--pg-button-bg);
  border: 1px solid var(--pg-button-border);
  border-width: 0 0 1px;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.paper-garden-main {
  display: grid;
  gap: 0;
}

.paper-garden-section {
  padding: 0 0 36px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--pg-rule);
}

.paper-garden-hero h1,
.paper-garden-section h2,
.paper-garden-section h3 {
  color: var(--pg-text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
  text-transform: none;
}

.paper-garden-hero h1 {
  max-width: 11ch;
  margin: 12px 0 16px;
  font-size: clamp(2.3rem, 5.3vw, 4rem);
  text-shadow: none;
  line-height: 1.06;
}

.paper-garden-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.paper-garden-section h3 {
  font-size: 1.25rem;
}

.paper-garden-hero p,
.paper-garden-section p,
.paper-garden-posts li,
.paper-garden-link-list li {
  color: var(--pg-muted);
  font-size: 1.05rem;
}

.paper-garden-lead {
  max-width: 58ch;
  margin: 0 0 20px;
}

.paper-garden-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.paper-garden-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--pg-button-text);
  background: var(--pg-button-bg);
  border: 1px solid var(--pg-button-border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.paper-garden-button-primary {
  color: var(--pg-button-primary-text);
  background: var(--pg-button-primary-bg);
}

.paper-garden-quote {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--pg-rule);
}

.paper-garden-quote p {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-style: italic;
}

.paper-garden-quote cite {
  color: var(--pg-soft);
  font-style: normal;
}

.paper-garden-posts,
.paper-garden-link-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper-garden-posts li,
.paper-garden-link-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pg-rule-strong);
}

.paper-garden-posts li:last-child,
.paper-garden-link-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.paper-garden-date {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--pg-soft);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-garden-posts a {
  color: var(--pg-text);
  font-size: 1.08rem;
  font-weight: 700;
}

.paper-garden-note-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.paper-garden-note-grid article {
  padding: 0 0 18px;
  background: transparent;
  border-bottom: 1px solid var(--pg-rule-strong);
  border-radius: 0;
}

.paper-garden-mini-title {
  margin: 0 0 10px;
  color: var(--pg-soft);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-garden-link-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pg-text);
  font-family: var(--font-display);
  font-size: 1rem;
}

.paper-garden-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--pg-rule);
  color: var(--pg-soft);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .paper-garden-controls,
  .paper-garden-header,
  .paper-garden-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

body.tomlen-site-page {
  --tomlen-black: #050505;
  --tomlen-panel: #101010;
  --tomlen-panel-strong: #151515;
  --tomlen-cream: #f7f4ec;
  --tomlen-muted: #bdb6aa;
  --tomlen-line: #303030;
  --tomlen-gold: #f0b33f;
  --tomlen-orange: #ef6a2e;
  --tomlen-steel: #6f7778;
  margin: 0;
  color: var(--tomlen-cream);
  background:
    linear-gradient(90deg, rgba(247, 244, 236, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(247, 244, 236, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 78% 8%, rgba(239, 106, 46, 0.14), transparent 30%),
    var(--tomlen-black);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.tomlen-site-page::before {
  background:
    repeating-linear-gradient(118deg, transparent 0 28px, rgba(240, 179, 63, 0.07) 28px 30px, transparent 30px 72px),
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(247, 244, 236, 0.035) 96px 98px);
}

.tomlen-site-page main {
  position: relative;
  z-index: 1;
}

.tomlen-site-page h1,
.tomlen-site-page h2,
.tomlen-site-page h3,
.tomlen-site-page p {
  margin-top: 0;
}

.tomlen-site-page h1,
.tomlen-site-page h2,
.tomlen-site-page h3 {
  color: var(--tomlen-cream);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.tomlen-site-page h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 9.2rem);
}

.tomlen-site-page h2 {
  font-size: clamp(2.4rem, 5vw, 5.25rem);
}

.tomlen-site-page h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.tomlen-site-page p {
  color: var(--tomlen-muted);
}

.tomlen-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 3vw, 34px);
  min-height: 78px;
  padding: 14px clamp(16px, 5vw, 72px);
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(247, 244, 236, 0.16);
  backdrop-filter: blur(14px);
}

.tomlen-logo {
  display: inline-flex;
  align-items: center;
  width: min(190px, 42vw);
}

.tomlen-logo img {
  width: 100%;
  height: auto;
}

.tomlen-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-nav a,
.tomlen-estimate,
.tomlen-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.tomlen-nav a {
  color: var(--tomlen-muted);
  border: 1px solid transparent;
}

.tomlen-nav a:hover {
  color: var(--tomlen-cream);
  border-color: rgba(247, 244, 236, 0.26);
  background: rgba(247, 244, 236, 0.06);
}

.tomlen-estimate,
.tomlen-button-main {
  color: #090909;
  background: var(--tomlen-gold);
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-estimate:hover,
.tomlen-button-main:hover {
  background: var(--tomlen-orange);
}

.tomlen-button {
  color: var(--tomlen-cream);
  border: 1px solid rgba(247, 244, 236, 0.24);
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-button:not(.tomlen-button-main):hover {
  color: var(--tomlen-black);
  background: var(--tomlen-cream);
}

.tomlen-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  padding: clamp(92px, 13vw, 170px) clamp(18px, 6vw, 88px) clamp(80px, 10vw, 132px);
  overflow: hidden;
  isolation: isolate;
}

.tomlen-hero::before,
.tomlen-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tomlen-hero::before {
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 42%, rgba(5, 5, 5, 0.28) 74%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.82), transparent 52%);
}

.tomlen-hero::after {
  right: clamp(18px, 6vw, 88px);
  bottom: clamp(34px, 7vw, 78px);
  z-index: -1;
  width: min(34vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 179, 63, 0.62);
  background:
    linear-gradient(90deg, transparent 49%, rgba(240, 179, 63, 0.55) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(240, 179, 63, 0.55) 49% 51%, transparent 51%);
  transform: rotate(45deg);
  animation: tomlen-frame 14s linear infinite;
}

.tomlen-hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.18) brightness(0.6);
}

.tomlen-motion-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.78;
  background:
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(247, 244, 236, 0.16) 92px 94px, transparent 94px 128px),
    repeating-linear-gradient(0deg, transparent 0 92px, rgba(240, 179, 63, 0.12) 92px 94px, transparent 94px 128px),
    linear-gradient(115deg, transparent 0 58%, rgba(239, 106, 46, 0.2) 58% 59%, transparent 59%);
  mix-blend-mode: screen;
  animation: tomlen-plan-drift 18s linear infinite;
}

.tomlen-hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.tomlen-kicker {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--tomlen-black);
  background: var(--tomlen-gold);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.tomlen-hero-content p:not(.tomlen-kicker) {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(247, 244, 236, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.tomlen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tomlen-hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(720px, calc(100% - 36px));
  border: 1px solid rgba(247, 244, 236, 0.22);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(12px);
}

.tomlen-hero-panel span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 14px;
  color: var(--tomlen-cream);
  border-right: 1px solid rgba(247, 244, 236, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.tomlen-hero-panel span:last-child {
  border-right: 0;
}

.tomlen-intro,
.tomlen-work,
.tomlen-services,
.tomlen-split,
.tomlen-crew,
.tomlen-contact {
  padding: clamp(58px, 8vw, 116px) clamp(18px, 6vw, 88px);
}

.tomlen-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(240, 179, 63, 0.18) 0 12px, transparent 12px),
    var(--tomlen-panel);
  border-top: 1px solid rgba(247, 244, 236, 0.14);
  border-bottom: 1px solid rgba(247, 244, 236, 0.14);
}

.tomlen-intro p:not(.tomlen-kicker) {
  margin-bottom: 0;
  color: rgba(247, 244, 236, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.tomlen-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.tomlen-section-heading::after {
  content: "";
  display: block;
  width: min(280px, 24vw);
  height: 12px;
  background:
    repeating-linear-gradient(90deg, var(--tomlen-gold) 0 18px, var(--tomlen-orange) 18px 36px, transparent 36px 54px);
}

.tomlen-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tomlen-project-grid article {
  position: relative;
  min-height: clamp(360px, 42vw, 540px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.16);
  background: var(--tomlen-panel);
}

.tomlen-project-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.22) 64%),
    linear-gradient(135deg, transparent 0 62%, rgba(240, 179, 63, 0.24) 62% 64%, transparent 64%);
}

.tomlen-project-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.15) brightness(0.82);
  transition: transform 700ms ease;
}

.tomlen-project-grid article:hover img {
  transform: scale(1.05);
}

.tomlen-project-grid article > div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.tomlen-project-grid span,
.tomlen-crew-grid span {
  color: var(--tomlen-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-project-grid h3,
.tomlen-crew-grid h3 {
  margin: 8px 0 0;
}

.tomlen-services {
  background:
    linear-gradient(90deg, rgba(247, 244, 236, 0.04) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(247, 244, 236, 0.035) 1px, transparent 1px) 0 0 / 54px 54px,
    var(--tomlen-panel);
}

.tomlen-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(247, 244, 236, 0.18);
  border-left: 1px solid rgba(247, 244, 236, 0.18);
}

.tomlen-service-list article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid rgba(247, 244, 236, 0.18);
  border-bottom: 1px solid rgba(247, 244, 236, 0.18);
  background: rgba(5, 5, 5, 0.42);
}

.tomlen-service-list article::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 124px;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 179, 63, 0.48);
  background:
    linear-gradient(90deg, transparent 49%, rgba(240, 179, 63, 0.34) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(239, 106, 46, 0.28) 49% 51%, transparent 51%);
  transform: rotate(45deg);
}

.tomlen-service-list span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--tomlen-black);
  background: var(--tomlen-gold);
  border-radius: 4px;
  font-weight: 900;
}

.tomlen-service-list h3 {
  margin-bottom: 14px;
}

.tomlen-service-list p {
  margin-bottom: 0;
}

.tomlen-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
}

.tomlen-split img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08) brightness(0.86);
}

.tomlen-split > div {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(240, 179, 63, 0.14), transparent 52%),
    var(--tomlen-panel-strong);
  border: 1px solid rgba(247, 244, 236, 0.16);
}

.tomlen-split > div::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(190px, 28vw);
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--tomlen-gold) 0 22px, var(--tomlen-orange) 22px 44px, transparent 44px 66px);
  opacity: 0.78;
}

.tomlen-split ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tomlen-split li {
  position: relative;
  padding-left: 28px;
  color: rgba(247, 244, 236, 0.82);
  font-weight: 800;
}

.tomlen-split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 3px;
  background: var(--tomlen-gold);
}

.tomlen-crew {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.72)),
    repeating-linear-gradient(118deg, transparent 0 34px, rgba(247, 244, 236, 0.06) 34px 36px, transparent 36px 78px);
  border-top: 1px solid rgba(247, 244, 236, 0.14);
  border-bottom: 1px solid rgba(247, 244, 236, 0.14);
}

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

.tomlen-crew-grid article {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1fr);
  min-height: 320px;
  background: var(--tomlen-panel);
  border: 1px solid rgba(247, 244, 236, 0.16);
}

.tomlen-crew-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(0.16) contrast(1.08) brightness(0.86);
}

.tomlen-crew-grid article > div {
  display: grid;
  align-content: end;
  padding: 26px;
}

.tomlen-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background:
    linear-gradient(90deg, var(--tomlen-gold) 0 14px, transparent 14px),
    linear-gradient(135deg, rgba(239, 106, 46, 0.22), transparent 56%),
    #090909;
}

.tomlen-contact h2 {
  max-width: 850px;
}

.tomlen-contact p:not(.tomlen-kicker) {
  max-width: 700px;
  margin-bottom: 0;
}

@keyframes tomlen-plan-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 128px 0, 0 128px, 220px 0;
  }
}

@keyframes tomlen-frame {
  from {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(45deg) translate3d(-14px, 14px, 0);
  }

  to {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }
}

@media (max-width: 1080px) {
  .tomlen-section-heading,
  .tomlen-intro,
  .tomlen-split,
  .tomlen-contact {
    grid-template-columns: 1fr;
  }

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

  .tomlen-section-heading::after {
    width: min(300px, 70vw);
  }
}

@media (max-width: 820px) {
  .tomlen-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tomlen-nav {
    justify-content: flex-start;
  }

  .tomlen-estimate {
    width: max-content;
  }

  .tomlen-hero {
    min-height: 820px;
  }

  .tomlen-hero::before {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.54)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.2));
  }

  .tomlen-hero::after {
    width: 280px;
    opacity: 0.66;
  }

  .tomlen-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tomlen-hero-panel span:nth-child(2) {
    border-right: 0;
  }

  .tomlen-hero-panel span:nth-child(1),
  .tomlen-hero-panel span:nth-child(2) {
    border-bottom: 1px solid rgba(247, 244, 236, 0.18);
  }

  .tomlen-crew-grid,
  .tomlen-crew-grid article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .tomlen-site-page h1 {
    max-width: 9ch;
    font-size: 3.35rem;
  }

  .tomlen-site-page h2 {
    font-size: 2.25rem;
  }

  .tomlen-nav {
    display: none;
  }

  .tomlen-estimate,
  .tomlen-actions,
  .tomlen-button {
    width: 100%;
  }

  .tomlen-hero {
    min-height: 760px;
    padding-top: 76px;
  }

  .tomlen-hero-panel {
    grid-template-columns: 1fr;
  }

  .tomlen-hero-panel span,
  .tomlen-hero-panel span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 244, 236, 0.18);
  }

  .tomlen-hero-panel span:last-child {
    border-bottom: 0;
  }

  .tomlen-project-grid,
  .tomlen-service-list {
    grid-template-columns: 1fr;
  }

  .tomlen-service-list article {
    min-height: 230px;
  }

  .tomlen-split img {
    min-height: 360px;
  }

  .tomlen-contact .tomlen-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tomlen-motion-grid,
  .tomlen-hero::after {
    animation: none;
  }

  .tomlen-project-grid img {
    transition: none;
  }

  .mesa-carousel-slide {
    transition: none;
  }
}

/* Desert Yards Landscaping demo */
.desert-yards-page {
  --dy-ink: #211a16;
  --dy-ink-soft: #4f4037;
  --dy-paper: #fff8ec;
  --dy-plaster: #f4e6d0;
  --dy-sand: #dec293;
  --dy-clay: #b3563d;
  --dy-sun: #e8ae4d;
  --dy-teal: #1d7873;
  --dy-sage: #7b8f64;
  --dy-cream: #fffdf5;
  --dy-line: rgba(33, 26, 22, 0.2);
  --dy-light-line: rgba(255, 248, 236, 0.24);
  --dy-shadow: 0 26px 70px rgba(33, 26, 22, 0.24);
  color: var(--dy-ink);
  background:
    linear-gradient(90deg, rgba(179, 86, 61, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(29, 120, 115, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--dy-paper);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

.desert-yards-page::before {
  display: none;
}

.desert-yards-page h1,
.desert-yards-page h2,
.desert-yards-page h3,
.desert-yards-page p {
  margin-top: 0;
}

.desert-yards-page h1,
.desert-yards-page h2,
.desert-yards-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.desert-yards-page h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  color: var(--dy-cream);
  font-size: clamp(3.05rem, 8vw, 5.7rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.desert-yards-page h2 {
  color: var(--dy-ink);
  font-size: 3.2rem;
}

.desert-yards-page h3 {
  font-size: 2.2rem;
}

.dy-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 14px max(22px, 5vw);
  color: var(--dy-ink);
  background: rgba(255, 248, 236, 0.92);
  border-bottom: 1px solid var(--dy-line);
  backdrop-filter: blur(18px);
}

.dy-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.dy-brand,
.dy-nav,
.dy-call,
.dy-actions,
.dy-button,
.dy-contact-list {
  display: flex;
  align-items: center;
}

.dy-brand {
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  text-decoration: none;
}

.dy-brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--dy-paper);
  background:
    linear-gradient(135deg, transparent 0 18%, var(--dy-teal) 18% 82%, transparent 82%),
    var(--dy-clay);
  border: 1px solid var(--dy-ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.dy-nav {
  justify-content: center;
  gap: 8px;
}

.dy-nav a,
.dy-call {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid transparent;
  color: var(--dy-ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.dy-nav a:hover,
.dy-call:hover {
  border-color: var(--dy-clay);
  background: rgba(179, 86, 61, 0.1);
}

.dy-call {
  justify-self: end;
  justify-content: center;
  border-color: var(--dy-ink);
}

.dy-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px max(24px, 6vw) 88px;
  isolation: isolate;
}

.dy-hero::after {
  content: "";
  position: absolute;
  right: max(24px, 6vw);
  bottom: 34px;
  width: 240px;
  height: 88px;
  z-index: -1;
  opacity: 0.9;
  background:
    linear-gradient(90deg, var(--dy-sun) 0 25%, var(--dy-teal) 25% 50%, var(--dy-clay) 50% 75%, var(--dy-sage) 75%),
    var(--dy-sun);
  clip-path: polygon(0 45%, 18% 45%, 18% 26%, 34% 26%, 34% 8%, 66% 8%, 66% 26%, 82% 26%, 82% 45%, 100% 45%, 100% 100%, 0 100%);
}

.dy-hero-image,
.dy-hero-shade {
  position: absolute;
  inset: 0;
}

.dy-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.dy-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(33, 26, 22, 0.9) 0%, rgba(33, 26, 22, 0.64) 38%, rgba(33, 26, 22, 0.2) 70%),
    linear-gradient(0deg, rgba(33, 26, 22, 0.28), rgba(33, 26, 22, 0.08)),
    repeating-linear-gradient(45deg, rgba(255, 248, 236, 0.12) 0 1px, transparent 1px 20px);
}

.dy-hero-content {
  max-width: 780px;
  color: var(--dy-cream);
}

.dy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--dy-clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dy-kicker::before {
  content: "";
  width: 34px;
  height: 9px;
  background:
    linear-gradient(90deg, var(--dy-clay) 0 33%, var(--dy-teal) 33% 66%, var(--dy-sun) 66%);
}

.dy-hero .dy-kicker {
  color: var(--dy-sun);
}

.dy-hero-content p:not(.dy-kicker) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 248, 236, 0.86);
  font-size: 1.08rem;
}

.dy-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.dy-button {
  min-height: 46px;
  justify-content: center;
  padding: 12px 18px;
  color: var(--dy-cream);
  border: 1px solid rgba(255, 248, 236, 0.66);
  background: rgba(255, 248, 236, 0.08);
  font-weight: 800;
  text-decoration: none;
}

.dy-button:hover {
  border-color: var(--dy-sun);
  background: rgba(232, 174, 77, 0.18);
}

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

.dy-button-primary:hover {
  color: var(--dy-paper);
  background: var(--dy-teal);
  border-color: var(--dy-teal);
}

.dy-quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dy-line);
  border-bottom: 1px solid var(--dy-line);
  background: var(--dy-plaster);
}

.dy-quick-strip article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px max(18px, 4vw);
  border-right: 1px solid var(--dy-line);
}

.dy-quick-strip article:last-child {
  border-right: 0;
}

.dy-quick-strip span {
  color: var(--dy-clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.dy-quick-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.dy-intro,
.dy-bio,
.dy-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: max(34px, 6vw);
  align-items: start;
  padding: 106px max(24px, 6vw);
}

.dy-intro {
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 21px), rgba(29, 120, 115, 0.2) calc(100% - 21px)),
    var(--dy-paper);
}

.dy-intro p:not(.dy-kicker),
.dy-bio p,
.dy-contact p {
  color: var(--dy-ink-soft);
  font-size: 1.05rem;
}

.dy-intro > p {
  max-width: 780px;
  margin-bottom: 0;
}

.dy-work {
  padding: 100px max(20px, 5vw);
  color: var(--dy-paper);
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.06) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255, 248, 236, 0.05) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--dy-ink);
}

.dy-section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: max(28px, 5vw);
  align-items: end;
  margin-bottom: 46px;
}

.dy-section-heading h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  color: var(--dy-paper);
}

.dy-section-heading p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.76);
}

.dy-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.dy-carousel-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--dy-paper);
  background: transparent;
  border: 1px solid var(--dy-light-line);
  font-size: 1.25rem;
  cursor: pointer;
}

.dy-carousel-button:hover,
.dy-carousel-button:focus-visible,
.dy-dots button:hover,
.dy-dots button:focus-visible {
  outline: none;
  border-color: var(--dy-sun);
  background: rgba(232, 174, 77, 0.14);
}

.dy-slides {
  min-width: 0;
}

.dy-slide {
  display: none;
  grid-template-columns: minmax(0, 1.22fr) minmax(270px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.dy-slide.is-active {
  display: grid;
}

.dy-compare {
  --split: 50%;
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--dy-light-line);
  background: #12100e;
  box-shadow: var(--dy-shadow);
}

.dy-compare::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 248, 236, 0.28);
}

.dy-compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.dy-compare-after {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.dy-compare-label {
  position: absolute;
  top: 24px;
  z-index: 5;
  padding: 8px 12px;
  color: var(--dy-ink);
  background: rgba(255, 248, 236, 0.9);
  border: 1px solid rgba(33, 26, 22, 0.24);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dy-compare-label-before {
  right: 24px;
}

.dy-compare-label-after {
  left: 24px;
}

.dy-compare-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.dy-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 7;
  width: 2px;
  background: var(--dy-sun);
  transform: translateX(-1px);
}

.dy-compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 0 18px, var(--dy-ink) 18px 22px, transparent 22px),
    linear-gradient(0deg, transparent 0 18px, var(--dy-ink) 18px 22px, transparent 22px),
    var(--dy-sun);
  border: 1px solid var(--dy-ink);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 12px 26px rgba(33, 26, 22, 0.34);
}

.dy-compare-range:focus-visible ~ .dy-compare-handle::before {
  outline: 3px solid var(--dy-teal);
  outline-offset: 5px;
}

.dy-slide-copy {
  display: grid;
  align-content: end;
  padding: 34px;
  border: 1px solid var(--dy-light-line);
  background:
    linear-gradient(135deg, rgba(179, 86, 61, 0.28), transparent 48%),
    rgba(255, 248, 236, 0.06);
}

.dy-project-number {
  color: var(--dy-sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dy-slide-copy h3 {
  margin: 12px 0 18px;
  color: var(--dy-paper);
}

.dy-slide-copy p {
  margin-bottom: 26px;
  color: rgba(255, 248, 236, 0.76);
}

.dy-meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dy-meta-list li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--dy-light-line);
}

.dy-meta-list span {
  color: var(--dy-sun);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dy-meta-list strong {
  margin: 0;
  color: rgba(255, 248, 236, 0.84);
  font-weight: 500;
}

.dy-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.dy-dots button {
  width: 42px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--dy-light-line);
  background: transparent;
  cursor: pointer;
}

.dy-dots button[aria-pressed="true"] {
  border-color: var(--dy-sun);
  background: var(--dy-sun);
}

.dy-bio {
  background:
    linear-gradient(90deg, rgba(123, 143, 100, 0.22) 0 16px, transparent 16px),
    var(--dy-plaster);
}

.dy-bio img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid var(--dy-line);
  filter: saturate(0.86) contrast(1.05);
}

.dy-bio h2,
.dy-contact h2 {
  margin-bottom: 24px;
}

.dy-bio p:last-child,
.dy-contact p:last-child {
  margin-bottom: 0;
}

.dy-contact {
  align-items: end;
  color: var(--dy-paper);
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(255, 248, 236, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--dy-teal);
}

.dy-contact .dy-kicker {
  color: var(--dy-sun);
}

.dy-contact h2,
.dy-contact p {
  color: var(--dy-paper);
}

.dy-contact p {
  max-width: 660px;
}

.dy-contact-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 248, 236, 0.3);
  font-style: normal;
}

.dy-contact-list span,
.dy-contact-list a {
  padding: 16px 0;
  color: var(--dy-paper);
  border-bottom: 1px solid rgba(255, 248, 236, 0.3);
  text-decoration: none;
}

.dy-contact-list a:hover {
  color: var(--dy-sun);
}

.desert-yards-summary {
  background:
    linear-gradient(135deg, rgba(179, 86, 61, 0.16), transparent 52%),
    var(--quiet);
}

/* Foundry Row Realty example */
.foundry-row-summary {
  background:
    linear-gradient(135deg, rgba(81, 111, 97, 0.18), transparent 58%),
    #fbfbf8;
}

.foundry-row-summary span {
  background: #516f61;
}

.mesa-flats-summary {
  background:
    linear-gradient(135deg, rgba(113, 159, 159, 0.24), transparent 58%),
    #f5f8e4;
}

.mesa-flats-summary span {
  color: #f5f8e4;
  background: #2f6f73;
}

body.foundry-page {
  --fr-ink: #202723;
  --fr-soft-ink: #44504a;
  --fr-muted: #69746f;
  --fr-paper: #fbfbf8;
  --fr-white: #ffffff;
  --fr-mist: #edf3ef;
  --fr-line: rgba(32, 39, 35, 0.16);
  --fr-line-strong: rgba(32, 39, 35, 0.34);
  --fr-sage: #516f61;
  --fr-brick: #9b5f48;
  --fr-brass: #c99a45;
  --fr-steel: #5f7477;
  margin: 0;
  color: var(--fr-ink);
  background: var(--fr-paper);
  font-family: var(--font-body);
  line-height: 1.65;
}

body.foundry-page::before {
  display: none;
}

.foundry-page img {
  width: 100%;
}

.foundry-page h1,
.foundry-page h2,
.foundry-page h3,
.foundry-page p {
  overflow-wrap: anywhere;
}

.foundry-page h1,
.foundry-page h2,
.foundry-page h3 {
  margin: 0;
  color: var(--fr-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.foundry-page h1 {
  max-width: 9.5ch;
  font-size: clamp(4rem, 10vw, 8.4rem);
}

.foundry-page h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.8vw, 5.2rem);
}

.foundry-page h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.foundry-page p {
  margin: 0;
  color: var(--fr-muted);
}

.fr-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: var(--fr-brass);
  transform: scaleX(0);
  transform-origin: left;
}

.fr-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.fr-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 56px);
  color: var(--fr-ink);
  background: rgba(251, 251, 248, 0.94);
  border-bottom: 1px solid var(--fr-line);
  backdrop-filter: blur(16px);
}

.fr-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.fr-brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--fr-white);
  background: var(--fr-sage);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.fr-brand strong,
.fr-brand small {
  display: block;
}

.fr-brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.fr-brand small {
  margin-top: 2px;
  color: var(--fr-muted);
  font-size: 0.78rem;
}

.fr-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.fr-nav a,
.fr-phone,
.fr-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--fr-soft-ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.fr-nav a:hover,
.fr-nav a[aria-current="page"] {
  color: var(--fr-ink);
  background: var(--fr-mist);
}

.fr-phone {
  color: var(--fr-ink);
  border: 1px solid var(--fr-line-strong);
}

.fr-phone:hover {
  color: var(--fr-white);
  background: var(--fr-sage);
  border-color: var(--fr-sage);
}

.fr-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: clamp(86px, 9vw, 128px) 0 clamp(52px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}

.fr-page-hero {
  min-height: 66svh;
}

.fr-page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7.5vw, 6.6rem);
}

.fr-hero-image,
.fr-hero-shade {
  position: absolute;
  inset: 0;
}

.fr-hero-image {
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: saturate(0.82) contrast(0.96);
  animation: fr-slow-focus 18s ease-in-out infinite alternate;
}

.fr-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 251, 248, 0.98) 0%, rgba(251, 251, 248, 0.9) 38%, rgba(251, 251, 248, 0.38) 68%, rgba(251, 251, 248, 0.06)),
    linear-gradient(0deg, rgba(32, 39, 35, 0.16), transparent 46%);
}

.fr-bio-hero {
  min-height: auto;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(81, 111, 97, 0.08) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(0deg, rgba(155, 95, 72, 0.06) 1px, transparent 1px) 0 0 / 68px 68px,
    var(--fr-mist);
}

.fr-bio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.fr-bio-hero .fr-hero-content {
  max-width: 680px;
}

.fr-bio-portrait {
  width: 100%;
  min-height: clamp(420px, 58vw, 620px);
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(32, 39, 35, 0.18);
}

.fr-nora-portrait {
  object-position: 62% 34%;
}

.fr-home-hero .fr-hero-content {
  padding-bottom: clamp(10px, 3vw, 30px);
}

.fr-hero-content {
  display: grid;
  gap: 22px;
}

.fr-hero-content p:not(.fr-kicker) {
  max-width: 670px;
  color: var(--fr-soft-ink);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.fr-kicker {
  margin: 0;
  color: var(--fr-sage);
  font-family: var(--tomlen-font-utility);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.fr-button {
  padding: 12px 18px;
  color: var(--fr-ink);
  background: var(--fr-white);
  border: 1px solid var(--fr-line-strong);
}

.fr-button:hover {
  transform: translateY(-2px);
  border-color: var(--fr-sage);
}

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

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

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

.fr-proof-strip article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--fr-line);
}

.fr-proof-strip article:last-child {
  border-right: 0;
}

.fr-proof-strip span,
.fr-showcase-grid span {
  color: var(--fr-brick);
  font-size: 0.82rem;
  font-weight: 900;
}

.fr-proof-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}

.fr-section {
  padding: clamp(78px, 11vw, 140px) 0;
}

.fr-split,
.fr-media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.fr-media-split {
  align-items: center;
}

.fr-media-split > img {
  min-height: 620px;
  object-fit: cover;
  border-radius: 8px;
}

.fr-copy-stack {
  display: grid;
  gap: 20px;
}

.fr-copy-stack p {
  max-width: 680px;
  font-size: 1.08rem;
}

.fr-check-list,
.fr-listing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fr-check-list li,
.fr-listing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--fr-soft-ink);
}

.fr-check-list li::before,
.fr-listing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--fr-brass);
  border-radius: 999px;
}

.fr-featured,
.fr-listings-panel,
.fr-showcase-grid-section,
.fr-bio-stats-section {
  background: var(--fr-white);
  border-top: 1px solid var(--fr-line);
  border-bottom: 1px solid var(--fr-line);
}

.fr-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.fr-section-heading .fr-kicker,
.fr-section-heading h2 {
  grid-column: 1;
}

.fr-section-heading a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--fr-sage);
  font-weight: 800;
  text-decoration: none;
}

.fr-section-heading a:hover {
  color: var(--fr-brick);
}

.fr-card-grid,
.fr-listing-grid,
.fr-showcase-grid,
.fr-bio-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fr-property-card,
.fr-listing-card,
.fr-showcase-grid article,
.fr-bio-stats article {
  background: var(--fr-white);
  border: 1px solid var(--fr-line);
  border-radius: 8px;
  overflow: hidden;
}

.fr-property-card {
  display: grid;
  grid-template-rows: 260px minmax(220px, auto);
  box-shadow: 0 18px 44px rgba(32, 39, 35, 0.08);
}

.fr-property-card img,
.fr-listing-card img {
  height: 100%;
  object-fit: cover;
}

.fr-property-card img {
  filter: brightness(0.88) saturate(0.92);
}

.fr-property-card > div,
.fr-listing-card > div,
.fr-showcase-grid article,
.fr-bio-stats article {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.fr-property-card > div {
  position: relative;
  margin-top: -34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--fr-white) 42%),
    var(--fr-white);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 -18px 30px rgba(32, 39, 35, 0.18);
}

.fr-property-card span,
.fr-listing-card span {
  color: #365c4a;
  font-weight: 900;
}

.fr-property-card p,
.fr-listing-card p {
  color: var(--fr-muted);
}

.fr-comfort-band,
.fr-neighborhoods,
.fr-timeline-section,
.fr-values {
  background:
    linear-gradient(90deg, rgba(81, 111, 97, 0.08) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--fr-mist);
}

.fr-rhythm-list,
.fr-neighborhood-grid,
.fr-values-list {
  display: grid;
  gap: 1px;
  background: var(--fr-line);
  border: 1px solid var(--fr-line);
  border-radius: 8px;
  overflow: hidden;
}

.fr-rhythm-list article,
.fr-neighborhood-grid article,
.fr-values-list article {
  display: grid;
  gap: 8px;
  padding: 26px;
  background: var(--fr-paper);
}

.fr-rhythm-list span,
.fr-neighborhood-grid strong,
.fr-values-list strong {
  color: var(--fr-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.fr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 56px);
  color: var(--fr-paper);
  background: var(--fr-ink);
}

.fr-footer div {
  display: grid;
  gap: 4px;
}

.fr-footer span {
  color: rgba(251, 251, 248, 0.72);
  font-size: 0.92rem;
}

.fr-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fr-footer a {
  color: var(--fr-paper);
  font-weight: 800;
  text-decoration: none;
}

.fr-listing-tools {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.fr-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.fr-filter-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  color: var(--fr-soft-ink);
  background: var(--fr-paper);
  border: 1px solid var(--fr-line);
  border-radius: 8px;
  font-weight: 800;
}

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

.fr-listing-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  min-height: 320px;
}

.fr-listing-card > div {
  align-content: start;
}

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

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

.fr-showcase-grid article {
  min-height: 270px;
  align-content: start;
}

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

.fr-timeline li {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--fr-line-strong);
}

.fr-timeline span {
  color: var(--fr-brick);
  font-weight: 900;
}

.fr-timeline strong {
  color: var(--fr-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.fr-quote-band {
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--fr-paper);
  background: var(--fr-sage);
}

.fr-quote-band p {
  max-width: 980px;
  color: var(--fr-paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.fr-quote-band span {
  display: block;
  margin-top: 22px;
  color: rgba(251, 251, 248, 0.78);
  font-weight: 800;
}

.fr-bio-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fr-bio-stats article {
  min-height: 230px;
  align-content: space-between;
}

.fr-bio-stats strong {
  color: var(--fr-sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.fr-bio-stats span {
  color: var(--fr-soft-ink);
  font-weight: 800;
  line-height: 1.3;
}

.foundry-page.fr-ready [data-flow] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.foundry-page.fr-ready [data-flow].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fr-slow-focus {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@media (max-width: 1120px) {
  .fr-card-grid,
  .fr-showcase-grid,
  .fr-bio-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fr-listing-card {
    grid-template-columns: 1fr;
  }

  .fr-listing-card img {
    height: 280px;
  }
}

@media (max-width: 860px) {
  .fr-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .fr-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .fr-phone {
    justify-self: start;
  }

  .fr-hero,
  .fr-page-hero {
    min-height: 72svh;
  }

  .fr-hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 251, 248, 0.94), rgba(251, 251, 248, 0.64)),
      linear-gradient(90deg, rgba(251, 251, 248, 0.88), rgba(251, 251, 248, 0.36));
  }

  .fr-proof-strip,
  .fr-split,
  .fr-bio-hero-grid,
  .fr-media-split,
  .fr-listing-tools,
  .fr-neighborhood-grid {
    grid-template-columns: 1fr;
  }

  .fr-proof-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--fr-line);
  }

  .fr-proof-strip article:last-child {
    border-bottom: 0;
  }

  .fr-section-heading {
    grid-template-columns: 1fr;
  }

  .fr-section-heading a {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .fr-filter-row {
    justify-content: flex-start;
  }

  .fr-media-split > img {
    min-height: 440px;
  }

  .fr-footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  .fr-container {
    width: min(100% - 28px, 1180px);
  }

  .foundry-page h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .foundry-page h2 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .fr-nav {
    width: 100%;
  }

  .fr-nav a {
    flex: 1 1 44%;
  }

  .fr-actions,
  .fr-button,
  .fr-phone {
    width: 100%;
  }

  .fr-card-grid,
  .fr-listing-grid,
  .fr-showcase-grid,
  .fr-bio-stats {
    grid-template-columns: 1fr;
  }

  .fr-property-card {
    grid-template-rows: 240px auto;
  }

  .fr-listing-card img {
    height: 235px;
  }

  .fr-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fr-bio-stats article {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fr-hero-image {
    animation: none;
  }

  .foundry-page.fr-ready [data-flow],
  .fr-nav a,
  .fr-phone,
  .fr-button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .desert-yards-page h1 {
    font-size: clamp(3.05rem, 8vw, 4.7rem);
  }

  .desert-yards-page h2 {
    font-size: 2.75rem;
  }

  .dy-slide,
  .dy-section-heading,
  .dy-intro,
  .dy-bio,
  .dy-contact {
    grid-template-columns: 1fr;
  }

  .dy-section-heading h2,
  .dy-section-heading p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .dy-slide-copy {
    min-height: 320px;
  }
}

@media (max-width: 780px) {
  .dy-header {
    grid-template-columns: 1fr;
    gap: 10px;
    position: relative;
  }

  .dy-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .dy-call {
    justify-self: start;
  }

  .desert-yards-page h1 {
    max-width: 12ch;
    font-size: clamp(2.72rem, 10vw, 3.55rem);
  }

  .desert-yards-page h2 {
    font-size: 2.28rem;
  }

  .desert-yards-page h3 {
    font-size: 1.78rem;
  }

  .dy-hero {
    min-height: 760px;
    padding-top: 74px;
  }

  .dy-hero::after {
    width: 170px;
    height: 64px;
  }

  .dy-actions,
  .dy-button {
    width: 100%;
  }

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

  .dy-quick-strip article:nth-child(2) {
    border-right: 0;
  }

  .dy-quick-strip article:nth-child(1),
  .dy-quick-strip article:nth-child(2) {
    border-bottom: 1px solid var(--dy-line);
  }

  .dy-work,
  .dy-intro,
  .dy-bio,
  .dy-contact {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .dy-carousel {
    grid-template-columns: 1fr 1fr;
  }

  .dy-slides {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .dy-carousel-button {
    width: 100%;
    margin-top: 16px;
  }

  .dy-compare {
    min-height: 430px;
  }

  .dy-bio img {
    min-height: 420px;
  }
}

@media (max-width: 540px) {
  .desert-yards-page h1 {
    font-size: clamp(2.42rem, 11vw, 3.05rem);
  }

  .dy-hero {
    min-height: 720px;
  }

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

  .dy-quick-strip article,
  .dy-quick-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--dy-line);
  }

  .dy-quick-strip article:last-child {
    border-bottom: 0;
  }

  .dy-compare {
    min-height: 360px;
  }

  .dy-compare-label {
    top: 18px;
  }

  .dy-compare-label-before {
    right: 18px;
  }

  .dy-compare-label-after {
    left: 18px;
  }

  .dy-slide-copy {
    padding: 26px;
  }

  .dy-meta-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dy-button,
  .dy-nav a,
  .dy-call,
  .dy-carousel-button,
  .dy-dots button {
    transition: none;
  }
}

/* Client portal */
.client-page {
  --client-ink: #17202a;
  --client-soft-ink: #40505b;
  --client-paper: #f8fbff;
  --client-panel: #ffffff;
  --client-line: rgba(23, 32, 42, 0.16);
  --client-muted-line: rgba(23, 32, 42, 0.08);
  --client-cyan: #118ab2;
  --client-teal: #00a6a6;
  --client-gold: #ffd166;
  --client-rose: #ef476f;
  --client-success: #16795a;
  --client-danger: #b7374d;
  --client-shadow: 0 18px 34px rgba(23, 32, 42, 0.16);
  min-height: 100vh;
  color: var(--client-ink);
  background:
    linear-gradient(90deg, rgba(17, 138, 178, 0.12) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(239, 71, 111, 0.08) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--client-paper);
}

.client-page::before {
  background:
    linear-gradient(135deg, transparent 0 70%, rgba(255, 209, 102, 0.18) 70% 72%, transparent 72%),
    linear-gradient(45deg, transparent 0 56%, rgba(0, 166, 166, 0.14) 56% 58%, transparent 58%);
}

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

.client-page h1,
.client-page h2,
.client-page h3 {
  max-width: none;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: normal;
  word-break: normal;
}

.client-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.client-page h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
}

.client-page h3 {
  font-size: 1.08rem;
}

.client-shell-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 251, 255, 0.95);
  border-bottom: 1px solid var(--client-line);
  box-shadow: 0 8px 30px rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(12px);
}

.client-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--client-ink);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
}

.client-brand .brand-mark {
  border-color: var(--client-ink);
}

.client-shell-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-shell-nav a,
.client-shell-nav button {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--client-ink);
  background: transparent;
  border: 1px solid rgba(23, 32, 42, 0.22);
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.client-shell-nav a:hover,
.client-shell-nav button:hover {
  border-color: var(--client-cyan);
  background: rgba(17, 138, 178, 0.1);
}

.client-auth-main {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 86px);
}

.client-auth-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.client-auth-copy {
  position: relative;
  padding: clamp(8px, 3vw, 24px) 0;
}

.client-auth-copy::after {
  content: "";
  display: block;
  width: min(420px, 74vw);
  height: 12px;
  margin-top: 34px;
  background: linear-gradient(90deg, var(--client-cyan), var(--client-teal), var(--client-rose));
  border-radius: 999px;
}

.client-auth-copy p:not(.client-eyebrow) {
  max-width: 680px;
  color: var(--client-soft-ink);
  font-size: 1.08rem;
}

.client-eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--client-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.client-eyebrow::before {
  content: "";
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background: var(--client-gold);
}

.client-auth-card,
.client-panel,
.client-plan-snapshot,
.client-alert,
.client-confirm-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--client-line);
  border-radius: 8px;
  box-shadow: var(--client-shadow);
}

.client-auth-card {
  padding: 22px;
}

.client-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  background: rgba(17, 138, 178, 0.08);
  border: 1px solid var(--client-muted-line);
  border-radius: 8px;
}

.client-auth-tabs button {
  min-height: 42px;
  color: var(--client-soft-ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.client-auth-tabs button.is-active {
  color: var(--client-paper);
  background: var(--client-ink);
}

.client-form {
  display: grid;
  gap: 16px;
}

.client-form.is-hidden,
.client-alert.is-hidden {
  display: none;
}

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

.client-form label {
  display: grid;
  gap: 7px;
  color: var(--client-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.client-form input,
.client-form select,
.client-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--client-ink);
  background: #ffffff;
  border: 1px solid rgba(23, 32, 42, 0.24);
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
}

.client-form textarea {
  resize: vertical;
}

.client-form input:focus,
.client-form select:focus,
.client-form textarea:focus {
  outline: 3px solid rgba(17, 138, 178, 0.25);
  border-color: var(--client-cyan);
}

.client-form input:disabled,
.client-form select:disabled,
.client-form textarea:disabled {
  color: rgba(23, 32, 42, 0.48);
  background: rgba(23, 32, 42, 0.06);
  cursor: not-allowed;
}

.client-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--client-ink);
  border-radius: 8px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.client-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.client-button-primary {
  color: var(--client-paper);
  background: var(--client-ink);
  box-shadow: 5px 5px 0 var(--client-cyan);
}

.client-button-secondary {
  color: var(--client-ink);
  background: var(--client-panel);
}

.client-button-danger {
  color: #ffffff;
  background: var(--client-danger);
  border-color: var(--client-danger);
}

.client-form-message {
  margin: 18px 0 0;
  padding: 13px 14px;
  color: var(--client-soft-ink);
  background: rgba(23, 32, 42, 0.04);
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.client-form-message:empty {
  display: none;
}

.client-password-hint {
  margin: -4px 0 0;
  color: var(--client-soft-ink);
  font-size: 0.88rem;
}

.client-field-hint {
  color: var(--client-soft-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.client-form-message[data-tone="success"] {
  color: var(--client-success);
  background: rgba(22, 121, 90, 0.08);
  border-color: rgba(22, 121, 90, 0.22);
}

.client-form-message[data-tone="error"] {
  color: var(--client-danger);
  background: rgba(183, 55, 77, 0.08);
  border-color: rgba(183, 55, 77, 0.22);
}

.client-dashboard {
  padding: clamp(28px, 4vw, 56px);
}

.client-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  margin: 0 auto 26px;
  max-width: 1320px;
}

.client-dashboard-hero > div {
  min-height: 270px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 5vw, 56px);
  color: var(--client-paper);
  background:
    linear-gradient(135deg, rgba(17, 138, 178, 0.26), transparent 54%),
    linear-gradient(90deg, rgba(23, 32, 42, 0.96), rgba(23, 32, 42, 0.82)),
    var(--client-ink);
  border-radius: 8px;
  box-shadow: var(--client-shadow);
}

.client-dashboard-hero h1 {
  margin-bottom: 10px;
  color: var(--client-paper);
}

.client-dashboard-hero p:not(.client-eyebrow) {
  margin-bottom: 0;
  color: rgba(248, 251, 255, 0.76);
}

.client-plan-snapshot {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.client-plan-snapshot::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 96px;
  height: 12px;
  background: linear-gradient(90deg, var(--client-cyan), var(--client-teal), var(--client-rose));
  border-radius: 999px;
}

.client-plan-snapshot span,
.client-pill {
  width: max-content;
  padding: 7px 10px;
  color: var(--client-cyan);
  background: rgba(17, 138, 178, 0.1);
  border: 1px solid rgba(17, 138, 178, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-plan-snapshot h2 {
  margin-bottom: 0;
}

.client-plan-snapshot p {
  margin-bottom: 0;
  color: var(--client-soft-ink);
}

.client-dashboard-hero .client-plan-snapshot p {
  color: var(--client-soft-ink);
}

.client-plan-snapshot .client-button {
  width: max-content;
}

.client-plan-price,
.client-plan-dialog-price {
  color: var(--client-ink);
  font-weight: 900;
}

.client-plan-meta {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--client-muted-line);
}

.client-plan-meta li {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--client-muted-line);
}

.client-plan-meta span {
  color: var(--client-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-plan-meta strong {
  color: var(--client-ink);
  font-size: 0.9rem;
}

.client-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto 26px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.3), transparent 58%),
    var(--client-panel);
}

.client-alert p:last-child {
  margin-bottom: 0;
  color: var(--client-soft-ink);
}

.client-plan-choice-grid {
  display: grid;
  gap: 10px;
}

.client-plan-choice-grid button {
  min-height: 46px;
  padding: 11px 14px;
  color: var(--client-ink);
  background: #ffffff;
  border: 1px solid var(--client-line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.client-plan-choice-grid button:hover {
  border-color: var(--client-cyan);
  background: rgba(17, 138, 178, 0.08);
}

.client-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

.client-panel {
  padding: 24px;
}

.client-ticket-panel {
  grid-row: span 2;
}

.client-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--client-muted-line);
}

.client-panel-heading h2 {
  margin-bottom: 0;
}

.client-ticket-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.client-ticket-charge-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  color: var(--client-ink);
  background: rgba(255, 209, 102, 0.24);
  border: 1px solid rgba(23, 32, 42, 0.16);
  border-radius: 8px;
}

.client-ticket-charge-notice.is-hidden {
  display: none;
}

.client-ticket-charge-notice div {
  display: grid;
  gap: 4px;
}

.client-ticket-charge-notice strong {
  font-weight: 900;
}

.client-ticket-charge-notice span {
  color: var(--client-soft-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.client-ticket-charge-notice button {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--client-ink);
  background: #ffffff;
  border: 1px solid rgba(23, 32, 42, 0.24);
  border-radius: 8px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.client-ticket-charge-notice button:hover {
  border-color: var(--client-cyan);
  background: rgba(17, 138, 178, 0.08);
}

.client-ticket-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: rgba(17, 138, 178, 0.06);
  border: 1px solid rgba(17, 138, 178, 0.16);
  border-radius: 8px;
}

.client-ticket-item span {
  color: var(--client-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-ticket-item h3 {
  margin: 5px 0;
}

.client-ticket-item p {
  margin-bottom: 0;
  color: var(--client-soft-ink);
  font-size: 0.92rem;
}

.client-ticket-item .client-ticket-attachment {
  margin-top: 6px;
  color: var(--client-ink);
  font-weight: 800;
}

.client-ticket-item .client-ticket-billing {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-ticket-billing.is-covered {
  color: var(--client-success);
}

.client-ticket-billing.is-not-covered {
  color: var(--client-danger);
}

.client-ticket-item strong {
  color: var(--client-success);
}

.client-empty-state {
  margin: 0;
  padding: 16px;
  color: var(--client-soft-ink);
  background: rgba(23, 32, 42, 0.04);
  border: 1px dashed rgba(23, 32, 42, 0.18);
  border-radius: 8px;
}

.client-danger-link {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  color: var(--client-danger);
  background: rgba(239, 71, 111, 0.08);
  border: 1px solid rgba(183, 55, 77, 0.28);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.client-danger-link:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.client-profile-list,
.client-detail-list {
  margin: 0;
  padding: 0;
}

.client-profile-list {
  display: grid;
  gap: 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--client-muted-line);
}

.client-profile-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--client-muted-line);
}

.client-profile-list span {
  color: var(--client-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-profile-list strong {
  margin: 0;
  color: var(--client-ink);
  font-weight: 700;
}

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

.client-note-list li {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--client-muted-line);
}

.client-note-list strong {
  color: var(--client-ink);
}

.client-note-list span {
  color: var(--client-soft-ink);
}

.client-confirm-dialog {
  width: min(620px, calc(100% - 28px));
  padding: 0;
  border: 0;
  background: transparent;
}

.client-confirm-dialog::backdrop {
  background: rgba(23, 32, 42, 0.56);
  backdrop-filter: blur(6px);
}

.client-confirm-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
}

.client-confirm-panel h2 {
  margin-bottom: 0;
}

.client-confirm-panel p:not(.client-eyebrow) {
  color: var(--client-soft-ink);
}

.client-detail-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.client-detail-list li {
  position: relative;
  padding: 12px 12px 12px 38px;
  color: var(--client-soft-ink);
  background: rgba(17, 138, 178, 0.06);
  border: 1px solid rgba(17, 138, 178, 0.14);
  border-radius: 8px;
}

.client-detail-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--client-cyan);
}

.client-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--client-ink);
  background: var(--client-paper);
  border: 1px solid var(--client-line);
  border-radius: 8px;
  font-size: 1.4rem;
  cursor: pointer;
}

.client-check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(239, 71, 111, 0.08);
  border: 1px solid rgba(183, 55, 77, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.client-check-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.client-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .client-shell-header,
  .client-shell-nav {
    align-items: flex-start;
  }

  .client-shell-header,
  .client-auth-panel,
  .client-dashboard-hero,
  .client-alert,
  .client-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .client-shell-header {
    display: grid;
  }

  .client-shell-nav {
    flex-wrap: wrap;
  }

  .client-auth-panel {
    max-width: 760px;
  }

  .client-dashboard-hero > div {
    min-height: 240px;
  }

  .client-ticket-panel {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .client-page h1 {
    max-width: none;
    font-size: 2.5rem;
  }

  .client-page h2 {
    font-size: 1.55rem;
  }

  .client-auth-main,
  .client-dashboard {
    padding: 18px;
  }

  .client-auth-card,
  .client-panel,
  .client-plan-snapshot,
  .client-alert,
  .client-confirm-panel {
    padding: 18px;
  }

  .client-form-grid,
  .client-ticket-item,
  .client-ticket-charge-notice,
  .client-profile-list li {
    grid-template-columns: 1fr;
  }

  .client-plan-snapshot .client-button {
    width: 100%;
  }

  .client-panel-heading {
    display: grid;
  }

  .client-button,
  .client-dialog-actions .client-button {
    width: 100%;
  }
}

/* Owner admin prototype */
.admin-page {
  --admin-panel: rgba(255, 255, 255, 0.96);
  --admin-ink: var(--client-ink);
  --admin-muted: var(--client-soft-ink);
  --admin-line: rgba(23, 32, 42, 0.16);
}

.admin-dashboard {
  padding: clamp(28px, 4vw, 56px);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 4vw, 46px);
  max-width: 1440px;
  margin: 0 auto 24px;
  align-items: stretch;
}

.admin-hero > div {
  min-height: 250px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 5vw, 56px);
  color: var(--client-paper);
  background:
    linear-gradient(135deg, rgba(0, 166, 166, 0.22), transparent 58%),
    linear-gradient(90deg, rgba(23, 32, 42, 0.98), rgba(23, 32, 42, 0.86)),
    var(--client-ink);
  border-radius: 8px;
  box-shadow: var(--client-shadow);
}

.admin-hero h1 {
  color: var(--client-paper);
}

.admin-hero p:not(.client-eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(248, 251, 255, 0.76);
}

.admin-privacy-note {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.3), transparent 58%),
    var(--admin-panel);
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  box-shadow: var(--client-shadow);
}

.admin-privacy-note strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.admin-privacy-note span {
  color: var(--admin-muted);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto 22px;
}

.admin-stat-grid article,
.admin-panel {
  background: var(--admin-panel);
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  box-shadow: var(--client-shadow);
}

.admin-stat-grid article {
  min-height: 124px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
}

.admin-stat-grid span,
.admin-client-card span,
.admin-ticket-card span,
.admin-payment-row span,
.admin-info-list span {
  color: var(--client-cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr) minmax(310px, 0.86fr);
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.admin-panel {
  padding: 22px;
}

.admin-client-panel,
.admin-detail-panel {
  position: sticky;
  top: 86px;
}

.admin-ticket-panel {
  grid-row: span 2;
}

.admin-payment-panel {
  grid-column: 2 / -1;
}

.admin-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--client-muted-line);
}

.admin-panel-heading h2 {
  margin-bottom: 0;
}

.admin-ticket-filter-group {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(130px, 0.8fr);
  gap: 10px;
  min-width: min(100%, 360px);
}

.admin-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.42fr);
  gap: 10px;
  margin-bottom: 16px;
}

.admin-filter-row label,
.admin-compact-filter {
  display: grid;
  gap: 6px;
  color: var(--admin-ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-filter-row input,
.admin-filter-row select,
.admin-compact-filter select {
  min-height: 42px;
  width: 100%;
  padding: 9px 10px;
  color: var(--admin-ink);
  background: #ffffff;
  border: 1px solid rgba(23, 32, 42, 0.22);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.admin-client-list,
.admin-ticket-list,
.admin-payment-list,
.admin-detail-stack {
  display: grid;
  gap: 10px;
}

.admin-client-card {
  width: 100%;
  display: grid;
  gap: 5px;
  padding: 14px;
  text-align: left;
  color: var(--admin-ink);
  background: rgba(17, 138, 178, 0.05);
  border: 1px solid rgba(17, 138, 178, 0.14);
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.admin-client-card:hover,
.admin-client-card.is-selected {
  border-color: var(--client-cyan);
  background: rgba(17, 138, 178, 0.12);
}

.admin-client-card strong,
.admin-payment-row strong {
  color: var(--admin-ink);
  font-weight: 900;
}

.admin-client-card small,
.admin-payment-row small {
  color: var(--admin-muted);
  font-weight: 700;
}

.admin-ticket-card,
.admin-payment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: rgba(17, 138, 178, 0.05);
  border: 1px solid rgba(17, 138, 178, 0.14);
  border-radius: 8px;
}

.admin-ticket-card h3 {
  margin: 5px 0;
}

.admin-ticket-card p {
  margin-bottom: 0;
  color: var(--admin-muted);
}

.admin-ticket-card.is-closing,
.admin-ticket-main.is-closing {
  filter: grayscale(0.9);
  opacity: 0.62;
  background: rgba(23, 32, 42, 0.05);
  border-color: rgba(23, 32, 42, 0.14);
}

.admin-ticket-closing-note {
  margin-top: 8px;
  color: var(--admin-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-ticket-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.admin-ticket-actions button,
.admin-payment-row button,
.admin-ticket-actions select,
.admin-action-link,
.admin-back-link {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--admin-ink);
  background: #ffffff;
  border: 1px solid rgba(23, 32, 42, 0.22);
  border-radius: 8px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.admin-ticket-actions button:hover,
.admin-payment-row button:hover,
.admin-ticket-actions select:hover,
.admin-action-link:hover,
.admin-back-link:hover {
  border-color: var(--client-cyan);
  background: rgba(17, 138, 178, 0.08);
}

.admin-ticket-actions label {
  display: grid;
  gap: 6px;
  color: var(--client-cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-selected-client h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.admin-detail-stack section {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--client-muted-line);
}

.admin-detail-stack section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.admin-info-list,
.admin-mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-info-list li {
  display: grid;
  gap: 4px;
}

.admin-info-list strong,
.admin-mini-list li {
  color: var(--admin-ink);
  font-weight: 800;
}

.admin-mini-list li {
  padding: 10px;
  background: rgba(23, 32, 42, 0.04);
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 8px;
}

.admin-ticket-hero {
  margin-bottom: 22px;
}

.admin-ticket-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.admin-ticket-main,
.admin-ticket-side {
  display: grid;
  gap: 22px;
}

.admin-ticket-main .client-ticket-billing {
  width: fit-content;
  margin: -6px 0 0;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-ticket-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.admin-ticket-meta div {
  display: grid;
  gap: 5px;
  min-height: 96px;
  align-content: end;
  padding: 14px;
  background: rgba(17, 138, 178, 0.05);
  border: 1px solid rgba(17, 138, 178, 0.14);
  border-radius: 8px;
}

.admin-ticket-meta dt {
  color: var(--client-cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-ticket-meta dd {
  margin: 0;
  color: var(--admin-ink);
  font-weight: 900;
}

.admin-ticket-description {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--client-muted-line);
}

.admin-ticket-description h3,
.admin-ticket-main h3,
.admin-ticket-side h2 {
  margin: 0;
  font-size: 1rem;
}

.admin-ticket-description p,
.admin-ticket-side-copy,
.admin-ticket-media-empty p {
  margin: 0;
  color: var(--admin-muted);
}

.admin-ticket-media {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

.admin-ticket-media img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  background: rgba(23, 32, 42, 0.04);
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
}

.admin-ticket-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--admin-muted);
  font-weight: 800;
}

.admin-ticket-media-empty {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 16px;
  background: rgba(23, 32, 42, 0.04);
  border: 1px dashed rgba(23, 32, 42, 0.18);
  border-radius: 8px;
}

.admin-ticket-media-empty strong {
  color: var(--admin-ink);
}

.admin-ticket-media-empty span {
  color: var(--client-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-ticket-side {
  position: sticky;
  top: 86px;
}

.admin-ticket-side section {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--client-muted-line);
}

.admin-ticket-side section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 1180px) {
  .admin-grid,
  .admin-hero,
  .admin-ticket-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-client-panel,
  .admin-detail-panel,
  .admin-ticket-side {
    position: static;
  }

  .admin-payment-panel {
    grid-column: auto;
  }

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

@media (max-width: 700px) {
  .admin-dashboard {
    padding: 18px;
  }

  .admin-stat-grid,
  .admin-filter-row,
  .admin-ticket-filter-group,
  .admin-ticket-card,
  .admin-payment-row,
  .admin-ticket-meta {
    grid-template-columns: 1fr;
  }

  .admin-ticket-actions {
    justify-items: start;
  }

  .admin-ticket-actions button,
  .admin-payment-row button,
  .admin-action-link,
  .admin-back-link {
    width: 100%;
  }
}

/* Refined Tomlen Construction contractor demo */
body.tomlen-site-page {
  --tomlen-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --tomlen-font-heading: "Oswald", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --tomlen-font-utility: "Roboto Condensed", "Arial Narrow", "Inter", Arial, sans-serif;
  --tomlen-harvest-gold: #d68d05;
  --tomlen-golden-chestnut: #c77b47;
  --tomlen-black: #000000;
  --tomlen-blushed-brick: #b55454;
  --tomlen-soft-linen: #f2f2eb;
  --tomlen-ink-rgb: 0, 0, 0;
  --tomlen-gold-rgb: 214, 141, 5;
  --tomlen-chestnut-rgb: 199, 123, 71;
  --tomlen-brick-rgb: 181, 84, 84;
  --tomlen-paper-rgb: 242, 242, 235;
  --tomlen-ink: var(--tomlen-black);
  --tomlen-ink-soft: #1d1d1a;
  --tomlen-deep: var(--tomlen-black);
  --tomlen-forest: var(--tomlen-golden-chestnut);
  --tomlen-sage: var(--tomlen-soft-linen);
  --tomlen-copper: var(--tomlen-harvest-gold);
  --tomlen-copper-dark: var(--tomlen-golden-chestnut);
  --tomlen-bronze: var(--tomlen-golden-chestnut);
  --tomlen-cream: var(--tomlen-soft-linen);
  --tomlen-paper: var(--tomlen-soft-linen);
  --tomlen-mist: #f6eee6;
  --tomlen-muted: #34342f;
  --tomlen-line: rgba(var(--tomlen-ink-rgb), 0.18);
  --tomlen-light-line: rgba(var(--tomlen-paper-rgb), 0.2);
  margin: 0;
  color: var(--tomlen-ink);
  background:
    linear-gradient(90deg, rgba(var(--tomlen-ink-rgb), 0.028) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(0deg, rgba(var(--tomlen-ink-rgb), 0.024) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--tomlen-cream);
  font-family: var(--tomlen-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.tomlen-site-page::before {
  opacity: 0.68;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(var(--tomlen-paper-rgb), 0.14) 42% 44%, transparent 44%),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(var(--tomlen-paper-rgb), 0.2) 120px 122px, transparent 122px 180px),
    repeating-linear-gradient(0deg, transparent 0 150px, rgba(var(--tomlen-paper-rgb), 0.16) 150px 151px, transparent 151px 220px);
  animation: tomlen-soft-drift 38s linear infinite;
}

body.tomlen-site-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(var(--tomlen-gold-rgb), 0.08) 49% 50%, transparent 50%),
    linear-gradient(45deg, transparent 0 58%, rgba(var(--tomlen-chestnut-rgb), 0.055) 58% 59%, transparent 59%),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(var(--tomlen-paper-rgb), 0.12) 36px 37px, transparent 37px 74px);
  background-size: 340px 340px, 460px 460px, 148px 148px;
  animation: tomlen-plan-haze 54s linear infinite;
}

.tomlen-site-page main {
  position: relative;
  z-index: 1;
}

.tomlen-site-page h1,
.tomlen-site-page h2,
.tomlen-site-page h3,
.tomlen-site-page p {
  margin-top: 0;
}

.tomlen-site-page h1,
.tomlen-site-page h2,
.tomlen-site-page h3 {
  color: var(--tomlen-ink);
  font-family: var(--tomlen-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: none;
}

.tomlen-site-page h1 {
  max-width: 980px;
  margin-bottom: 24px;
  color: var(--tomlen-paper);
  font-size: clamp(3.2rem, 6.6vw, 7rem);
}

.tomlen-site-page h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.9rem);
}

.tomlen-site-page h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
}

.tomlen-site-page p {
  color: var(--tomlen-muted);
}

.tomlen-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(var(--tomlen-ink-rgb), 0.94);
  border-bottom: 1px solid rgba(var(--tomlen-paper-rgb), 0.14);
  backdrop-filter: blur(16px);
}

.tomlen-logo {
  display: inline-flex;
  align-items: center;
  width: min(210px, 42vw);
}

.tomlen-logo img {
  width: 100%;
  height: auto;
}

.tomlen-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-family: var(--tomlen-font-utility);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tomlen-nav a,
.tomlen-estimate,
.tomlen-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 6px;
  font-family: var(--tomlen-font-utility);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.tomlen-nav a {
  color: rgba(var(--tomlen-paper-rgb), 0.78);
  border: 1px solid transparent;
}

.tomlen-nav a:hover,
.tomlen-nav a:focus-visible {
  color: var(--tomlen-paper);
  border-color: rgba(var(--tomlen-paper-rgb), 0.24);
  background: rgba(var(--tomlen-paper-rgb), 0.08);
  outline: none;
}

.tomlen-estimate,
.tomlen-button-main {
  color: var(--tomlen-ink);
  background: var(--tomlen-copper);
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-estimate:hover,
.tomlen-estimate:focus-visible,
.tomlen-button-main:hover,
.tomlen-button-main:focus-visible {
  background: var(--tomlen-bronze);
  outline: none;
}

.tomlen-button {
  color: var(--tomlen-paper);
  border: 1px solid rgba(var(--tomlen-paper-rgb), 0.32);
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-button:not(.tomlen-button-main):hover,
.tomlen-button:not(.tomlen-button-main):focus-visible {
  color: var(--tomlen-ink);
  background: var(--tomlen-paper);
  outline: none;
}

.tomlen-hero {
  position: relative;
  min-height: calc(88vh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(86px, 10vw, 132px) clamp(18px, 6vw, 88px) clamp(54px, 7vw, 86px);
  overflow: hidden;
  isolation: isolate;
  background: var(--tomlen-ink);
}

.tomlen-hero::before,
.tomlen-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tomlen-hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(var(--tomlen-ink-rgb), 0.98) 0%, rgba(var(--tomlen-ink-rgb), 0.84) 46%, rgba(var(--tomlen-ink-rgb), 0.24) 78%),
    linear-gradient(0deg, rgba(var(--tomlen-ink-rgb), 0.86), transparent 50%);
}

.tomlen-hero::after {
  inset: 0;
  z-index: -1;
  opacity: 0.48;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(var(--tomlen-paper-rgb), 0.09) 48% 49%, transparent 49%),
    linear-gradient(0deg, transparent 0 58%, rgba(var(--tomlen-paper-rgb), 0.08) 58% 59%, transparent 59%),
    linear-gradient(135deg, transparent 0 64%, rgba(var(--tomlen-gold-rgb), 0.07) 64% 65%, transparent 65%),
    linear-gradient(45deg, transparent 0 38%, rgba(var(--tomlen-chestnut-rgb), 0.06) 38% 39%, transparent 39%),
    radial-gradient(circle at 72% 28%, transparent 0 90px, rgba(var(--tomlen-paper-rgb), 0.055) 91px 92px, transparent 93px);
  background-size: 190px 190px, 260px 260px, 360px 360px, 440px 440px, 420px 420px;
  background-position: 0 0, 0 0, 0 0, 0 0, 70% 24%;
  mix-blend-mode: screen;
  animation: tomlen-hero-geometry 42s linear infinite;
}

.tomlen-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.68);
}

.tomlen-hero-type {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  top: 110px;
  z-index: 0;
  display: grid;
  justify-items: end;
  gap: 2px;
  color: transparent;
  font-family: var(--tomlen-font-utility);
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
  opacity: 0.3;
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(var(--tomlen-paper-rgb), 0.5);
  text-stroke: 1px rgba(var(--tomlen-paper-rgb), 0.5);
}

.tomlen-hero-index {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  top: 34px;
  z-index: 2;
  display: grid;
  gap: 4px;
  justify-items: end;
  color: rgba(var(--tomlen-paper-rgb), 0.78);
  font-family: var(--tomlen-font-utility);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-hero-index span:first-child {
  color: var(--tomlen-harvest-gold);
  font-size: 2.4rem;
  line-height: 0.9;
}

.tomlen-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.tomlen-kicker {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 9px 13px;
  color: var(--tomlen-ink);
  background: var(--tomlen-soft-linen);
  border: 1px solid rgba(var(--tomlen-ink-rgb), 0.34);
  border-radius: 6px;
  font-family: var(--tomlen-font-utility);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tomlen-hero-content p:not(.tomlen-kicker) {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(var(--tomlen-paper-rgb), 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.tomlen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tomlen-hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(760px, calc(100% - 36px));
  border: 1px solid rgba(var(--tomlen-paper-rgb), 0.2);
  background: rgba(var(--tomlen-ink-rgb), 0.82);
  backdrop-filter: blur(14px);
}

.tomlen-hero-panel span {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 14px;
  color: var(--tomlen-paper);
  border-right: 1px solid rgba(var(--tomlen-paper-rgb), 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.tomlen-hero-panel span:last-child {
  border-right: 0;
}

.tomlen-intro,
.tomlen-work,
.tomlen-services,
.tomlen-split,
.tomlen-proof,
.tomlen-crew,
.tomlen-faq,
.tomlen-contact {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 88px);
}

.tomlen-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  color: var(--tomlen-ink);
  background:
    linear-gradient(90deg, var(--tomlen-blushed-brick) 0 10px, transparent 10px),
    var(--tomlen-paper);
  border-bottom: 1px solid var(--tomlen-line);
}

.tomlen-intro p:not(.tomlen-kicker) {
  margin-bottom: 0;
  color: var(--tomlen-ink-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.tomlen-statement {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(var(--tomlen-paper-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--tomlen-paper-rgb), 0.12);
  color: var(--tomlen-paper);
  background: var(--tomlen-ink);
}

.tomlen-statement div {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 34px clamp(18px, 4vw, 48px);
  border-right: 1px solid rgba(var(--tomlen-paper-rgb), 0.14);
}

.tomlen-statement div:last-child {
  border-right: 0;
}

.tomlen-statement span {
  color: var(--tomlen-harvest-gold);
  font-family: var(--tomlen-font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
}

.tomlen-statement p {
  max-width: 290px;
  margin: 0;
  color: rgba(var(--tomlen-paper-rgb), 0.82);
  font-weight: 800;
}

.tomlen-section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 5vw, 54px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.tomlen-section-type {
  grid-column: 1 / -1;
  display: grid;
  max-width: 820px;
  margin-bottom: -10px;
  color: transparent;
  font-family: var(--tomlen-font-utility);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  opacity: 0.2;
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px currentColor;
  text-stroke: 1px currentColor;
}

.tomlen-services .tomlen-section-type,
.tomlen-proof .tomlen-section-type,
.tomlen-crew .tomlen-section-type,
.tomlen-faq .tomlen-section-type {
  color: rgba(var(--tomlen-ink-rgb), 0.72);
}

.tomlen-work .tomlen-section-type {
  color: rgba(var(--tomlen-paper-rgb), 0.72);
}

.tomlen-section-heading .tomlen-kicker {
  grid-column: 1 / -1;
}

.tomlen-section-heading p:not(.tomlen-kicker) {
  margin-bottom: 0;
  color: var(--tomlen-muted);
  font-size: 1.04rem;
}

.tomlen-section-heading::after {
  display: none;
}

.tomlen-services {
  background:
    linear-gradient(90deg, rgba(var(--tomlen-ink-rgb), 0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--tomlen-cream);
}

.tomlen-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.tomlen-service-list article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  color: var(--tomlen-ink);
  background: var(--tomlen-paper);
  border: 1px solid var(--tomlen-line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(var(--tomlen-ink-rgb), 0.08);
}

.tomlen-service-list article::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 72px;
  height: 6px;
  background: linear-gradient(90deg, var(--tomlen-golden-chestnut), var(--tomlen-blushed-brick));
  opacity: 0.7;
  transform: none;
  border: 0;
}

.tomlen-service-list span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--tomlen-ink);
  background: var(--tomlen-soft-linen);
  border-radius: 6px;
  font-family: var(--tomlen-font-utility);
  font-weight: 900;
}

.tomlen-service-list h3 {
  margin-bottom: 14px;
}

.tomlen-service-list p {
  margin-bottom: 0;
}

.tomlen-work {
  color: var(--tomlen-paper);
  background: var(--tomlen-ink);
}

.tomlen-work h2,
.tomlen-work h3 {
  color: var(--tomlen-paper);
}

.tomlen-work .tomlen-section-heading p:not(.tomlen-kicker) {
  color: rgba(var(--tomlen-paper-rgb), 0.74);
}

.tomlen-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tomlen-project-grid article {
  position: relative;
  min-height: clamp(360px, 42vw, 540px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(var(--tomlen-paper-rgb), 0.16);
  border-radius: 8px;
  background: var(--tomlen-deep);
}

.tomlen-project-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(var(--tomlen-ink-rgb), 0.94), rgba(var(--tomlen-ink-rgb), 0.16) 64%),
    linear-gradient(135deg, transparent 0 64%, rgba(var(--tomlen-gold-rgb), 0.18) 64% 66%, transparent 66%);
}

.tomlen-project-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
  transition: transform 700ms ease;
}

.tomlen-project-grid article:hover img {
  transform: scale(1.04);
}

.tomlen-project-grid article > div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.tomlen-project-grid span,
.tomlen-crew-grid span {
  color: var(--tomlen-harvest-gold);
  font-family: var(--tomlen-font-utility);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-project-grid h3,
.tomlen-crew-grid h3 {
  margin: 8px 0 0;
}

.tomlen-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(var(--tomlen-paper-rgb), 0.045) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--tomlen-deep);
  overflow: hidden;
}

.tomlen-split::before {
  content: "How we work";
  position: absolute;
  left: clamp(18px, 6vw, 88px);
  top: 28px;
  color: transparent;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0.18;
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(var(--tomlen-paper-rgb), 0.74);
  text-stroke: 1px rgba(var(--tomlen-paper-rgb), 0.74);
}

.tomlen-split img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.88) contrast(1.05) brightness(0.9);
}

.tomlen-split > div {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background: rgba(var(--tomlen-ink-rgb), 0.72);
  border: 1px solid rgba(var(--tomlen-paper-rgb), 0.14);
  border-radius: 8px;
}

.tomlen-split > div::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(180px, 28vw);
  height: 8px;
  background: linear-gradient(90deg, var(--tomlen-harvest-gold), var(--tomlen-blushed-brick), transparent);
  opacity: 0.84;
}

.tomlen-split h2,
.tomlen-split h3 {
  color: var(--tomlen-paper);
}

.tomlen-split p,
.tomlen-split li {
  color: rgba(var(--tomlen-paper-rgb), 0.82);
}

.tomlen-split ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tomlen-split li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.tomlen-split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 3px;
  background: var(--tomlen-harvest-gold);
}

.tomlen-proof {
  background: var(--tomlen-paper);
}

.tomlen-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tomlen-proof-grid article {
  min-height: 245px;
  padding: 26px;
  background: var(--tomlen-mist);
  border: 1px solid var(--tomlen-line);
  border-radius: 8px;
}

.tomlen-proof-grid h3 {
  margin-bottom: 12px;
}

.tomlen-proof-grid p {
  margin-bottom: 0;
}

.tomlen-crew {
  background:
    linear-gradient(90deg, rgba(var(--tomlen-ink-rgb), 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--tomlen-cream);
  border-top: 1px solid var(--tomlen-line);
  border-bottom: 1px solid var(--tomlen-line);
}

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

.tomlen-crew-grid article {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  background: var(--tomlen-paper);
  border: 1px solid var(--tomlen-line);
  border-radius: 8px;
}

.tomlen-crew-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.tomlen-crew-grid article > div {
  display: grid;
  align-content: end;
  padding: 26px;
}

.tomlen-crew-grid p {
  margin: 12px 0 0;
}

.tomlen-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--tomlen-paper);
}

.tomlen-faq-list {
  display: grid;
  gap: 12px;
}

.tomlen-faq-list details {
  background: var(--tomlen-cream);
  border: 1px solid var(--tomlen-line);
  border-radius: 8px;
}

.tomlen-faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--tomlen-ink);
  font-family: var(--tomlen-font-utility);
  font-weight: 800;
  cursor: pointer;
}

.tomlen-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.tomlen-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  color: var(--tomlen-paper);
  background:
    linear-gradient(90deg, var(--tomlen-blushed-brick) 0 10px, transparent 10px),
    var(--tomlen-ink);
}

.tomlen-contact h2 {
  max-width: 850px;
  color: var(--tomlen-paper);
}

.tomlen-contact p:not(.tomlen-kicker) {
  max-width: 720px;
  color: rgba(var(--tomlen-paper-rgb), 0.8);
}

.tomlen-contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.tomlen-contact-details span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--tomlen-paper);
  background: rgba(var(--tomlen-paper-rgb), 0.08);
  border: 1px solid rgba(var(--tomlen-paper-rgb), 0.14);
  border-radius: 8px;
  font-family: var(--tomlen-font-utility);
  font-weight: 800;
}

.tomlen-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--tomlen-paper);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.tomlen-quote-form label {
  display: grid;
  gap: 7px;
  color: var(--tomlen-ink);
  font-family: var(--tomlen-font-utility);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tomlen-quote-form input,
.tomlen-quote-form select,
.tomlen-quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--tomlen-ink);
  background: var(--tomlen-cream);
  border: 1px solid rgba(var(--tomlen-ink-rgb), 0.24);
  border-radius: 6px;
  font: inherit;
}

.tomlen-quote-form textarea {
  resize: vertical;
}

.tomlen-quote-form input:focus,
.tomlen-quote-form select:focus,
.tomlen-quote-form textarea:focus {
  border-color: var(--tomlen-copper);
  outline: 3px solid rgba(var(--tomlen-gold-rgb), 0.28);
}

.tomlen-form-wide {
  grid-column: 1 / -1;
}

.tomlen-quote-form .tomlen-button-main {
  width: 100%;
  min-height: 54px;
  cursor: pointer;
}

.tomlen-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 6vw, 88px);
  color: rgba(var(--tomlen-paper-rgb), 0.78);
  background: var(--tomlen-ink);
  border-top: 1px solid rgba(var(--tomlen-paper-rgb), 0.14);
}

.tomlen-footer p {
  margin: 0;
  color: inherit;
}

.tomlen-footer a {
  color: var(--tomlen-paper);
  font-weight: 900;
  text-decoration: none;
}

@keyframes tomlen-soft-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 180px 0, -220px 0, 0 180px;
  }
}

@keyframes tomlen-plan-haze {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 340px 340px, -460px 460px, 148px 0;
  }
}

@keyframes tomlen-hero-geometry {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 70% 24%;
  }

  to {
    background-position: 190px 0, 0 260px, 360px 360px, -440px 440px, 76% 30%;
  }
}

@media (max-width: 1080px) {
  .tomlen-section-heading,
  .tomlen-intro,
  .tomlen-split,
  .tomlen-faq,
  .tomlen-contact {
    grid-template-columns: 1fr;
  }

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

  .tomlen-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 40px;
  }

  .tomlen-hero-type {
    top: 96px;
    font-size: 4.6rem;
  }

  .tomlen-section-type,
  .tomlen-split::before {
    font-size: 4rem;
  }
}

@media (max-width: 820px) {
  .tomlen-header {
    grid-template-columns: minmax(150px, 1fr) auto;
  }

  .tomlen-nav {
    display: none;
  }

  .tomlen-estimate {
    width: auto;
    white-space: nowrap;
  }

  .tomlen-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .tomlen-hero::before {
    background:
      linear-gradient(0deg, rgba(var(--tomlen-ink-rgb), 0.94), rgba(var(--tomlen-ink-rgb), 0.58)),
      linear-gradient(90deg, rgba(var(--tomlen-ink-rgb), 0.92), rgba(var(--tomlen-ink-rgb), 0.18));
  }

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

  .tomlen-hero-panel span:nth-child(2) {
    border-right: 0;
  }

  .tomlen-hero-panel span:nth-child(1),
  .tomlen-hero-panel span:nth-child(2) {
    border-bottom: 1px solid rgba(var(--tomlen-paper-rgb), 0.16);
  }

  .tomlen-crew-grid,
  .tomlen-crew-grid article {
    grid-template-columns: 1fr;
  }

  .tomlen-contact-details,
  .tomlen-quote-form {
    grid-template-columns: 1fr;
  }

  .tomlen-statement {
    grid-template-columns: 1fr;
  }

  .tomlen-statement div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--tomlen-paper-rgb), 0.14);
  }

  .tomlen-statement div:last-child {
    border-bottom: 0;
  }

  .tomlen-hero-type {
    right: 18px;
    top: 124px;
    font-size: 3rem;
    opacity: 0.18;
  }

  .tomlen-hero-index {
    display: none;
  }
}

@media (max-width: 620px) {
  .tomlen-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .tomlen-logo {
    width: min(156px, 48vw);
  }

  .tomlen-estimate {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.74rem;
  }

  .tomlen-site-page h1 {
    max-width: 100%;
    font-size: 2.82rem;
  }

  .tomlen-site-page h2 {
    font-size: 2.05rem;
  }

  .tomlen-actions,
  .tomlen-button {
    width: 100%;
  }

  .tomlen-hero {
    padding: 64px 16px 42px;
  }

  .tomlen-hero-type {
    display: none;
  }

  .tomlen-section-type,
  .tomlen-split::before {
    font-size: 2.35rem;
  }

  .tomlen-statement span {
    font-size: 3.2rem;
  }

  .tomlen-hero-panel,
  .tomlen-project-grid,
  .tomlen-service-list,
  .tomlen-proof-grid {
    grid-template-columns: 1fr;
  }

  .tomlen-hero-panel span,
  .tomlen-hero-panel span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--tomlen-paper-rgb), 0.16);
  }

  .tomlen-hero-panel span:last-child {
    border-bottom: 0;
  }

  .tomlen-service-list article,
  .tomlen-proof-grid article {
    min-height: auto;
  }

  .tomlen-split img {
    min-height: 340px;
  }

  .tomlen-contact-details span {
    min-height: 48px;
  }
}

/* Sage Path Xeriscaping demo */
.sx-page {
  --sx-ink: #2b261f;
  --sx-ink-soft: #645b50;
  --sx-paper: #fcf7ef;
  --sx-wash: #efe4d4;
  --sx-sand: #d8c39c;
  --sx-clay: #c47a55;
  --sx-sage: #87986f;
  --sx-teal: #66857c;
  --sx-sun: #e3ba6a;
  --sx-line: rgba(43, 38, 31, 0.12);
  --sx-shadow: 0 22px 60px rgba(43, 38, 31, 0.12);
  color: var(--sx-ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(227, 186, 106, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(135, 152, 111, 0.08), transparent 24%),
    var(--sx-paper);
}

.sx-page::before {
  content: none;
}

.sx-header,
.sx-brand,
.sx-nav,
.sx-call,
.sx-button {
  display: flex;
  align-items: center;
}

.sx-header {
  position: sticky;
  top: 0;
  z-index: 5;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(252, 247, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sx-line);
}

.sx-brand {
  gap: 12px;
  color: var(--sx-ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.sx-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--sx-paper);
  background:
    linear-gradient(140deg, var(--sx-teal), var(--sx-sage));
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(252, 247, 239, 0.34);
}

.sx-nav {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sx-nav a,
.sx-call {
  padding: 10px 14px;
  color: var(--sx-ink);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
}

.sx-nav a:hover,
.sx-call:hover {
  border-color: var(--sx-line);
  background: rgba(255, 255, 255, 0.6);
}

.sx-call {
  border-color: var(--sx-line);
}

.sx-hero,
.sx-section {
  padding: clamp(38px, 6vw, 76px) clamp(20px, 5vw, 56px);
}

.sx-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 90px);
}

.sx-kicker {
  margin: 0 0 16px;
  color: var(--sx-clay);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sx-hero h1,
.sx-heading h2,
.sx-card h3,
.sx-project-card h3,
.sx-contact h2 {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

.sx-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.sx-hero-copy > p:not(.sx-kicker),
.sx-intro > p,
.sx-card p,
.sx-project-card p,
.sx-contact p,
.sx-strip span,
.sx-meta-list li,
.sx-scene-note span {
  color: var(--sx-ink-soft);
}

.sx-hero-copy > p:not(.sx-kicker) {
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: 1.1rem;
}

.sx-actions,
.sx-mini-list,
.sx-service-grid,
.sx-project-grid,
.sx-approach-grid,
.sx-contact-list {
  display: grid;
}

.sx-actions {
  grid-auto-flow: column;
  width: max-content;
  gap: 12px;
  margin-top: 28px;
}

.sx-button {
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--sx-ink);
  text-decoration: none;
  border: 1px solid var(--sx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.sx-button:hover {
  transform: translateY(-1px);
  border-color: rgba(43, 38, 31, 0.2);
}

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

.sx-button-primary:hover {
  background: var(--sx-teal);
  border-color: var(--sx-teal);
}

.sx-mini-list {
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.sx-mini-list li {
  padding: 10px 14px;
  color: var(--sx-ink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--sx-line);
  border-radius: 999px;
}

.sx-hero-media {
  min-width: 0;
}

.sx-scene {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--sx-line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, #f7e9c8 0%, #f3debb 34%, #e8d6b4 34%, #e8d6b4 100%);
  box-shadow: var(--sx-shadow);
}

.sx-scene-sun,
.sx-scene-mesa,
.sx-scene-house,
.sx-scene-door,
.sx-scene-window,
.sx-scene-yard,
.sx-scene-path,
.sx-scene-plant {
  position: absolute;
  display: block;
}

.sx-scene-sun {
  top: 46px;
  right: 54px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(227, 186, 106, 0.92);
}

.sx-scene-mesa {
  left: -4%;
  right: -4%;
  bottom: 43%;
  height: 120px;
  background:
    linear-gradient(180deg, rgba(196, 122, 85, 0.16), rgba(196, 122, 85, 0.22)),
    linear-gradient(90deg, #dba886 0%, #c6805c 35%, #d9a77d 70%, #cb8661 100%);
  clip-path: polygon(0 100%, 8% 58%, 19% 68%, 30% 32%, 43% 57%, 55% 22%, 70% 60%, 83% 38%, 100% 68%, 100% 100%);
}

.sx-scene-house {
  left: 18%;
  bottom: 28%;
  width: 34%;
  height: 27%;
  background: #f8f0e2;
  border-radius: 22px 22px 14px 14px;
  box-shadow: inset 0 -14px 0 rgba(216, 195, 156, 0.7);
}

.sx-scene-house::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -18%;
  height: 24%;
  background: var(--sx-clay);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  border-radius: 12px 12px 0 0;
}

.sx-scene-door {
  left: 29%;
  bottom: 28%;
  width: 7%;
  height: 14%;
  background: var(--sx-teal);
  border-radius: 10px 10px 0 0;
}

.sx-scene-window {
  bottom: 37%;
  width: 7%;
  height: 8%;
  background: rgba(102, 133, 124, 0.26);
  border-radius: 8px;
}

.sx-scene-window-a {
  left: 23%;
}

.sx-scene-window-b {
  left: 39%;
}

.sx-scene-yard {
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 26%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12px 12px, rgba(216, 195, 156, 0.72) 0 2px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(180deg, #cdb483 0%, #bfa173 100%);
}

.sx-scene-path {
  left: 31%;
  bottom: 10%;
  width: 17%;
  height: 23%;
  background: #efe3ce;
  clip-path: polygon(40% 0, 72% 0, 100% 100%, 0 100%);
  border-radius: 12px;
}

.sx-scene-plant {
  bottom: 17%;
  width: 58px;
  height: 82px;
  background: linear-gradient(180deg, var(--sx-sage), #6e7e58);
  clip-path: polygon(50% 0, 65% 28%, 100% 18%, 78% 52%, 92% 100%, 50% 72%, 8% 100%, 22% 52%, 0 18%, 35% 28%);
}

.sx-scene-plant-a {
  left: 15%;
}

.sx-scene-plant-b {
  left: 56%;
  height: 68px;
}

.sx-scene-plant-c {
  right: 12%;
  height: 94px;
}

.sx-scene-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 240px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(252, 247, 239, 0.88);
  border: 1px solid rgba(43, 38, 31, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.sx-scene-note strong {
  color: var(--sx-ink);
}

.sx-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 56px) clamp(20px, 5vw, 56px);
}

.sx-strip article,
.sx-card,
.sx-project-card,
.sx-contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sx-line);
  border-radius: 24px;
  box-shadow: var(--sx-shadow);
}

.sx-strip article {
  padding: 22px;
}

.sx-strip strong,
.sx-card h3,
.sx-project-card h3,
.sx-contact-list span,
.sx-heading h2 {
  color: var(--sx-ink);
}

.sx-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.sx-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: end;
}

.sx-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.sx-intro > p {
  margin: 0;
  max-width: 40rem;
  font-size: 1.06rem;
}

.sx-service-grid,
.sx-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

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

.sx-card,
.sx-project-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.sx-card h3,
.sx-project-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.sx-card p,
.sx-project-card p,
.sx-contact p {
  margin: 0;
}

.sx-project-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(227, 186, 106, 0.28), rgba(216, 195, 156, 0.58));
}

.sx-project-visual::before,
.sx-project-visual::after,
.sx-project-stone,
.sx-project-plant {
  position: absolute;
  display: block;
}

.sx-project-visual::before {
  content: "";
  inset: 58% 6% 10% 6%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10px 10px, rgba(252, 247, 239, 0.35) 0 2px, transparent 2px) 0 0 / 22px 22px,
    linear-gradient(180deg, #cfb489 0%, #bc9b69 100%);
}

.sx-project-visual::after {
  content: "";
  width: 40%;
  height: 72%;
  right: 10%;
  top: 18%;
  border-radius: 22px;
  background: rgba(252, 247, 239, 0.6);
}

.sx-project-entry::after {
  width: 34%;
  right: 12%;
}

.sx-project-sideyard::after {
  width: 20%;
  height: 86%;
  left: 40%;
  right: auto;
  top: 8%;
}

.sx-project-patio::after {
  inset: 18% 20% 40% 20%;
  width: auto;
  height: auto;
  border-radius: 18px;
}

.sx-project-stone {
  border-radius: 999px;
  background: #8d6f4e;
}

.sx-project-stone-a {
  width: 34px;
  height: 20px;
  left: 18%;
  top: 28%;
}

.sx-project-stone-b {
  width: 20px;
  height: 20px;
  left: 26%;
  top: 18%;
}

.sx-project-stone-c {
  width: 28px;
  height: 18px;
  left: 18%;
  top: 36%;
}

.sx-project-stone-d {
  width: 24px;
  height: 24px;
  right: 20%;
  top: 42%;
}

.sx-project-stone-e {
  width: 24px;
  height: 16px;
  left: 24%;
  top: 62%;
}

.sx-project-stone-f {
  width: 30px;
  height: 20px;
  right: 18%;
  top: 64%;
}

.sx-project-plant {
  width: 42px;
  height: 56px;
  background: linear-gradient(180deg, var(--sx-sage), #6d7e57);
  clip-path: polygon(50% 0, 64% 26%, 100% 18%, 78% 56%, 90% 100%, 50% 70%, 10% 100%, 22% 56%, 0 18%, 36% 26%);
}

.sx-project-plant-a {
  left: 12%;
  bottom: 20%;
}

.sx-project-plant-b {
  right: 14%;
  bottom: 18%;
}

.sx-project-plant-c {
  left: 12%;
  bottom: 24%;
  height: 68px;
}

.sx-project-plant-d {
  right: 12%;
  bottom: 24%;
  height: 48px;
}

.sx-project-plant-e {
  left: 14%;
  bottom: 20%;
}

.sx-project-plant-f {
  right: 16%;
  bottom: 14%;
  height: 72px;
}

.sx-meta-list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  align-items: flex-start;
  flex-direction: column;
}

.sx-approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sx-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.sx-contact-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.sx-contact-list {
  align-items: start;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sx-contact-list li {
  display: grid;
  gap: 6px;
}

.sx-contact-list a,
.sx-contact-list strong {
  color: var(--sx-ink);
  text-decoration: none;
}

.sx-contact-list a:hover {
  color: var(--sx-clay);
}

.sx-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 56px) 44px;
  color: var(--sx-ink-soft);
}

.sx-footer p {
  margin: 0;
}

.sx-footer a {
  color: var(--sx-ink);
  text-decoration: none;
}

.sx-footer a:hover {
  color: var(--sx-clay);
}

@media (max-width: 1080px) {
  .sx-hero,
  .sx-intro,
  .sx-contact,
  .sx-service-grid,
  .sx-project-grid,
  .sx-approach-grid,
  .sx-strip {
    grid-template-columns: 1fr 1fr;
  }

  .sx-hero,
  .sx-intro,
  .sx-contact {
    grid-template-columns: 1fr;
  }

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

  .sx-project-grid,
  .sx-approach-grid,
  .sx-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .sx-header,
  .sx-nav {
    flex-wrap: wrap;
  }

  .sx-header {
    justify-content: center;
  }

  .sx-actions,
  .sx-mini-list {
    grid-auto-flow: row;
    width: 100%;
  }

  .sx-mini-list,
  .sx-service-grid {
    grid-template-columns: 1fr;
  }

  .sx-scene {
    min-height: 380px;
  }

  .sx-hero h1 {
    max-width: 100%;
  }

  .sx-footer {
    flex-direction: column;
  }
}

/* Sage Path Xeriscaping simplified layout overrides */
.sx-page {
  background:
    linear-gradient(180deg, rgba(135, 152, 111, 0.06), transparent 220px),
    var(--sx-paper);
}

.sx-header {
  position: sticky;
  top: 0;
  padding: 14px clamp(20px, 5vw, 40px);
  background: rgba(252, 247, 239, 0.94);
  box-shadow: none;
  border-bottom: 1px solid var(--sx-line);
}

.sx-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 40px) 56px;
}

.sx-overview,
.sx-key-grid,
.sx-steps,
.sx-contact-grid {
  display: grid;
}

.sx-overview {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.sx-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sx-intro-card,
.sx-summary-card,
.sx-compact-card,
.sx-job-item,
.sx-step,
.sx-contact-grid > .sx-panel {
  padding: 20px 0;
}

.sx-intro-card h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.sx-lead {
  margin: 14px 0 0;
  color: var(--sx-ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.sx-copy {
  margin: 12px 0 0;
  max-width: 44rem;
  color: var(--sx-ink-soft);
}

.sx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.sx-summary-card h2,
.sx-section-head h2,
.sx-compact-card h3,
.sx-job-copy h3,
.sx-step h3,
.sx-contact-grid h3 {
  margin: 0;
  color: var(--sx-ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

.sx-summary-card h2,
.sx-section-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.08;
}

.sx-check-list,
.sx-inline-meta,
.sx-note-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sx-check-list {
  display: grid;
  gap: 10px;
}

.sx-check-list li,
.sx-inline-meta li,
.sx-note-list li {
  color: var(--sx-ink-soft);
}

.sx-check-list li {
  padding-left: 18px;
  position: relative;
}

.sx-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sx-clay);
}

.sx-yard-card {
  position: relative;
  min-height: 200px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, #f2e4c6 0%, #f2e4c6 40%, #dec395 40%, #ceb07b 100%);
  border: 0;
}

.sx-yard-house,
.sx-yard-path,
.sx-yard-bed,
.sx-yard-plant {
  position: absolute;
  display: block;
}

.sx-yard-house {
  left: 18px;
  top: 26px;
  width: 108px;
  height: 72px;
  border-radius: 0;
  background: #f8f0e2;
  box-shadow: inset 0 -10px 0 rgba(216, 195, 156, 0.64);
}

.sx-yard-house::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -16px;
  height: 22px;
  background: var(--sx-clay);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.sx-yard-path {
  left: 62px;
  bottom: 0;
  width: 42px;
  height: 96px;
  background: #efe4d1;
  clip-path: polygon(28% 0, 76% 0, 100% 100%, 0 100%);
}

.sx-yard-bed {
  bottom: 18px;
  height: 72px;
  border-radius: 999px;
  background: rgba(126, 145, 102, 0.32);
}

.sx-yard-bed-a {
  left: 18px;
  width: 86px;
}

.sx-yard-bed-b {
  right: 16px;
  width: 120px;
}

.sx-yard-plant {
  width: 30px;
  height: 44px;
  background: linear-gradient(180deg, var(--sx-sage), #667754);
  clip-path: polygon(50% 0, 65% 28%, 100% 20%, 74% 52%, 88% 100%, 50% 72%, 12% 100%, 26% 52%, 0 20%, 35% 28%);
}

.sx-yard-plant-a {
  left: 24px;
  bottom: 46px;
}

.sx-yard-plant-b {
  left: 104px;
  bottom: 32px;
}

.sx-yard-plant-c {
  right: 28px;
  bottom: 44px;
  height: 52px;
}

.sx-section {
  padding: 18px 0 0;
}

.sx-section-head {
  margin-bottom: 14px;
}

.sx-section-head .sx-kicker {
  margin-bottom: 10px;
}

.sx-key-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--sx-line);
}

.sx-compact-card {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--sx-line);
}

.sx-compact-card h3 {
  font-size: 1.15rem;
}

.sx-compact-card p,
.sx-job-copy p,
.sx-step p {
  margin: 0;
  color: var(--sx-ink-soft);
}

.sx-job-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--sx-line);
}

.sx-job-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--sx-line);
}

.sx-job-visual {
  min-height: 120px;
  border-radius: 0;
  border: 0;
  background-color: #e7d3ad;
  background-repeat: no-repeat;
}

.sx-job-visual-a {
  background:
    linear-gradient(180deg, transparent 0 48%, #b89862 48% 100%),
    linear-gradient(120deg, transparent 0 42%, #ede3d0 42% 58%, transparent 58%),
    radial-gradient(circle at 28% 68%, #73835d 0 18px, transparent 19px),
    radial-gradient(circle at 74% 66%, #73835d 0 14px, transparent 15px),
    #e7d3ad;
}

.sx-job-visual-b {
  background:
    linear-gradient(180deg, transparent 0 44%, #bea06d 44% 100%),
    linear-gradient(90deg, transparent 0 44%, #e7ddc9 44% 56%, transparent 56%),
    radial-gradient(circle at 22% 64%, #73835d 0 12px, transparent 13px),
    radial-gradient(circle at 78% 58%, #73835d 0 18px, transparent 19px),
    #e7d3ad;
}

.sx-job-visual-c {
  background:
    linear-gradient(180deg, transparent 0 50%, #b69763 50% 100%),
    linear-gradient(0deg, transparent 0 28%, #efe5d1 28% 58%, transparent 58%),
    radial-gradient(circle at 24% 74%, #73835d 0 14px, transparent 15px),
    radial-gradient(circle at 74% 74%, #73835d 0 16px, transparent 17px),
    #e7d3ad;
}

.sx-job-copy {
  display: grid;
  gap: 10px;
}

.sx-job-copy h3 {
  font-size: 1.22rem;
}

.sx-inline-meta {
  display: grid;
  gap: 6px;
}

.sx-inline-meta strong,
.sx-note-list strong {
  color: var(--sx-ink);
}

.sx-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--sx-line);
}

.sx-step {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--sx-line);
}

.sx-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--sx-paper);
  background: var(--sx-ink);
  border-radius: 50%;
  font-weight: 800;
}

.sx-step h3 {
  font-size: 1.08rem;
}

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

.sx-note-list {
  display: grid;
  gap: 14px;
}

.sx-summary-card,
.sx-contact-grid > .sx-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.sx-brand-mark,
.sx-button,
.sx-nav a,
.sx-call,
.sx-job-visual,
.sx-yard-card {
  border-radius: 0;
}

.sx-brand-mark {
  box-shadow: none;
}

.sx-nav {
  gap: 18px;
}

.sx-nav a,
.sx-call {
  padding: 4px 0;
  border: 0;
  background: transparent;
}

.sx-nav a:hover,
.sx-call:hover {
  border-color: transparent;
  background: transparent;
  color: var(--sx-clay);
}

.sx-button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.sx-button-primary {
  padding: 10px 14px;
  color: var(--sx-paper);
  background: var(--sx-ink);
}

.sx-button:not(.sx-button-primary) {
  color: var(--sx-ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sx-button:hover {
  transform: none;
  border-color: transparent;
}

.sx-button-primary:hover {
  background: var(--sx-teal);
  border-color: transparent;
}

.sx-step span {
  border-radius: 0;
}

.sx-note-list a,
.sx-note-list span {
  display: block;
  margin-top: 4px;
  color: var(--sx-ink-soft);
  text-decoration: none;
}

.sx-note-list a:hover {
  color: var(--sx-clay);
}

.sx-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 40px) 42px;
}

@media (max-width: 980px) {
  .sx-overview,
  .sx-contact-grid,
  .sx-key-grid,
  .sx-steps {
    grid-template-columns: 1fr;
  }

  .sx-job-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sx-main {
    padding-top: 20px;
  }

  .sx-header {
    position: static;
    justify-content: center;
  }

  .sx-nav {
    justify-content: flex-start;
  }
}

/* Northline Bookkeeping demo */
.nl-page {
  --nl-ink: #10171d;
  --nl-ink-soft: #50606c;
  --nl-paper: #f3f7f8;
  --nl-line: #cfd8dd;
  --nl-side: #121b23;
  --nl-accent: #72d5bf;
  --nl-accent-dark: #1d7a74;
  margin: 0;
  color: var(--nl-ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background:
    linear-gradient(180deg, #fbfcfd 0%, var(--nl-paper) 24%, var(--nl-paper) 100%);
}

.nl-page::before {
  content: none;
}

.nl-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.nl-side {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 32px 28px;
  color: rgba(255, 255, 255, 0.88);
  background: var(--nl-side);
}

.nl-brand {
  color: #f4fbfb;
  text-decoration: none;
}

.nl-brand span,
.nl-brand small,
.nl-kicker,
.nl-button,
.nl-step-number,
.nl-step-meta,
.nl-report-head span,
.nl-report-row span {
  font-family: "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

.nl-brand span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nl-brand small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nl-side-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.nl-nav {
  display: grid;
}

.nl-nav a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nl-nav a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nl-nav a:hover {
  color: var(--nl-accent);
}

.nl-side-meta {
  display: grid;
  gap: 16px;
}

.nl-side-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nl-side-meta strong {
  display: block;
  margin-top: 4px;
  color: #f4fbfb;
  font-weight: 600;
}

.nl-main {
  padding: 36px 40px 48px;
}

.nl-section {
  padding: 24px 0 34px;
  border-top: 1px solid var(--nl-line);
}

.nl-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.nl-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 32px;
  align-items: start;
}

.nl-kicker {
  margin: 0 0 12px;
  color: var(--nl-accent-dark);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nl-intro h1,
.nl-section-head h2,
.nl-service h3,
.nl-step h3 {
  margin: 0;
  font-family: "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.nl-intro h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.nl-intro-lead,
.nl-copy,
.nl-service p,
.nl-step p,
.nl-note-list li,
.nl-report-card strong,
.nl-metric-row span {
  color: var(--nl-ink-soft);
}

.nl-intro-lead {
  max-width: 38rem;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.nl-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.nl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: var(--nl-ink);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--nl-ink);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.nl-button:hover {
  color: var(--nl-accent-dark);
  border-color: var(--nl-accent-dark);
}

.nl-button-primary {
  color: #f7fbfc;
  background: var(--nl-ink);
}

.nl-button-primary:hover {
  color: #f7fbfc;
  background: var(--nl-accent-dark);
  border-color: var(--nl-accent-dark);
}

.nl-stat-panel {
  display: grid;
}

.nl-metric-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--nl-line);
}

.nl-metric-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.nl-metric-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--nl-ink);
  font-family: "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.46rem;
  text-transform: uppercase;
}

.nl-metric-row em {
  color: var(--nl-accent-dark);
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 700;
}

.nl-section-head {
  margin-bottom: 16px;
}

.nl-section-head h2 {
  max-width: 22ch;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
}

.nl-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid var(--nl-line);
}

.nl-service {
  padding: 18px 0;
  border-bottom: 1px solid var(--nl-line);
}

.nl-service h3 {
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.nl-service p {
  margin: 8px 0 0;
}

.nl-reports .nl-section-head h2 {
  max-width: 18ch;
}

.nl-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.nl-copy {
  max-width: 40rem;
  margin: 0;
  line-height: 1.72;
}

.nl-note-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.nl-report-card {
  padding: 18px 20px 20px;
  background: #e8eff1;
  border-left: 4px solid var(--nl-ink);
}

.nl-report-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 23, 29, 0.12);
}

.nl-report-head span {
  color: var(--nl-accent-dark);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nl-report-head strong,
.nl-report-row strong {
  color: var(--nl-ink);
}

.nl-report-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 23, 29, 0.12);
}

.nl-report-row span {
  color: var(--nl-ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nl-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 80px;
  padding-top: 18px;
}

.nl-bar {
  width: 26px;
  background: var(--nl-ink);
}

.nl-bar-a {
  height: 42px;
}

.nl-bar-b {
  height: 68px;
  background: var(--nl-accent-dark);
}

.nl-bar-c {
  height: 54px;
  background: #7f93a1;
}

.nl-steps {
  display: grid;
  border-top: 1px solid var(--nl-line);
}

.nl-step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--nl-line);
}

.nl-step-number {
  color: var(--nl-accent-dark);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}

.nl-step h3 {
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.nl-step p {
  margin: 6px 0 0;
}

.nl-step-meta {
  margin: 0;
  color: var(--nl-ink-soft);
  font-size: 0.84rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.nl-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.nl-contact-block {
  display: grid;
  gap: 18px;
}

.nl-contact-block .nl-note-list {
  margin-top: 0;
  padding-left: 0;
  list-style: none;
}

.nl-contact-block .nl-note-list strong {
  color: var(--nl-ink);
}

.nl-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--nl-line);
  color: var(--nl-ink-soft);
}

.nl-footer p {
  margin: 0;
}

.nl-footer a {
  color: var(--nl-ink);
  text-decoration: none;
}

.nl-footer a:hover {
  color: var(--nl-accent-dark);
}

@media (max-width: 1040px) {
  .nl-shell {
    grid-template-columns: 1fr;
  }

  .nl-side {
    position: static;
    min-height: auto;
  }

  .nl-main {
    padding-top: 28px;
  }

  .nl-intro,
  .nl-report-layout,
  .nl-contact-layout {
    grid-template-columns: 1fr;
  }

  .nl-step {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .nl-step-meta {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .nl-main {
    padding: 24px 20px 40px;
  }

  .nl-side {
    padding: 24px 20px;
  }

  .nl-service-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nl-intro h1 {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.tomlen-site-page::before,
  body.tomlen-site-page::after,
  .tomlen-hero::after {
    animation: none;
  }

  .tomlen-project-grid img {
    transition: none;
  }
}

/* Win Logistics Trucking demo */
.win-logistics-summary {
  background:
    linear-gradient(135deg, rgba(21, 50, 82, 0.92), rgba(12, 28, 48, 0.96)),
    var(--ink);
  color: #ecf4fb;
}

.win-logistics-summary h2,
.win-logistics-summary p {
  color: inherit;
}

.win-logistics-summary span {
  color: #ffb547;
}

.win-logistics-summary .button.primary {
  color: #0d2035;
  background: #ffb547;
  border-color: #ffb547;
}

.win-logistics-summary .button.primary:hover {
  color: #0d2035;
  background: #ffd089;
  border-color: #ffd089;
}

.wl-page {
  --wl-navy: #10263c;
  --wl-steel: #1d466b;
  --wl-steel-deep: #153552;
  --wl-paper: #eef3f7;
  --wl-white: #f8fbfd;
  --wl-ink: #0f1d29;
  --wl-copy: #465767;
  --wl-line: rgba(15, 29, 41, 0.12);
  --wl-orange: #ffb547;
  --wl-orange-deep: #de9528;
  --wl-shadow: 0 22px 55px rgba(9, 24, 39, 0.16);
  color: var(--wl-ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 181, 71, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fbfd 0%, var(--wl-paper) 22%, var(--wl-paper) 100%);
}

.wl-page::before {
  background:
    linear-gradient(90deg, rgba(16, 38, 60, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(16, 38, 60, 0.04) 1px, transparent 1px) 0 0 / 28px 28px;
}

.wl-page main {
  display: block;
}

.wl-page h1,
.wl-page h2,
.wl-page h3,
.wl-page strong,
.wl-brand strong,
.wl-kicker,
.wl-button,
.wl-service-card span,
.wl-strip span,
.wl-text-link {
  font-family: "Bebas Neue", "Roboto Condensed", "Arial Narrow", "Inter", Arial, sans-serif;
  letter-spacing: 0.03em;
}

.wl-page h1,
.wl-page h2,
.wl-page h3 {
  margin: 0;
  color: var(--wl-ink);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.wl-page p {
  margin: 0;
  color: var(--wl-copy);
}

.wl-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wl-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 26px;
  background: rgba(248, 251, 253, 0.92);
  border-bottom: 1px solid rgba(16, 38, 60, 0.08);
  backdrop-filter: blur(14px);
}

.wl-brand {
  display: inline-flex;
  align-items: center;
  color: var(--wl-ink);
  text-decoration: none;
}

.wl-brand-logo {
  display: block;
  width: clamp(180px, 16vw, 238px);
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 24, 39, 0.16);
}

.wl-footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 12px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(9, 24, 39, 0.14);
}

.wl-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wl-nav a,
.wl-call,
.wl-button {
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.wl-nav a {
  padding: 10px 14px;
  color: var(--wl-ink);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
}

.wl-nav a:hover,
.wl-nav a[aria-current="page"] {
  color: var(--wl-steel-deep);
  background: rgba(29, 70, 107, 0.08);
  border-color: rgba(29, 70, 107, 0.14);
}

.wl-call,
.wl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 0.96rem;
  font-weight: 700;
}

.wl-call {
  color: var(--wl-white);
  background: var(--wl-navy);
}

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

.wl-hero,
.wl-page-hero {
  position: relative;
  overflow: hidden;
}

.wl-hero {
  min-height: 78vh;
  padding: 0 0 44px;
  background: var(--wl-navy);
}

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

.wl-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 23, 38, 0.86), rgba(9, 23, 38, 0.42)),
    linear-gradient(180deg, rgba(9, 23, 38, 0.12), rgba(9, 23, 38, 0.72));
}

.wl-hero-grid,
.wl-page-hero-grid,
.wl-split,
.wl-statement-grid,
.wl-contact-grid {
  display: grid;
  gap: 28px;
}

.wl-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.8fr);
  align-items: end;
  min-height: 78vh;
  padding: 132px 0 0;
}

.wl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--wl-orange);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wl-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.wl-home h1,
.wl-page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 8vw, 6.7rem);
}

.wl-page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 6vw, 5rem);
}

.wl-lead {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.wl-lead-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--wl-white);
}

.wl-lead-list li {
  position: relative;
  padding-left: 22px;
  color: var(--wl-white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.75;
}

.wl-lead-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--wl-orange);
  border-radius: 2px;
}

.wl-hero-copy p,
.wl-page-hero p,
.wl-hero-copy h1,
.wl-page-hero h1 {
  color: var(--wl-white);
}

.wl-page-hero {
  padding: 78px 0 12px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 71, 0.18), transparent 28%),
    linear-gradient(135deg, var(--wl-navy), var(--wl-steel-deep));
}

.wl-page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  padding: 0 0 36px;
}

.wl-page-hero-grid img,
.wl-statement-grid img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--wl-shadow);
}

.wl-page-hero-grid img {
  min-height: 420px;
}

.wl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.wl-button {
  color: var(--wl-ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

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

.wl-button-primary:hover {
  background: #ffc86f;
  border-color: #ffc86f;
}

.wl-hero-panel,
.wl-contact-panel,
.wl-quote-form,
.wl-card,
.wl-service-card,
.wl-values-grid article {
  border-radius: 26px;
  box-shadow: var(--wl-shadow);
}

.wl-hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(238, 243, 247, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.wl-hero-panel div,
.wl-contact-panel div {
  padding-top: 14px;
  border-top: 1px solid rgba(15, 29, 41, 0.12);
}

.wl-hero-panel div:first-child,
.wl-contact-panel div:first-child {
  padding-top: 0;
  border-top: 0;
}

.wl-hero-panel span,
.wl-contact-panel span,
.wl-card span,
.wl-service-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--wl-steel);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wl-hero-panel strong,
.wl-contact-panel strong {
  color: var(--wl-ink);
  font-size: 1.08rem;
  line-height: 1.45;
}

.wl-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(248, 251, 253, 0.12);
  background: linear-gradient(180deg, var(--wl-navy), var(--wl-steel-deep));
}

.wl-strip article {
  padding: 28px;
  border-right: 1px solid rgba(248, 251, 253, 0.12);
}

.wl-strip article:last-child {
  border-right: 0;
}

.wl-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wl-white);
  font-size: 1.3rem;
}

.wl-strip p {
  color: rgba(248, 251, 253, 0.78);
}

.wl-section {
  padding: 86px 0;
}

.wl-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.wl-section-heading h2,
.wl-intro h2,
.wl-statement h2,
.wl-values-band h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
}

.wl-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.wl-copy-stack {
  display: grid;
  gap: 18px;
}

.wl-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wl-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--wl-copy);
}

.wl-check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--wl-orange);
  border-radius: 2px;
}

.wl-service-preview {
  background:
    linear-gradient(180deg, rgba(29, 70, 107, 0.04), rgba(29, 70, 107, 0)),
    transparent;
}

.wl-card-grid,
.wl-values-grid,
.wl-service-grid {
  display: grid;
  gap: 22px;
}

.wl-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wl-card,
.wl-service-card,
.wl-values-grid article,
.wl-quote-form,
.wl-contact-panel {
  padding: 26px;
  background: var(--wl-white);
  border: 1px solid var(--wl-line);
}

.wl-card h3,
.wl-service-card h3 {
  margin-bottom: 12px;
  font-size: 1.78rem;
}

.wl-card p,
.wl-service-card p,
.wl-values-grid p,
.wl-contact-panel strong,
.wl-quote-form label {
  line-height: 1.7;
}

.wl-statement {
  padding-top: 18px;
}

.wl-statement-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(16, 38, 60, 0.04), rgba(29, 70, 107, 0.08));
  border: 1px solid rgba(16, 38, 60, 0.08);
  border-radius: 30px;
}

.wl-text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--wl-steel-deep);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.wl-text-link:hover {
  color: var(--wl-orange-deep);
}

.wl-values-band {
  background:
    linear-gradient(180deg, rgba(16, 38, 60, 0.04), rgba(16, 38, 60, 0)),
    transparent;
}

.wl-values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wl-values-grid article strong {
  display: block;
  margin-bottom: 12px;
  color: var(--wl-ink);
  font-size: 1.45rem;
}

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

.wl-service-card h3 {
  font-size: 1.56rem;
}

.wl-contact-section {
  padding-top: 28px;
}

.wl-contact-grid {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.wl-quote-form label {
  display: grid;
  gap: 8px;
  color: var(--wl-ink);
  font-size: 0.96rem;
  font-weight: 600;
}

.wl-quote-form input,
.wl-quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--wl-ink);
  background: #f5f8fb;
  border: 1px solid rgba(16, 38, 60, 0.14);
  border-radius: 16px;
  font: inherit;
}

.wl-quote-form textarea {
  min-height: 148px;
  resize: vertical;
}

.wl-quote-form input:focus,
.wl-quote-form textarea:focus {
  outline: 3px solid rgba(255, 181, 71, 0.28);
  border-color: rgba(255, 181, 71, 0.88);
}

.wl-form-wide {
  grid-column: 1 / -1;
}

.wl-quote-form .wl-button {
  border: 0;
  cursor: pointer;
}

.wl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 20px 38px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(16, 38, 60, 0.1);
  color: var(--wl-copy);
}

.wl-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wl-ink);
  font-size: 1rem;
}

.wl-footer span {
  font-size: 0.96rem;
}

.wl-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wl-footer a {
  color: var(--wl-ink);
  text-decoration: none;
}

.wl-footer a:hover {
  color: var(--wl-steel);
}

@media (max-width: 1100px) {
  .wl-hero-grid,
  .wl-page-hero-grid,
  .wl-split,
  .wl-statement-grid,
  .wl-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .wl-page-hero-grid img {
    max-width: 720px;
  }

  .wl-statement-grid {
    padding: 22px;
  }
}

@media (max-width: 820px) {
  .wl-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .wl-brand-logo {
    width: min(240px, 100%);
  }

  .wl-nav {
    gap: 8px;
  }

  .wl-nav a,
  .wl-call {
    width: 100%;
    justify-content: center;
  }

  .wl-strip,
  .wl-card-grid,
  .wl-values-grid,
  .wl-service-grid,
  .wl-quote-form {
    grid-template-columns: 1fr;
  }

  .wl-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 251, 253, 0.12);
  }

  .wl-strip article:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 640px) {
  .wl-shell,
  .wl-footer {
    width: min(100% - 28px, 1180px);
  }

  .wl-hero-grid {
    min-height: auto;
    padding-top: 96px;
  }

  .wl-home h1,
  .wl-page-hero h1 {
    max-width: 100%;
  }

  .wl-hero-panel,
  .wl-card,
  .wl-service-card,
  .wl-values-grid article,
  .wl-contact-panel,
  .wl-quote-form,
  .wl-statement-grid {
    border-radius: 22px;
  }

  .wl-section {
    padding: 68px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wl-nav a,
  .wl-call,
  .wl-button {
    transition: none;
  }
}
