:root {
  --black: #050505;
  --ink: #141414;
  --charcoal: #232323;
  --white: #ffffff;
  --paper: #f5f1e8;
  --mist: #e8ece9;
  --gold: #bf9251;
  --green: #1e7165;
  --red: #9d3f35;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(20, 20, 20, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  --header-height: 76px;
  --hero-shift: 0px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 18px clamp(18px, 4%, 56px);
  color: var(--white);
  background: rgba(5, 5, 5, 0);
  transition: background 200ms ease, border-color 200ms ease, min-height 200ms ease;
}

.site-header.is-scrolled,
.sub-page .site-header {
  min-height: 64px;
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-text {
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-height: 38px;
  padding: 7px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.story-hero {
  position: relative;
  height: 520svh;
  color: var(--white);
  background: var(--black);
}

.story-hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.story-frame {
  --frame-opacity: 0;
  --frame-scale: 1.075;
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  opacity: var(--frame-opacity);
  pointer-events: none;
  will-change: opacity;
}

.story-frame-image,
.story-frame-shade {
  position: absolute;
  inset: 0;
}

.story-frame-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) brightness(0.82) saturate(0.92);
  transform: scale(var(--frame-scale));
  transform-origin: center;
  will-change: transform;
}

.story-frame-image-tree {
  object-position: 57% center;
}

.story-frame-image-grass {
  object-position: 48% center;
}

.story-frame-image-pruning {
  object-position: 62% center;
}

.story-frame-image-exterior {
  object-position: 57% center;
}

.story-frame-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 48%, rgba(0, 0, 0, 0.76));
}

.story-frame-final .story-frame-image {
  filter: contrast(1.03) brightness(0.88) saturate(0.94);
  transform-origin: center 44%;
}

.story-frame-final .story-frame-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.26) 58%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.8));
  opacity: var(--final-shade-opacity, 0.22);
  will-change: opacity;
}

.story-caption {
  position: absolute;
  bottom: clamp(84px, 12vh, 132px);
  left: clamp(20px, 6vw, 88px);
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: min(620px, calc(100% - 112px));
  color: var(--white);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.8);
  transform: translate3d(0, var(--caption-shift, 18px), 0);
  opacity: var(--caption-opacity, 0);
  will-change: opacity, transform;
}

.story-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.story-caption strong {
  font-size: clamp(1.75rem, 4vw, 3.6rem);
  line-height: 1.16;
}

.story-home {
  position: absolute;
  inset: 0;
  z-index: 10;
  padding: calc(var(--header-height) + 44px) clamp(18px, 4%, 56px) 36px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
}

.story-home.is-visible {
  pointer-events: auto;
}

.story-home .hero-inner {
  align-items: end;
  height: 100%;
  min-height: 0;
}

.story-progress {
  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 48px);
  z-index: 20;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  transform: translateY(-50%);
}

.story-progress > i {
  position: relative;
  display: block;
  width: 1px;
  height: 92px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.story-progress > i > b {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--gold);
  transform: scaleY(var(--story-progress, 0));
  transform-origin: top;
  will-change: transform;
}

.story-scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 20;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  transition: opacity 240ms ease;
  transform: translateX(-50%);
}

.story-scroll-cue.is-hidden {
  opacity: 0;
}

.story-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.story-scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  animation: story-scroll-line 1.8s ease-in-out infinite;
  transform: translateY(-100%);
}

@keyframes story-scroll-line {
  0% {
    transform: translateY(-100%);
  }
  55%,
  100% {
    transform: translateY(100%);
  }
}

body.story-active .site-header.is-scrolled {
  min-height: var(--header-height);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.62), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
}

body.story-active .mobile-contact-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
}

body:not(.js-ready) .story-hero {
  height: 100svh;
}

body:not(.js-ready) .story-frame {
  display: none;
}

body:not(.js-ready) .story-frame-final {
  display: block;
  opacity: 1;
}

body:not(.js-ready) .story-home {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: calc(var(--header-height) + 56px) clamp(18px, 4%, 56px) 44px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.04);
  filter: contrast(1.08) brightness(0.68) saturate(0.9);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.54) 47%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  width: min(1180px, 100%);
  min-height: calc(92svh - var(--header-height) - 100px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
  padding: 34px 0 28px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-company {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.4vw, 3rem);
  white-space: nowrap;
}

