:root {
  --ink: #17221f;
  --forest: #0d3b32;
  --forest-deep: #082c26;
  --leaf: #60a47b;
  --coral: #f2674f;
  --coral-dark: #ca4937;
  --sky: #d9edf2;
  --paper: #fcfbf7;
  --line: #c8d4ce;
  --muted: #53625d;
  --shadow: 0 18px 40px rgba(19, 39, 32, 0.1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: white;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: block;
  border: 1px solid currentColor;
}

.brand-mark span {
  position: absolute;
  display: block;
  margin-top: -1.5px;
}

.grape-stem {
  top: 4px;
  left: 20px;
  width: 1px;
  height: 9px;
  background: currentColor;
  transform: rotate(36deg);
  transform-origin: bottom;
}

.grape-node {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  animation: grape-pulse 3.4s ease-in-out infinite;
}

.grape-node-one { top: 8px; left: 13px; }
.grape-node-two { top: 13px; left: 8px; animation-delay: 180ms; }
.grape-node-three { top: 13px; left: 18px; background: currentColor; animation-delay: 360ms; }
.grape-node-four { top: 18px; left: 13px; animation-delay: 540ms; }
.grape-node-five { top: 23px; left: 13px; animation-delay: 720ms; }

@keyframes grape-pulse {
  0%, 100% { opacity: 0.68; }
  48% { opacity: 1; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  opacity: 0.88;
}

.main-nav > a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  padding: 10px 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

.hero {
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --network-x: 0px;
  --network-y: 0px;
  position: relative;
  min-height: 780px;
  height: min(92vh, 930px);
  display: flex;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.045) translate3d(var(--hero-image-x), var(--hero-image-y), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
  will-change: transform;
}

.hero-shade {
  background: rgba(6, 40, 32, 0.62);
}

.hero-network {
  position: absolute;
  z-index: 1;
  top: 145px;
  right: max(42px, calc((100vw - 1180px) / 2));
  width: 114px;
  height: 130px;
  color: #b7e5c9;
  opacity: 0.85;
  pointer-events: none;
  transform: translate3d(var(--network-x), var(--network-y), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
  will-change: transform;
}

.network-stem,
.network-line {
  position: absolute;
  display: block;
  width: 1px;
  background: currentColor;
  transform-origin: top;
}

.network-stem { top: 5px; left: 70px; height: 49px; transform: rotate(39deg); }
.network-line-one { top: 42px; left: 43px; height: 54px; transform: rotate(-45deg); }
.network-line-two { top: 42px; left: 72px; height: 54px; transform: rotate(45deg); }

.network-node {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  animation: network-signal 3.6s ease-in-out infinite;
}

.network-node-one { top: 32px; left: 52px; }
.network-node-two { top: 57px; left: 25px; animation-delay: 280ms; }
.network-node-three { top: 57px; left: 79px; animation-delay: 560ms; }
.network-node-four { top: 84px; left: 52px; background: currentColor; animation-delay: 840ms; }
.network-node-five { top: 109px; left: 52px; animation-delay: 1120ms; }

@keyframes network-signal {
  0%, 100% { opacity: 0.42; }
  45% { opacity: 1; }
}

.network-pulse {
  position: absolute;
  z-index: 1;
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #effff3;
  background: #effff3;
  opacity: 0;
  box-shadow: 0 0 12px rgba(222, 255, 232, 0.7);
  transform: rotate(45deg);
}

.network-pulse-one { animation: network-flow-left 8.8s cubic-bezier(0.2, 0.7, 0.3, 1) infinite 450ms; }
.network-pulse-two { animation: network-flow-right 8.8s cubic-bezier(0.2, 0.7, 0.3, 1) infinite 1.7s; }
.network-pulse-three { animation: network-flow-center 8.8s cubic-bezier(0.2, 0.7, 0.3, 1) infinite 2.95s; }

@keyframes network-flow-left {
  0%, 7% { transform: translate(68px, 11px) rotate(45deg) scale(0.7); opacity: 0; }
  12% { opacity: 1; }
  39% { transform: translate(55px, 38px) rotate(45deg) scale(1); opacity: 1; }
  64% { transform: translate(28px, 66px) rotate(45deg) scale(0.72); opacity: 0; }
  100% { transform: translate(28px, 66px) rotate(45deg) scale(0.72); opacity: 0; }
}

@keyframes network-flow-right {
  0%, 7% { transform: translate(68px, 11px) rotate(45deg) scale(0.7); opacity: 0; }
  12% { opacity: 1; }
  39% { transform: translate(55px, 38px) rotate(45deg) scale(1); opacity: 1; }
  64% { transform: translate(82px, 66px) rotate(45deg) scale(0.72); opacity: 0; }
  100% { transform: translate(82px, 66px) rotate(45deg) scale(0.72); opacity: 0; }
}

@keyframes network-flow-center {
  0%, 12% { transform: translate(57px, 39px) rotate(45deg) scale(0.7); opacity: 0; }
  18% { opacity: 1; }
  50% { transform: translate(57px, 95px) rotate(45deg) scale(1); opacity: 1; }
  66% { transform: translate(57px, 110px) rotate(45deg) scale(0.7); opacity: 0; }
  100% { transform: translate(57px, 110px) rotate(45deg) scale(0.7); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-bottom: 124px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow-light {
  color: #d5f1df;
}

.eyebrow-coral {
  color: var(--coral-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.4vw, 82px);
  font-weight: 600;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

.button-coral {
  color: #251812;
  background: var(--coral);
}

.button-coral:hover {
  background: #ff856f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 15px;
  font-weight: 700;
}

.text-link svg {
  width: 17px;
}

.text-link-light {
  color: white;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.scroll-cue svg {
  width: 17px;
}

.signal-band {
  background: var(--forest);
  color: white;
}

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

.signal-grid article {
  min-height: 232px;
  padding: 38px 44px 34px 0;
}

.signal-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 42px;
}

.signal-number {
  display: block;
  margin-bottom: 32px;
  color: #9ed2b0;
  font-size: 13px;
  font-weight: 700;
}

.signal-grid h2 {
  margin-bottom: 9px;
  font-size: 25px;
}

.signal-grid p {
  max-width: 290px;
  margin-bottom: 0;
  color: #d4e9df;
  font-size: 15px;
}

.section-space {
  padding: 124px 0;
}

.section-intro {
  max-width: 770px;
}

.section-intro-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.65fr);
  align-items: end;
  gap: 66px;
  margin-bottom: 58px;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.section-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(220px, 0.47fr);
  gap: 28px;
  align-items: start;
  padding: 33px 0;
  border-bottom: 1px solid var(--line);
}

.service-index {
  color: var(--coral-dark);
  font-size: 15px;
  font-weight: 700;
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: 29px;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-note {
  padding-top: 6px;
  font-size: 15px;
}

.difference {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f0e8;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 88px;
}

.difference-copy h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(40px, 4.4vw, 60px);
}

.difference-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.difference-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #b6bbb2;
  list-style: none;
}

.difference-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid #b6bbb2;
}

.difference-list > li > span {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 700;
}

.difference-list h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.difference-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e9f3e6;
}

.pricing-intro {
  margin-bottom: 52px;
}

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

.price-option {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--forest);
  padding: 20px 18px 0 0;
}

