:root {
  color-scheme: light;
  --navy: #173266;
  --navy-fill: #173266;
  --navy-deep: #10264f;
  --teal: #0aa69e;
  --teal-dark: #087b75;
  --powder: #edf6ff;
  --powder-strong: #dceafa;
  --line: #d5e5f2;
  --text: #213a68;
  --muted: #52698d;
  --white: #ffffff;
  --surface-base: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.97);
  --dot-color: #c6dff1;
  --shadow: 0 1.25rem 3.5rem rgba(23, 50, 102, 0.13);
  --radius: 0.65rem;
  --max-width: 88rem;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(2.5rem, 5vw, 5.5rem);
  --font-sans: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  --zs-color-primary: var(--teal-dark);
  --zs-color-primary-hover: #066861;
  --zs-color-dark: var(--navy-deep);
  --zs-text: var(--text);
  --zs-text-muted: var(--muted);
  --zs-bg: var(--white);
  --zs-surface: var(--powder);
  --zs-border: var(--line);
  --zs-container: var(--max-width);
  --zs-font-sans: var(--font-sans);
  --zs-radius: var(--radius);
  --zs-radius-lg: 1rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: clip;
}

body {
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface-base);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--surface-base);
  background: var(--navy);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.zs-container {
  width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

section[id] {
  scroll-margin-top: 5.5rem;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: var(--header-bg);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 0.5rem 2rem rgba(23, 50, 102, 0.06);
}

.site-nav {
  min-height: 6.25rem;
  padding-block: 1rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: 2.75rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand:hover {
  color: var(--navy);
  text-decoration: none;
}

.brand-rays {
  position: relative;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.2rem;
}

.brand-rays i {
  position: absolute;
  display: block;
  width: 0.18rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--teal);
  transform-origin: 50% 100%;
}

.brand-rays i:nth-child(1) { left: 0.05rem; bottom: 0; transform: rotate(-8deg); }
.brand-rays i:nth-child(2) { left: 0.55rem; bottom: 0.2rem; transform: rotate(38deg); }
.brand-rays i:nth-child(3) { left: 0.9rem; bottom: -0.2rem; transform: rotate(78deg); }

.site-links {
  gap: clamp(1rem, 2.3vw, 2.5rem);
}

.site-links > a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-links > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-links > a:hover,
.site-links > a[aria-current="true"] {
  color: var(--navy);
  text-decoration: none;
}

.site-links > a:hover::after,
.site-links > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-links .nav-cta {
  min-height: 3.25rem;
  padding-inline: 1.35rem;
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  background: transparent;
  font-size: 0.9rem;
}

.site-links .nav-cta:hover,
.site-links .nav-cta:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--navy);
  border-radius: 0.35rem;
  color: var(--navy);
  background: var(--surface-base);
  cursor: pointer;
}

.theme-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--surface-base);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.theme-icon {
  grid-area: 1 / 1;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-moon {
  fill: currentColor;
  stroke: none;
}

.theme-icon-sun,
[data-color-theme="dark"] .theme-icon-moon {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.7) rotate(-30deg);
}