.hero-slogan {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(1.75rem, 3.8vw, 3.1rem);
  font-weight: 900;
  line-height: 1.16;
  white-space: nowrap;
}

.hero-lead {
  max-width: 44em;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 6px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.primary-button {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.secondary-button,
.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 20, 20, 0.15);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.secondary-button:hover,
.secondary-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

.hero-panel {
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-panel-head {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
}

.hero-panel-head img {
  width: 78px;
  height: 54px;
  object-fit: cover;
  background: var(--white);
  border-radius: 4px;
}

.hero-panel-head p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.55;
}

.hero-facts {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-facts dd {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.panel-link,
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 900;
}

.panel-link::after,
.text-link::after {
  content: "→";
  margin-left: 8px;
}

.section,
.company-section {
  padding: 108px clamp(18px, 4%, 56px);
}

.section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p:last-child,
.compact p:last-child {
  color: rgba(20, 20, 20, 0.68);
}

.compact {
  display: block;
  margin: 0;
}

.compact p:last-child {
  max-width: 38em;
  margin-top: 20px;
}

.principle-card,
.service-card,
.work-card,
.strength-list article,
.recruit-points div,
.contact-form,
.company-note,
.company-table {
  border-radius: 8px;
}

.principle-card span,
.card-number,
.work-card span,
.strength-list span,
.recruit-points span,
.process-strip span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.philosophy-section {
  color: var(--white);
  background:
    linear-gradient(180deg, #070707 0%, #161514 100%);
}

.philosophy-section .section-heading > p:last-child,
.philosophy-section .compact p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.statement-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.philosophy-display {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: stretch;
  margin-top: 72px;
}

.philosophy-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  padding: 42px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(191, 146, 81, 0.2), transparent 40%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.philosophy-lead::before {
  position: absolute;
  right: -34px;
  bottom: -60px;
  content: "STG";
  color: rgba(255, 255, 255, 0.045);
  font-size: 12rem;
  font-weight: 900;
  line-height: 0.78;
}

.philosophy-lead span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.philosophy-lead strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  color: var(--white);
  font-size: 3.6rem;
  line-height: 1.12;
}

.philosophy-lead p {
  position: relative;
  z-index: 1;
  max-width: 28em;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.philosophy-lines {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.philosophy-lines p {
  display: grid;
  grid-template-columns: 48px minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 26px;
  align-items: baseline;
  margin: 0;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line-dark);
}

.philosophy-lines span {
  display: block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
}

.philosophy-lines strong {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.5;
}

.philosophy-lines em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 72px;
}

.principle-card {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
}

.principle-card h3 {
  margin-top: 42px;
}

.principle-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.service-section {
  background: var(--white);
}

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

.service-card {
  overflow: hidden;
  background: #fbfaf6;
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 22px;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card p {
  margin: 14px 0 24px;
  color: rgba(20, 20, 20, 0.68);
}

.status-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(30, 113, 101, 0.08);
  border: 1px solid rgba(30, 113, 101, 0.2);
  border-radius: 999px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.process-strip div {
  min-height: 160px;
  padding: 22px;
  background: var(--paper);
}

.process-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
}

.process-strip p {
  margin-top: 8px;
  color: rgba(20, 20, 20, 0.68);
}

.strength-section {
  background:
    linear-gradient(135deg, rgba(30, 113, 101, 0.11), transparent 42%),
    var(--paper);
}

.strength-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

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

.strength-list article {
  min-height: 248px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line-light);
}

.strength-list h3 {
  margin-top: 44px;
}

.strength-list p {
  margin-top: 14px;
  color: rgba(20, 20, 20, 0.68);
}

.works-section {
  color: var(--white);
  background: #101010;
}

.works-section .compact p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.works-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

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

.work-card {
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
}

.work-card span {
  display: block;
  margin: 18px 20px 0;
}

.work-card h3 {
  margin: 10px 20px 0;
}

.work-card p {
  margin: 10px 20px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.recruit-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.recruit-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.22)),
    url("assets/generated-recruit-team.png");
  background-position: center;
  background-size: cover;
  opacity: 0.86;
}