.price-index {
  margin-bottom: 38px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 700;
}

.price-option h3 {
  margin-bottom: 13px;
  font-size: 23px;
}

.price-amount {
  margin-bottom: 15px;
  color: var(--forest);
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
}

.price-option > p:not(.price-amount) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-includes {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 19px 0 0;
  border-top: 1px solid #aac3b3;
  list-style: none;
}

.price-includes li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  color: #365348;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.price-includes li::before {
  content: "+";
  color: var(--coral-dark);
  font-weight: 700;
}

.pricing-note {
  max-width: 830px;
  margin: 42px 0 0;
  color: #50645a;
  font-size: 13px;
}

.audit {
  color: #eff8f0;
  background: #103a32;
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.97fr);
  gap: 88px;
  align-items: start;
}

.audit-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.5vw, 60px);
}

.audit-copy > p:not(.eyebrow):not(.audit-scope) {
  max-width: 510px;
  margin-bottom: 27px;
  color: #c8dfcf;
  font-size: 17px;
}

.audit-scope {
  max-width: 500px;
  margin-bottom: 0;
  color: #9fc5ad;
  font-size: 13px;
}

.audit-checks {
  margin: 0;
  padding: 0;
  border-top: 1px solid #609480;
  list-style: none;
}

.audit-checks li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid #609480;
  padding: 19px 0;
}