[data-color-theme="dark"] .theme-icon-sun {
  visibility: visible;
  opacity: 1;
  transform: scale(1) rotate(0);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 0.35rem;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: auto;
  padding-block: clamp(2rem, 3vw, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.5fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.45rem;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-specialties {
  margin-bottom: 1.2rem;
  color: var(--navy);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.hero-specialties i {
  margin-inline: 0.4rem;
  color: var(--teal);
  font-style: normal;
}

.teal-rule {
  display: block;
  width: 5rem;
  height: 0.16rem;
  margin-block: 1.4rem;
  border-radius: 999px;
  background: var(--teal);
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
  align-items: center;
}

.primary-cta,
.contact-button {
  min-height: 3.8rem;
  padding-inline: 1.8rem;
  border: 2px solid var(--teal-dark);
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 0.7rem 1.7rem rgba(8, 123, 117, 0.16);
  font-size: 0.98rem;
}

.primary-cta:hover,
.contact-button:hover {
  border-color: var(--navy-fill);
  color: var(--white);
  background: var(--navy-fill);
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 2.75rem;
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.text-link:hover {
  color: var(--navy);
  text-decoration-thickness: 2px;
}

.text-link span {
  font-size: 1.35em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.2rem);
}

.availability {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin: 1.7rem 0 0;
  color: var(--navy);
  font-size: 0.92rem;
}

.availability svg {
  width: 2.4rem;
  color: var(--teal-dark);
}

.availability svg circle:first-child {
  fill: var(--teal-dark);
  stroke: none;
}

.availability svg circle:nth-child(2),
.availability svg path {
  fill: var(--white);
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-visual {
  position: relative;
  min-height: clamp(20rem, 30vw, 24rem);
}

.organic-shape {
  position: absolute;
  z-index: 0;
  inset: -4% -16% 0 -5%;
  border-radius: 46% 54% 35% 65% / 42% 25% 75% 58%;
  background: var(--powder-strong);
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 0%;
  width: 75%;
  max-width: 24rem;
  height:auto;
  filter: drop-shadow(0 1.2rem 1.4rem rgba(23, 50, 102, 0.12));
}

.accessibility-mark {
  position: absolute;
  z-index: 3;
  top: 4%;
  right: 1%;
  display: grid;
  place-items: center;
  width: 5.8rem;
  aspect-ratio: 1;
  border: 1px dashed var(--line);
  border-radius: 50%;
}

.accessibility-mark svg {
  width: 4.35rem;
}

.accessibility-mark circle:first-child {
  fill: var(--teal);
  stroke: none;
}

.accessibility-mark circle:nth-child(2) {
  fill: var(--white);
}

.accessibility-mark path {
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
}

.hero-dots,
.projects-dots,
.contact-dots,
.monogram-dots {
  background-image: radial-gradient(var(--dot-color) 1.4px, transparent 1.4px);
  background-size: 1rem 1rem;
}

.hero-dots {
  position: absolute;
  top: 7%;
  left: 0;
  width: 8rem;
  height: 8rem;
}

.services {
  position: relative;
  padding-block: var(--section-space);
  border-top: 1px solid var(--line);
}

.section-heading > p:first-child,
.section-kicker {
  margin-bottom: 0.9rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.zen-band h2,
.about-copy h2,
.contact h2 {
  max-width: 17ch;
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.centered-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro {
  max-width: 42rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: 1.5rem;
  border-left: 1px solid var(--line);
  text-align: center;
}

.service-item:first-child {
  border-left: 0;
}

.service-item svg {
  width: 4rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.service-item svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.2rem);
}

.service-item p {
  max-width: 21rem;
  color: var(--text);
  line-height: 1.65;
}

.projects {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 4vw, 4rem);
  background: var(--powder);
}

.projects-dots {
  position: absolute;
  top: 4rem;
  right: 3%;
  width: 9rem;
  height: 9rem;
}

.project-list {
  margin-top: 2rem;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(16rem, 0.75fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding-block: clamp(1rem, 2vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.project-row:first-child {
  padding-top: 0;
}

.project-row:last-child {
  border-bottom: 0;
}

.project-preview {
  display: block;
  overflow: hidden;
  min-height: 10rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  color: var(--navy);
  background: var(--surface-base);
  box-shadow: 0 1rem 2.5rem rgba(23, 50, 102, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.project-preview:hover {
  color: var(--navy);
  box-shadow: 0 1.3rem 3rem rgba(23, 50, 102, 0.16);
  text-decoration: none;
  transform: translateY(-0.25rem);
}

.preview-browser {
  display: flex;
  gap: 0.35rem;
  height: 2.2rem;
  align-items: center;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--line);
}

.preview-browser span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.preview-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 10rem;
  padding: 1.5rem;
}

.preview-layout > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-layout b {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.preview-layout i {
  display: block;
  width: 70%;
  height: 0.35rem;
  margin-top: 1.25rem;
  background: var(--line);
}

.preview-layout i:last-child {
  width: 48%;
  margin-top: 0.6rem;
}

.preview-art {
  position: relative;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--powder);
}

.preview-art span {
  position: absolute;
  display: block;
  width: 80%;
  height: 45%;
  border-radius: 50%;
  background: rgba(110, 158, 190, 0.45);
  transform: rotate(28deg);
}

.preview-art span:first-child {
  top: 20%;
  left: -8%;
}

.preview-art span:last-child {
  right: -12%;
  bottom: 15%;
  background: rgba(10, 166, 158, 0.2);
  transform: rotate(-32deg);
}

.project-copy {
  max-width: 31rem;
}

.project-number {
  margin-bottom: 0.65rem;
  color: var(--teal-dark);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.project-copy h3 {
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.project-copy > p:not(.project-number) {
  margin-bottom: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.guard-preview {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  color: var(--white);
  background: var(--navy-fill);
}

.guard-preview:hover {
  color: var(--white);
}

.guard-icon svg {
  width: 4rem;
}

.guard-icon path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guard-preview strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.guard-preview span {
  color: #dbe9f6;
}

.zen-preview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.zen-preview strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.zen-preview span {
  color: var(--muted);
}

.zen-components {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.zen-components i,
.zen-components b {
  display: block;
  height: 2.5rem;
  border: 1px solid var(--teal);
  border-radius: 0.35rem;
}

.zen-components i:first-child {
  grid-column: 1 / -1;
  background: var(--teal-dark);
}

.zen-components b {
  height: 4.5rem;
  border-color: var(--line);
  background: var(--powder);
}

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

.section-rays {
  position: absolute;
  top: -0.4rem;
  right: calc(50% - min(38vw, 25rem));
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(2rem, 4vw, 2rem) 0 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  min-height: 15rem;
  padding-inline: clamp(1.2rem, 2vw, 2rem);
  border-left: 1px solid var(--line);
}

.method-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.method-steps li:last-child {
  padding-right: 0;
}

.method-steps li > span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--teal);
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.method-steps svg {
  width: 4.4rem;
  margin-bottom: 1.6rem;
  color: var(--teal);
}

.method-steps svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-steps h3 {
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.method-steps h3::before {
  display: inline-block;
  width: 1rem;
  height: 0.15rem;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: var(--teal);
  content: "";
}

.method-steps p {
  max-width: 18rem;
  color: var(--text);
  line-height: 1.65;
}

.zen-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--powder-strong);
}

.zen-band::before,
.zen-band::after {
  position: absolute;
  border: 1px solid rgba(10, 166, 158, 0.25);
  border-radius: 50%;
  content: "";
}

.zen-band::before {
  top: -10rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
}

.zen-band::after {
  right: -7rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
}

.zen-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.zen-band h2 em {
  font-weight: inherit;
}

.zen-band > .zs-container > div:first-child > p:not(.section-kicker) {
  max-width: 37rem;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.zen-demo {
  display: grid;
  gap: 1.5rem;
}

.code-sample {
  margin: 0;
}

.zen-demo pre {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow-x: auto;
  color: var(--navy);
  background: var(--surface-base);
  box-shadow: var(--shadow);
  font: 0.95rem/1.65 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.component-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}

.demo-button,
.demo-card,
.demo-input {
  display: grid;
  min-height: 4rem;
  place-items: center;
  padding: 0.8rem;
  border: 1px solid var(--teal);
  border-radius: 0.5rem;
  color: var(--teal-dark);
  background: var(--surface-base);
  font-size: 0.8rem;
}

.demo-card {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  align-items: stretch;
}

.demo-card i {
  display: block;
  height: 3rem;
  background: var(--powder);
}

.demo-card b {
  display: block;
  width: 80%;
  height: 0.3rem;
  margin-top: 0.7rem;
  background: var(--line);
}

.demo-card b:last-child {
  width: 55%;
}

.about {
  padding-block: var(--section-space);
  background: var(--powder-strong);
}

.about-grid {
  display: block;
  max-width: 60rem;
}

.monogram {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
}

.monogram > span {
  position: relative;
  z-index: 2;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(18rem, 31vw, 32rem);
  line-height: 0.8;
}

.monogram > i {
  position: absolute;
  z-index: 1;
  width: 70%;
  height: 75%;
  border-radius: 62% 38% 48% 52% / 46% 58% 42% 54%;
  background: var(--powder-strong);
  transform: rotate(-12deg);
}

.monogram-dots {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 5%;
  width: 7rem;
  height: 7rem;
}

.about-copy h2 {
  max-width: 10ch;
}

.about-copy > p {
  max-width: 40rem;
}

.about-copy strong {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--navy);
}

.about-copy strong::before {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.8rem;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 5vw, 5rem); 
  background: var(--powder-strong);
}

.contact::before {
  position: absolute;
  right: -11rem;
  bottom: -9rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  content: "";
}

.contact-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 4%;
  width: 8rem;
  height: 6rem;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.contact h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.7rem, 6vw, 6.8rem);
}

.contact p {
  max-width: 42rem;
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
}

.contact-button {
  min-width: min(100%, 22rem);
  min-height: 4.5rem;
  font-size: 1.2rem;
}

.dark-link {
  color: var(--navy);
}

.site-footer {
  padding-block: 2.4rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: center;
}

.footer-grid nav a,
.footer-grid nav span {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-grid nav a {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.footer-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: right;
}

.offer-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--powder);
}

.offer-dots {
  position: absolute;
  top: 3rem;
  right: 4%;
  width: 9rem;
  height: 9rem;
  background-image: radial-gradient(var(--dot-color) 1.4px, transparent 1.4px);
  background-size: 1rem 1rem;
}

.offer-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.offer-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.offer-hero h1 span {
  color: var(--teal);
}

.offer-hero-grid > div > p {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.offer-summary {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-base);
  box-shadow: var(--shadow);
}

.offer-summary > p {
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.15;
}

.offer-summary ul,
.offer-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-summary li,
.offer-includes li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  line-height: 1.5;
}

.offer-summary li::before,
.offer-includes li::before {
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.offer-services,
.offer-process {
  padding-block: var(--section-space);
}

.offer-list {
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.offer-item {
  display: grid;
  grid-template-columns: 5rem minmax(18rem, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.offer-number {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-serif);
  font-size: 2rem;
}

.offer-copy h3 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.offer-copy p {
  max-width: 38rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.offer-includes h4 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-for-whom {
  padding-block: clamp(5rem, 8vw, 8rem);
  color: var(--white);
  background: var(--navy-fill);
}

.offer-pricing {
  padding-block: var(--section-space);
  background: var(--powder);
}

.pricing-list {
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  align-items: center;
  border-top: 1px solid var(--line);
}

.pricing-row p {
  margin-bottom: 0.35rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-row h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.pricing-row > strong,
.pricing-amount strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  white-space: nowrap;
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pricing-amount span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-for-whom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}

.offer-for-whom h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.offer-for-whom p {
  max-width: 46rem;
  margin: 0;
  color: #dbe9f6;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.75;
}

.offer-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(3.5rem, 7vw, 7rem) 0 0;
  padding: 0;
  list-style: none;
}

.offer-process-list li {
  min-height: 18rem;
  padding: 1rem clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
}

.offer-process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.offer-process-list li:last-child {
  padding-right: 0;
}

.offer-process-list span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--teal);
  font-family: var(--font-serif);
  font-size: 2.6rem;
}

.offer-process-list h3 {
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.offer-process-list p {
  color: var(--text);
  line-height: 1.65;
}

.offer-contact {
  background: var(--powder-strong);
}

[data-color-theme="dark"] {
  color-scheme: dark;
  --navy: #dbeafe;
  --navy-fill: #102a4a;
  --navy-deep: #050d18;
  --teal: #43d8cf;
  --teal-dark: #73e3dc;
  --powder: #101f35;
  --powder-strong: #172a44;
  --line: #2d4768;
  --text: #d3dfed;
  --muted: #a8bad0;
  --surface-base: #081526;
  --header-bg: rgba(8, 21, 38, 0.96);
  --dot-color: #3a587b;
  --shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.32);
}

[data-color-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.28);
}

[data-color-theme="dark"] .project-preview {
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.24);
}

[data-color-theme="dark"] .project-preview:hover {
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.34);
}

[data-color-theme="dark"] .primary-cta,
[data-color-theme="dark"] .contact-button,
[data-color-theme="dark"] .site-links .nav-cta:hover,
[data-color-theme="dark"] .site-links .nav-cta:focus-visible {
  color: var(--surface-base);
}

[data-color-theme="dark"] .contact::before {
  background: rgba(90, 125, 164, 0.14);
}

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

  .hero-copy h1 {
    font-size: clamp(3rem, 5.3vw, 4.8rem);
  }

  .hero-visual img {
    right: 8%;
    width: 100%;
  }

  .service-item {
    padding-inline: 2rem;
  }

  .method-steps li {
    padding-inline: 1.5rem;
  }
}

@media (max-width: 58rem) {
  :root {
    --section-space: 5.5rem;
  }

  .site-nav {
    min-height: 5.2rem;
  }

  .menu-toggle {
    display: block;
    margin-left: 0.5rem;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(0.35rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-0.35rem) rotate(-45deg);
  }

  .site-nav.zs-navbar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-links.zs-nav-links {
    position: fixed;
    top: 5.2rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 2rem var(--gutter) 4rem;
    overflow-y: auto;
    align-items: stretch;
    background: var(--surface-base);
  }

  .site-links.is-open {
    display: flex;
  }

  .site-links > a:not(.nav-cta) {
    min-height: 3.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-links > a:not(.nav-cta)::after {
    display: none;
  }

  .site-links .nav-cta {
    margin-top: 1rem;
    color: var(--white);
    background: var(--teal-dark);
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-grid,
  .zen-grid,
  .about-grid,
  .contact-grid,
  .offer-hero-grid,
  .offer-for-whom-grid {
    grid-template-columns: 1fr;
  }

  .offer-hero {
    padding-block: 4rem 5rem;
  }

  .offer-hero h1 {
    font-size: clamp(3.2rem, 9vw, 5.4rem);
  }

  .offer-item {
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem 2rem;
  }

  .offer-includes {
    grid-column: 2;
  }

  .offer-process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-process-list li,
  .offer-process-list li:first-child,
  .offer-process-list li:last-child {
    min-height: 17rem;
    padding: 2rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .offer-process-list li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(3.3rem, 9vw, 5.4rem);
  }

  .hero-visual {
    position: relative;
    display: grid;
    min-height: 33rem;
    place-items: center;
  }

  .hero-visual img {
    position: relative;
    z-index: 2;
    right: auto;
    bottom:auto;
    width: 100%;
    max-width: 25rem;
    height:auto;
    filter: drop-shadow(0 1.2rem 1.4rem rgba(23,50, 102,0.12));
  }

  .organic-shape {
    position:absolute;
    z-index:0;
    inset: 8% 3%;
    background: var(--powder-strong);
  }

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

  .service-item,
  .service-item:first-child {
    min-height: 0;
    padding: 2.5rem 1rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-copy {
    padding-bottom: 1rem;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps li,
  .method-steps li:first-child,
  .method-steps li:last-child {
    min-height: 22rem;
    padding: 2rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .method-steps li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .monogram {
    min-height: 24rem;
  }

  .monogram > span {
    font-size: clamp(16rem, 50vw, 28rem);
  }

  .contact-actions {
    margin-top: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid nav {
    justify-content: flex-end;
  }

  .footer-grid p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 42rem) {
  :root {
    --gutter: 1.25rem;
  }

  html {
    scroll-padding-top: 5.2rem;
  }

  .brand {
    font-size: 2.2rem;
  }

  .hero-copy h1,
  .offer-hero h1,
  .section-heading h2,
  .zen-band h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-specialties {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .hero-visual img {
    right: 7%;
    bottom: 4%;
    width: 100%;
  }

  .accessibility-mark {
    top: -3%;
    right: 1%;
    width: 4.5rem;
  }

  .accessibility-mark svg {
    width: 3.4rem;
  }

  .section-heading h2 br {
    display: none;
  }

  .project-preview {
    min-height: 15rem;
  }

  .preview-layout {
    min-height: 17rem;
    padding: 1.4rem;
  }

  .preview-layout b {
    font-size: 1.9rem;
  }

  .guard-preview {
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .guard-icon svg {
    width: 5rem;
  }

  .guard-preview strong {
    font-size: 1.8rem;
  }

  .zen-preview {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .offer-item {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pricing-amount {
    align-items: flex-start;
  }

  .offer-includes {
    grid-column: auto;
  }

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

  .offer-process-list li,
  .offer-process-list li:first-child,
  .offer-process-list li:last-child,
  .offer-process-list li:nth-child(odd) {
    min-height: 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method-steps li,
  .method-steps li:first-child,
  .method-steps li:last-child,
  .method-steps li:nth-child(odd) {
    min-height: 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .monogram {
    min-height: 18rem;
  }

  .monogram > span {
    font-size: clamp(13rem, 65vw, 20rem);
  }

  .contact h2 br {
    display: none;
  }

  .contact-button {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .footer-grid p {
    grid-column: auto;
  }
}

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

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

@media (forced-colors: active) {
  .teal-rule,
  .brand-rays i,
  .about-copy strong::before,
  .method-steps h3::before {
    background: CanvasText;
  }

  .project-preview,
  .zen-demo pre,
  .primary-cta,
  .contact-button {
    border: 2px solid CanvasText;
  }
}