.recruit-section > .section-inner {
  position: relative;
  z-index: 1;
}

.recruit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.recruit-copy p:not(.eyebrow) {
  max-width: 38em;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.recruit-points {
  display: grid;
  gap: 14px;
}

.recruit-points div {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
}

.recruit-points strong {
  display: block;
  margin-top: 14px;
  font-size: 1.22rem;
}

.recruit-points p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.message-section {
  color: var(--ink);
  background: var(--white);
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: 76px;
  align-items: center;
}

.portrait-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  background: var(--charcoal);
}

.portrait-panel p {
  position: absolute;
  align-self: end;
  justify-self: start;
  margin: 0 0 18px 18px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 0.82rem;
}

.message-copy p:not(.eyebrow),
.contact-copy p {
  max-width: 38em;
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.7);
}

.message-copy .message-signature {
  display: grid;
  gap: 2px;
  margin-top: 30px;
  color: var(--ink);
  text-align: right;
}

.message-signature span {
  font-size: 0.8rem;
  font-weight: 700;
}

.message-signature strong {
  font-size: 1rem;
}

.pending-note {
  padding: 14px 16px;
  background: var(--mist);
  border-left: 4px solid var(--green);
  border-radius: 4px;
}

.contact-section {
  padding-bottom: 132px;
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.contact-methods span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-methods strong {
  font-size: 1.15rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-lead {
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.84rem;
}

.form-summary {
  width: 100%;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 6px;
}

.mobile-contact-bar {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4%, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  font-size: 0.84rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--white);
}

.sub-page {
  background: var(--paper);
}

.sub-hero {
  padding: calc(var(--header-height) + 74px) clamp(18px, 4%, 56px) 88px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(191, 146, 81, 0.16), transparent 36%),
    var(--black);
}

.sub-hero-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.sub-hero p:last-child {
  max-width: 42em;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.company-note {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line-light);
}

.company-note p {
  color: rgba(20, 20, 20, 0.68);
}

.company-table {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-light);
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.company-table th {
  width: 32%;
  color: rgba(20, 20, 20, 0.66);
  background: #faf8f2;
  font-weight: 900;
}

.company-table td {
  color: var(--ink);
}

.home-message {
  margin-top: 0;
}

.route-section {
  background: var(--paper);
}

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

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

.route-card,
.evidence-grid article,
.belief-grid article {
  display: grid;
  min-height: 250px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.route-card span,
.evidence-grid span,
.belief-grid span,
.service-detail-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card h3,
.evidence-grid h3,
.belief-grid h3 {
  margin-top: 36px;
}

.route-card p,
.evidence-grid p,
.belief-grid p {
  margin-top: 12px;
  color: rgba(20, 20, 20, 0.68);
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 1fr);
  gap: 0;
  overflow: hidden;
  background: #fbfaf6;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.service-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
}

.service-detail-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.service-detail-card h3 {
  margin-top: 18px;
  font-size: 1.7rem;
}

.service-detail-card p {
  margin-top: 16px;
  color: rgba(20, 20, 20, 0.68);
}

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

.evidence-section,
.recruit-detail-section,
.map-section {
  background: var(--white);
}

.recruit-section.standalone {
  min-height: auto;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: stretch;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.mini-cta {
  padding-top: 72px;
  padding-bottom: 92px;
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(191, 146, 81, 0.2), transparent 44%),
    var(--black);
  border-radius: 8px;
}