.audit-checks li > span,
.audit-checks b {
  color: #b9e3c8;
  font-size: 12px;
  font-weight: 700;
}

.audit-checks h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.audit-checks p {
  margin-bottom: 0;
  color: #c6ddcf;
  font-size: 14px;
}

.audit-checks b {
  border: 1px solid #78ab90;
  border-radius: 3px;
  padding: 5px 6px;
  color: #d9eddd;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
}

.work {
  background: var(--sky);
}

.work-intro {
  margin-bottom: 46px;
}

.work-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 57px);
}

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

.model-case {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 48px;
  margin: 64px 0 0;
  padding: 36px 0;
  border-top: 1px solid rgba(23, 34, 31, 0.26);
  border-bottom: 1px solid rgba(23, 34, 31, 0.26);
}

.model-case-intro h3 {
  max-width: 450px;
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 38px);
}

.model-case-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 22px;
  color: var(--muted);
}

.model-case-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-case-points li {
  border-top: 2px solid var(--forest);
  padding-top: 14px;
}

.model-case-points span {
  display: block;
  margin-bottom: 10px;
  color: #315c4c;
  font-size: 13px;
  font-weight: 700;
}

.model-case-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.concept-card {
  overflow: hidden;
  border: 1px solid rgba(23, 34, 31, 0.15);
  border-radius: 6px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 45px rgba(19, 39, 32, 0.17);
}

.concept-card:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: -3px;
}

.concept-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(23, 34, 31, 0.12);
  color: #5d6a65;
  font-size: 12px;
  font-weight: 700;
}

.concept-stage {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.concept-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.concept-card:hover .concept-stage img {
  transform: scale(1.04);
}

.stage-action {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.optic-stage {
  color: white;
  background: #090f12;
}

.optic-stage img {
  opacity: 0.86;
}

.optic-stage p {
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 0.88;
}

.optic-stage .stage-action {
  color: #071012;
  background: #d7f4e8;
}

.cafe-stage {
  color: white;
  background: #ef3e29;
}

.cafe-stage img {
  width: 74%;
  left: auto;
}

.cafe-title {
  position: absolute;
  z-index: 1;
  top: 26px;
  left: 24px;
  display: grid;
  gap: 4px;
}

.cafe-title span {
  font-size: 12px;
  font-weight: 700;
}

.cafe-title strong {
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 48px;
  line-height: 0.86;
}

.cafe-stage .stage-action {
  right: auto;
  left: 24px;
  color: #ef3e29;
  background: #f8f7ef;
}

.craft-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 23px;
  color: #eef3ff;
  background: #183260;
}

.craft-brand {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
}

.craft-brand b {
  color: #ffad38;
}

.craft-availability {
  display: grid;
  align-content: start;
  justify-items: end;
  color: #c9d7f5;
  font-size: 12px;
}

.craft-availability b {
  color: #ffdc8c;
  font-size: 18px;
}

.craft-fields {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  align-self: end;
}

.craft-fields span {
  border: 1px solid #7991bb;
  border-radius: 3px;
  padding: 9px 10px;
  color: #ccd8ed;
  font-size: 12px;
}

.craft-stage .stage-action {
  position: static;
  grid-column: 1 / -1;
  align-self: end;
  justify-self: start;
  color: #182b4e;
  background: #ffad38;
}

.salon-stage {
  padding: 26px;
  color: #f2f0ea;
  background: #1a1a1b;
}

.salon-stage > p {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
}

.salon-stage > strong {
  display: block;
  margin-bottom: 32px;
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 0.78;
}

.salon-dates {
  display: flex;
  gap: 8px;
}

.salon-dates span {
  width: 54px;
  border: 1px solid #696968;
  padding: 7px 8px;
  color: #aaa9a4;
  font-size: 11px;
}

.salon-dates span:nth-child(2) {
  color: #1a1a1b;
  background: #f2f0ea;
}

.salon-dates b {
  display: block;
  color: inherit;
  font-size: 19px;
}

.salon-stage .stage-action {
  color: #1a1a1b;
  background: #f2f0ea;
}

.garden-stage {
  color: white;
  background: #1d4d3f;
}

.garden-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(12, 47, 37, 0.38);
}

