:root {
  --paper: #f4f0e7;
  --paper-deep: #ebe5d8;
  --paper-light: #fffdf8;
  --ink: #17231d;
  --ink-soft: #2b3931;
  --muted: #6d786f;
  --line: rgba(23, 35, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --lime: #c9f264;
  --lime-dark: #9dbb38;
  --sage: #9aad96;
  --rust: #c86a3b;
  --white: #fffefa;
  --shadow: 0 24px 80px rgba(23, 35, 29, 0.12);
  --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.18);
  --radius: 1.6rem;
  --radius-small: 0.95rem;
  --container: 1200px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 10%, rgba(200, 106, 59, 0.08), transparent 25rem),
    radial-gradient(circle at 88% 16%, rgba(154, 173, 150, 0.22), transparent 24rem),
    linear-gradient(180deg, var(--paper-light) 0%, var(--paper) 48%, #eee9df 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: radial-gradient(rgba(23, 35, 29, 0.14) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

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

.section {
  padding: 7.5rem 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 231, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(244, 240, 231, 0.92);
  box-shadow: 0 10px 30px rgba(23, 35, 29, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  border-radius: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  box-shadow: 0 12px 24px rgba(23, 35, 29, 0.2);
}

.brand-copy {
  display: grid;
  gap: 0.14rem;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-caption {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.site-nav a,
.footer-links a,
.footer-links button {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--ink);
}

.nav-cta,
.footer-links button {
  border: 0;
  background: transparent;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.1rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 10px 22px rgba(157, 187, 56, 0.28);
  transform: translateY(-2px);
}

.nav-cta span,
.button span,
.footer-links button span {
  font-size: 1rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-light);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.24rem 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot,
.status-dot,
.contact-note-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(157, 187, 56, 0.12);
}

.eyebrow-dot {
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(200, 106, 59, 0.12);
}

.hero {
  padding-top: 7.4rem;
  padding-bottom: 6.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy h1,
.section-intro h2,
.contact-copy h2,
.consult-copy h2,
.booking-modal h2,
.quote-section blockquote p {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 9.4ch;
  font-size: clamp(4rem, 7.3vw, 7rem);
}

.hero-copy h1 em,
.section-intro h2 em {
  color: var(--rust);
  font-style: italic;
}

.hero-text {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions,
.consult-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  gap: 0.75rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 32px rgba(23, 35, 29, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(23, 35, 29, 0.26);
  background: #22352a;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.58);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(23, 35, 29, 0.28);
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 30px rgba(157, 187, 56, 0.2);
}

.button-lime:hover,
.button-lime:focus-visible {
  box-shadow: 0 20px 38px rgba(157, 187, 56, 0.3);
}

.button-dark-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.button-dark-outline:hover,
.button-dark-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding-top: 0.65rem;
}

.visual-topline,
.visual-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-topline {
  padding: 0 0.45rem 0.7rem;
}

.visual-frame {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 29, 0.26);
  border-radius: 1.6rem;
  background: var(--ink);
  box-shadow: var(--shadow-deep);
  isolation: isolate;
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(23, 35, 29, 0.8) 100%);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  object-position: 86% center;
  opacity: 0.94;
  filter: saturate(0.92) contrast(1.02);
}

.visual-stamp {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-align: center;
  transform: rotate(9deg);
}

.visual-caption {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  color: var(--white);
}

.caption-kicker {
  color: var(--lime);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-caption strong {
  max-width: 17ch;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.visual-legend {
  justify-content: flex-start;
  gap: 1.4rem;
  padding: 0.8rem 0.45rem 0;
}

.visual-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-line {
  display: inline-block;
  width: 1.2rem;
  height: 2px;
  background: var(--sage);
}

.legend-line-lime {
  background: var(--lime-dark);
}

.legend-line-rust {
  background: var(--rust);
}

.signal-bar {
  color: var(--white);
  background: var(--ink);
}

.signal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.8rem;
}

.signal-inner p {
  max-width: 25rem;
  margin: 0;
  color: rgba(255, 254, 250, 0.82);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.signal-list span {
  padding: 0.55rem 0.78rem;
  color: var(--lime);
  border: 1px solid rgba(201, 242, 100, 0.26);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.62fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.3rem;
}

.section-intro h2,
.contact-copy h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-intro > p,
.contact-copy > p {
  max-width: 30rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
}

.service-tabs {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.service-tab {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.7rem;
  padding: 0 1.1rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 248, 0.46);
  font-size: 0.79rem;
  font-weight: 800;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-tab:hover,
.service-tab:focus-visible {
  color: var(--ink);
  border-color: rgba(23, 35, 29, 0.28);
  transform: translateX(3px);
}

.service-tab.is-active {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 24px rgba(157, 187, 56, 0.18);
}

.tab-index {
  color: var(--rust);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
}

.tab-arrow {
  font-size: 1.1rem;
  font-weight: 400;
}

.service-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 24rem;
  padding: 1.7rem;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(39, 59, 45, 0.86), rgba(23, 35, 29, 0.98)),
    var(--ink);
  box-shadow: var(--shadow-deep);
}

.service-panel::after {
  position: absolute;
}

.service-panel-meta,
.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-kicker,
.note-label,
.detail-label,
.form-required {
  color: var(--rust);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
}

.panel-status .status-dot {
  width: 0.4rem;
  height: 0.4rem;
  box-shadow: none;
}

.service-panel-content {
  align-self: center;
  max-width: 38rem;
  padding: 3rem 0;
}

.service-panel-content h3 {
  max-width: 13ch;
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.service-panel-content p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.88rem;
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.service-tags span {
  padding: 0.55rem 0.7rem;
  color: var(--lime);
  border: 1px solid rgba(201, 242, 100, 0.25);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 800;
}

.service-panel-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.service-panel-note strong {
  color: rgba(255, 254, 250, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.quote-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(10rem, 0.35fr);
  align-items: start;
  gap: 1.5rem;
  padding: 3.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-mark {
  margin: -0.1rem 0 0;
  color: var(--rust);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
}

.quote-section blockquote {
  margin: 0;
}

.quote-section blockquote p {
  max-width: 17ch;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.quote-section cite {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.quote-aside {
  display: grid;
  align-content: center;
  gap: 0.3rem;
  height: 100%;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.quote-number {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.08em;
}

.section-intro-compact {
  margin-bottom: 2.3rem;
}

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

.step-card {
  min-height: 22rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.48);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.step-card:hover {
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.step-card-featured {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-1.4rem);
}

.step-card-featured:hover {
  background: #213127;
  transform: translateY(-1.7rem);
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--rust);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-card-featured .step-heading {
  color: var(--lime);
}

.step-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.step-card-featured .step-line {
  background: var(--line-light);
}

.step-card h3 {
  margin: 6rem 0 0.8rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.step-card p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.step-card-featured p {
  color: rgba(255, 254, 250, 0.7);
}

.step-tag {
  display: inline-flex;
  margin-top: 1.8rem;
  padding: 0.5rem 0.7rem;
  color: var(--ink);
  background: var(--paper-deep);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-card-featured .step-tag {
  color: var(--ink);
  background: var(--lime);
}

.industries-section {
  padding-top: 5rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.industry-card {
  min-height: 19rem;
  padding: 1.3rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.industry-card:hover {
  background: rgba(255, 253, 248, 0.7);
  transform: translateY(-4px);
}

.industry-label {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  margin-bottom: 7rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.industry-card h3 {
  max-width: 12ch;
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.consult-section {
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.consult-panel {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: 3.4rem;
  color: var(--white);
  border-radius: calc(var(--radius) + 0.2rem);
  background:
    radial-gradient(circle at 14% 50%, rgba(201, 242, 100, 0.16), transparent 11rem),
    linear-gradient(135deg, #213127, var(--ink));
  box-shadow: var(--shadow-deep);
}

.consult-graphic {
  position: relative;
  display: grid;
  width: 10rem;
  height: 10rem;
  place-items: center;
  border: 1px solid rgba(201, 242, 100, 0.35);
  border-radius: 50%;
}

.graphic-orbit {
  position: absolute;
  border: 1px solid rgba(201, 242, 100, 0.3);
  border-radius: 50%;
}

.graphic-orbit-one {
  inset: 1rem;
}

.graphic-orbit-two {
  inset: 2.2rem;
  border-style: dashed;
}

.graphic-core {
  position: relative;
  z-index: 1;
  color: var(--lime);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 4.5rem;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.graphic-label {
  position: absolute;
  bottom: 2rem;
  z-index: 1;
  color: rgba(255, 254, 250, 0.74);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.eyebrow-light {
  color: var(--lime);
}

.eyebrow-light .eyebrow-dot {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 242, 100, 0.14);
}

.consult-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.consult-copy p {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: 0.87rem;
  line-height: 1.8;
}

.consult-meta {
  display: grid;
  gap: 0.8rem;
  align-self: end;
  min-width: 8rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-light);
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 4rem;
  padding-bottom: 8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.contact-copy h2 {
  max-width: 8ch;
}

.contact-detail-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.contact-detail-list > div {
  display: grid;
  gap: 0.35rem;
}

.detail-label {
  color: var(--rust);
}

.contact-detail-list strong {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 27rem;
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-note-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(154, 173, 150, 0.18);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--shadow);
}

.form-required {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-form label > span,
.contact-form label span {
  color: var(--rust);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  color: var(--ink);
  border: 1px solid rgba(23, 35, 29, 0.14);
  border-radius: 0.8rem;
  outline: none;
  background: rgba(255, 254, 250, 0.78);
  font-size: 0.8rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ba19a;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(23, 35, 29, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(157, 187, 56, 0.14);
  background: var(--white);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.form-footer > span {
  max-width: 12rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
}

.site-footer {
  padding: 2.7rem 0 2.2rem;
  color: var(--white);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-caption {
  color: rgba(255, 254, 250, 0.5);
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--lime);
  box-shadow: none;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.4rem;
}

.footer-links a,
.footer-links button {
  color: rgba(255, 254, 250, 0.68);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  align-items: flex-start;
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 254, 250, 0.48);
  font-size: 0.62rem;
  line-height: 1.65;
}

.footer-bottom p:last-child {
  max-width: 33rem;
  text-align: right;
}

.footer-bottom a {
  color: rgba(255, 254, 250, 0.72);
  text-decoration: underline;
  text-decoration-color: rgba(201, 242, 100, 0.5);
  text-underline-offset: 3px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(12, 21, 16, 0.62);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.booking-modal {
  position: relative;
  width: min(100%, 34rem);
  padding: 2.2rem;
  color: var(--white);
  border: 1px solid rgba(201, 242, 100, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #293d2f, var(--ink));
  box-shadow: var(--shadow-deep);
  animation: modal-in 220ms ease both;
}

.modal-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: 50%;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modal-kicker .eyebrow-dot {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 242, 100, 0.14);
}

.booking-modal h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.booking-modal > p:not(.modal-note) {
  margin: 1.2rem 0 0;
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.85rem;
  line-height: 1.8;
}

.modal-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.6rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 0.85rem;
}

.modal-points span {
  color: rgba(255, 254, 250, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
}

.modal-points b {
  display: inline-block;
  width: 1.8rem;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.65rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.7rem;
}

.modal-link {
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
}

.modal-link:hover,
.modal-link:focus-visible {
  color: var(--lime);
}

.modal-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  color: rgba(255, 254, 250, 0.48);
  border-top: 1px solid var(--line-light);
  font-size: 0.62rem;
  font-weight: 700;
}

.modal-note .status-dot {
  width: 0.4rem;
  height: 0.4rem;
  box-shadow: none;
}

code {
  color: var(--lime);
  font-family: "Space Grotesk", monospace;
  font-size: 0.68rem;
}

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

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(23rem, 1.05fr);
    gap: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 7vw, 6.3rem);
  }

  .consult-panel {
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 2rem;
  }

  .consult-graphic {
    width: 8rem;
    height: 8rem;
  }

  .consult-meta {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
    min-width: 0;
    padding: 1rem 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

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

  .section {
    padding: 5.5rem 0;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero {
    padding-top: 5rem;
  }

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

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-visual {
    max-width: 38rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

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

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

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

  .step-card,
  .step-card-featured {
    min-height: 17rem;
    transform: none;
  }

  .step-card-featured:hover,
  .step-card:hover {
    transform: translateY(-4px);
  }

  .step-card h3 {
    margin-top: 4rem;
  }

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

  .consult-panel {
    grid-template-columns: 1fr;
    padding: 2.3rem;
  }

  .consult-graphic {
    width: 8rem;
    height: 8rem;
  }

  .consult-meta {
    grid-column: auto;
  }

  .contact-grid {
    gap: 3rem;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 5rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .nav-cta {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .site-nav a {
    border-radius: 0.7rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--paper);
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 0.35rem;
  }

  .section {
    padding: 4.7rem 0;
  }

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

  .hero-copy h1 {
    max-width: 9.3ch;
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero-text {
    margin-top: 1.5rem;
    font-size: 0.94rem;
  }

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

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

  .visual-frame,
  .visual-frame img {
    min-height: 26rem;
  }

  .visual-stamp {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 0.52rem;
  }

  .visual-caption {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .visual-legend {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    font-size: 0.57rem;
  }

  .signal-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.45rem;
    padding-bottom: 1.45rem;
  }

  .signal-list {
    justify-content: flex-start;
  }

  .section-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

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

  .service-tab {
    min-height: 4.1rem;
  }

  .service-panel {
    min-height: 29rem;
    padding: 1.25rem;
  }

  .service-panel-content {
    padding: 2rem 0;
  }

  .service-panel-content h3 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .service-panel-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-panel-note strong {
    text-align: left;
  }

  .quote-grid {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 2.5rem 0;
  }

  .quote-mark {
    font-size: 3.4rem;
  }

  .quote-section blockquote p {
    font-size: 2.3rem;
  }

  .quote-aside {
    grid-column: 2;
    height: auto;
    margin-top: 0.6rem;
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .industry-card {
    min-height: 15rem;
  }

  .industry-label {
    margin-bottom: 4rem;
  }

  .consult-panel {
    padding: 1.6rem;
  }

  .consult-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

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

  .consult-actions .button {
    width: 100%;
  }

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

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

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

  .booking-modal {
    padding: 1.5rem;
  }

  .booking-modal h2 {
    font-size: 2.8rem;
  }

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

  .modal-actions .button {
    width: 100%;
  }
}

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

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

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