.split-cta p:not(.eyebrow) {
  max-width: 46em;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.split-cta .primary-button {
  min-width: 210px;
}

body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-inner,
  .section-heading,
  .opening-grid,
  .statement-grid,
  .philosophy-display,
  .strength-layout,
  .works-layout,
  .recruit-grid,
  .message-grid,
  .contact-layout,
  .company-layout,
  .service-detail-card,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    gap: 28px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .story-home .hero-panel {
    display: none;
  }

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

  .principle-grid,
  .opening-cards,
  .process-strip,
  .route-grid,
  .evidence-grid,
  .belief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-card img {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .story-hero {
    height: 500svh;
  }

  .story-caption {
    bottom: clamp(76px, 11vh, 104px);
    left: clamp(18px, 5vw, 42px);
    max-width: calc(100% - 76px);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 48px;
    padding: 14px;
    border-radius: 4px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-inner {
    min-height: 0;
  }

  .philosophy-lead {
    min-height: 360px;
  }

  .philosophy-lines p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portrait-panel {
    min-height: 320px;
  }

  .portrait-panel img {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-text {
    max-width: 172px;
    white-space: normal;
    line-height: 1.2;
  }

  .brand-mark {
    width: 56px;
    height: 38px;
  }

  .story-hero {
    height: 480svh;
  }

  .story-frame-image-tree {
    object-position: 68% center;
  }

  .story-frame-image-grass {
    object-position: 44% center;
  }

  .story-frame-image-pruning {
    object-position: 70% center;
  }

  .story-frame-image-exterior {
    object-position: 62% center;
  }

  .story-frame-final .story-frame-image-team {
    top: 14svh;
    bottom: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: contrast(1.02) brightness(0.9) saturate(0.95);
  }

  .story-frame-final .story-frame-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.28), transparent 30%, rgba(5, 5, 5, 0.14) 42%, rgba(5, 5, 5, 0.96) 65%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.24), transparent 30%, transparent 70%, rgba(5, 5, 5, 0.24));
  }

  .story-caption {
    bottom: 78px;
    left: 18px;
    max-width: calc(100% - 54px);
    gap: 6px;
  }

  .story-caption strong {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .story-home {
    padding: calc(var(--header-height) + 20px) 16px 16px;
  }

  .story-home .hero-copy {
    width: 100%;
    padding: 0 0 6px;
  }

  .story-home .hero-lead,
  .story-home .hero-tags {
    display: none;
  }

  .story-home .hero-company {
    margin-bottom: 10px;
  }

  .story-home .eyebrow {
    margin-bottom: 8px;
  }

  .story-progress {
    top: 48%;
    right: 10px;
    gap: 7px;
    font-size: 0.58rem;
  }

  .story-progress > i {
    height: 72px;
  }

  .story-scroll-cue {
    bottom: 12px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 28px;
  }

  .hero-copy {
    padding: 18px 0 8px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .hero-slogan {
    margin-top: 10px;
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .hero-tags span {
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions,
  .contact-actions,
  .company-actions {
    display: grid;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .section,
  .company-section {
    padding: 72px 16px;
  }

  .principle-grid,
  .service-grid,
  .process-strip,
  .strength-list,
  .works-list,
  .route-grid,
  .evidence-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .opening-cards article,
  .principle-card,
  .strength-list article {
    min-height: auto;
  }

  .service-card-body {
    min-height: auto;
  }

  .philosophy-display,
  .principle-grid {
    margin-top: 44px;
  }

  .philosophy-lead {
    min-height: 300px;
    padding: 28px;
  }

  .philosophy-lead strong {
    font-size: 2.45rem;
  }

  .philosophy-lines span {
    font-size: 1.55rem;
  }

  .home-message .portrait-panel,
  .home-message .portrait-panel img {
    min-height: 0;
  }

  .home-message .portrait-panel {
    aspect-ratio: 4 / 3;
  }

  .contact-form {
    padding: 22px;
  }

  .service-detail-card div {
    padding: 24px;
  }

  .service-detail-card img {
    min-height: 220px;
  }

  .route-card,
  .evidence-grid article,
  .belief-grid article {
    min-height: auto;
  }

  .split-cta {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .split-cta .primary-button {
    min-width: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .company-table td {
    padding-top: 0;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(5, 5, 5, 0.88);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .show-mobile-bar .mobile-contact-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .mobile-contact-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 900;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 92px;
  }
}

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

  .hero-bg {
    transform: none;
  }

  .story-hero {
    height: 100svh;
  }

  .story-frame {
    display: none;
  }

  .story-frame-final {
    display: block;
    opacity: 1;
  }

  .story-frame-final .story-frame-image {
    transform: none;
  }

  .story-home {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .story-progress,
  .story-scroll-cue {
    display: none;
  }

  body.js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