.garden-title,
.garden-tabs {
  position: absolute;
  z-index: 1;
}

.garden-title {
  top: 24px;
  left: 24px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.86;
}

.garden-tabs {
  bottom: 20px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.garden-tabs span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
}

.concept-garden {
  grid-column: 1 / -1;
}

.concept-garden .concept-stage {
  min-height: 390px;
}

.hotel-stage {
  color: #f7f2e9;
  background: #3c4a3d;
}

.hotel-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(25, 35, 28, 0.23);
}

.hotel-title,
.hotel-search {
  position: absolute;
  z-index: 1;
}

.hotel-title {
  top: 25px;
  left: 24px;
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 39px;
  line-height: 0.85;
}

.hotel-search {
  right: 17px;
  bottom: 17px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  color: #25342a;
  background: #f7f2e9;
  font-size: 11px;
}

.hotel-search b {
  font-size: 11px;
}

.hotel-search i {
  border-left: 1px solid #9aa296;
  padding-left: 10px;
  color: #6a312d;
  font-style: normal;
  font-weight: 700;
}

.accounting-stage {
  color: #f7f9f5;
  background: #143a36;
}

.accounting-stage img {
  width: 68%;
  left: auto;
  opacity: 0.92;
}

.accounting-title,
.accounting-status {
  position: absolute;
  z-index: 1;
}

.accounting-title {
  top: 26px;
  left: 24px;
  color: #f7f9f5;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.88;
}

.accounting-status {
  bottom: 19px;
  left: 24px;
  display: grid;
  gap: 1px;
  color: #cde1cf;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
}

.accounting-status b {
  color: #f4a95d;
  font-size: 16px;
}

.shelter-stage {
  color: #f8f4e8;
  background: #34483f;
}

.shelter-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(20, 37, 30, 0.28);
}

.shelter-title,
.shelter-profile {
  position: absolute;
  z-index: 1;
}

.shelter-title {
  top: 25px;
  left: 24px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 0.88;
}

.shelter-profile {
  bottom: 20px;
  left: 24px;
  display: grid;
  gap: 2px;
  font-size: 11px;
}

.shelter-profile b {
  color: #f4c97e;
  font-size: 15px;
}

.shelter-stage .stage-action {
  z-index: 1;
  color: #263d33;
  background: #f5cf88;
}

.concept-footer {
  padding: 24px 22px 26px;
}

.concept-footer h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.concept-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.coverage {
  border-bottom: 1px solid var(--line);
  background: #e9f3e6;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 86px;
  align-items: center;
}

.coverage h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 52px);
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-cities span {
  border: 1px solid #8ead9c;
  border-radius: 999px;
  padding: 10px 13px;
  color: #234c40;
  font-size: 14px;
  font-weight: 700;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border-top: 3px solid var(--forest);
  padding-top: 22px;
}

.process-list li > span {
  display: block;
  margin-bottom: 43px;
  color: var(--coral-dark);
  font-size: 16px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-cta {
  color: white;
  background: var(--forest-deep);
}

.portfolio-cta-inner {
  max-width: 760px;
}

.portfolio-cta h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.5vw, 60px);
}

.portfolio-cta p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 30px;
  color: #d2e4dc;
  font-size: 17px;
}

.portfolio-cta .button {
  gap: 8px;
}

.portfolio-email {
  display: inline-block;
  margin-top: 21px;
  color: #d2e4dc;
  border-bottom: 1px solid rgba(210, 228, 220, 0.5);
  padding-bottom: 2px;
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.portfolio-email:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.site-footer {
  padding: 27px 0;
  color: #d7e7df;
  background: #061e1a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(215, 231, 223, 0.45);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-privacy a {
  border-bottom: 1px solid rgba(215, 231, 223, 0.45);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-privacy a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.footer-credit a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.footer-credit svg {
  width: 14px;
  height: 14px;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  background: var(--paper);
}

.legal-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
  background: #e9f3e6;
}

.legal-hero h1 {
  max-width: 730px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: clamp(46px, 5.4vw, 72px);
}

.legal-hero > .page-shell > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-content {
  max-width: 860px;
  padding: 72px 0 96px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 31px;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--forest);
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a:not(.brand):not(.legal-back) {
  color: var(--forest);
  border-bottom: 1px solid currentColor;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.legal-list strong {
  color: var(--ink);
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  background: #f7eee8;
}

.motion-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
    align-content: center;
    justify-items: center;
    gap: 28px;
    padding: 100px 24px;
    color: var(--ink);
    background: var(--paper);
    font-size: 23px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-cta {
    border-color: var(--forest);
    padding: 13px 18px;
  }

  .menu-toggle {
    z-index: 21;
    display: grid;
  }

  .hero {
    min-height: 700px;
  }

  .hero-network {
    display: none;
  }

  .section-intro-split,
  .difference-layout,
  .audit-layout,
  .coverage-layout,
  .model-case {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .signal-grid,
  .concept-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .signal-grid article {
    min-height: auto;
    padding: 29px 0;
  }

  .signal-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
    padding-left: 0;
  }

  .signal-number {
    margin-bottom: 16px;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .service-note {
    grid-column: 2;
  }

  .concept-grid {
    max-width: 570px;
  }

  .process-list {
    gap: 30px;
  }

  .process-list li > span {
    margin-bottom: 18px;
  }

  .audit-layout {
    gap: 44px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: 680px;
    height: 88vh;
    align-items: end;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-network {
    display: none;
  }

  .hero-content {
    padding-bottom: 95px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .scroll-cue {
    right: 16px;
    bottom: 22px;
  }

  .section-space {
    padding: 78px 0;
  }

  .section-intro h2,
  .difference-copy h2,
  .work-intro h2,
  .coverage h2,
  .portfolio-cta h2 {
    font-size: 38px;
  }

  .service-row h3 {
    font-size: 25px;
  }

  .concept-stage {
    min-height: 290px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .price-option {
    min-height: 0;
    padding-right: 0;
  }

  .model-case {
    margin-top: 48px;
    padding: 30px 0;
  }

  .model-case-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-index {
    margin-bottom: 22px;
  }

  .concept-garden .concept-stage {
    min-height: 320px;
  }

  .audit-checks li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .audit-checks b {
    grid-column: 2;
    justify-self: start;
  }

  .footer-inner {
    display: grid;
    gap: 13px;
  }

  .legal-header-inner {
    min-height: 70px;
  }

  .legal-hero {
    padding: 72px 0 52px;
  }

  .legal-hero h1 {
    font-size: 46px;
  }

  .legal-content {
    padding: 58px 0 76px;
  }

  .legal-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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

  .hero-image,
  .hero-network,
  .motion-ready {
    transition: none;
  }

  .grape-node,
  .network-node,
  .network-pulse {
    animation: none;
  }
}
