:root {
  --ink: #25221d;
  --ink-soft: #625d52;
  --navy: #1b1915;
  --navy-soft: #29251e;
  --paper: #f2ede1;
  --white: #fbf8ef;
  --line: rgba(37, 34, 29, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #b84e35;
  --accent-soft: #d5a18a;
  --lavender: #c7c5ac;
  --forest: #424b3a;
  --serif: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --shell: min(86vw, 1320px);
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--navy);
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(80, 68, 48, 0.055) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 237, 225, 0.94);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: height 450ms var(--ease), color 350ms ease, background 350ms ease, border-color 350ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 72px;
  border-color: var(--line);
  background: rgba(242, 237, 225, 0.94);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand,
.site-header.is-menu-open .brand {
  width: clamp(130px, 11.5vw, 145px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: clamp(140px, 14vw, 178px);
  overflow: hidden;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease);
}

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

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-contact svg,
.primary-link svg,
.contact__action a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 300ms var(--ease);
}

.header-contact:hover svg,
.header-contact:focus-visible svg,
.contact__action a:hover svg,
.contact__action a:focus-visible svg {
  transform: translate(3px, -3px);
}

.menu-button {
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.menu-button__close {
  display: none;
}

.site-header.is-menu-open .menu-button__open {
  display: none;
}

.site-header.is-menu-open .menu-button__close {
  display: block;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: calc(var(--header-height) + 46px) 7vw 38px;
  visibility: hidden;
  transform: translateY(-12px);
  background: var(--paper);
  opacity: 0;
  transition: visibility 0s linear 400ms, opacity 350ms ease, transform 500ms var(--ease);
}

.mobile-menu.is-open {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0 15px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(30px, 10vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.mobile-menu nav a span {
  width: 22px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mobile-menu__footer {
  position: absolute;
  right: 7vw;
  bottom: 34px;
  left: 7vw;
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero__image,
.hero__shade,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__image {
  transform: scale(1.02);
  background-image: url("/images/hero-jomon-v2.webp");
  background-position: center center;
  background-size: cover;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.99) 0%, rgba(18, 16, 13, 0.88) 35%, rgba(18, 16, 13, 0.22) 67%, rgba(18, 16, 13, 0.1) 100%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.18), rgba(18, 16, 13, 0.48));
}

.hero__grid {
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(28deg, rgba(240, 230, 207, 0.26) 0 1px, transparent 1px 17px),
    repeating-linear-gradient(-28deg, rgba(240, 230, 207, 0.12) 0 1px, transparent 1px 17px);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 60%);
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

@keyframes hero-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(85vw, 1320px);
  margin: 64px auto 0;
}

.hero__eyebrow,
.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.19em;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 6.1vw, 94px);
  font-family: var(--serif);
  font-weight: 540;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 2;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 268px;
  margin-top: 38px;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--navy);
}

.primary-link:hover svg,
.primary-link:focus-visible svg {
  transform: translateX(4px);
}

.hero__rail {
  position: absolute;
  z-index: 3;
  right: 3.3vw;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.hero__rail i {
  position: relative;
  display: block;
  width: 1px;
  height: 68px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero__rail i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

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

.hero__index {
  position: absolute;
  z-index: 2;
  right: 9vw;
  bottom: 43px;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero__index span {
  margin: 0 8px;
}

.section {
  position: relative;
  padding: clamp(110px, 12vw, 190px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: start;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.16em;
}

.section-kicker span {
  color: var(--accent);
}

.section-kicker p {
  margin: 0;
}

.section-kicker::after {
  width: 48px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.42;
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.55);
}

.display-heading {
  margin: 0;
  font-size: clamp(43px, 5vw, 72px);
  font-family: var(--serif);
  font-weight: 540;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.display-heading--light,
.eyebrow--light {
  color: var(--white);
}

.statement {
  overflow: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(80, 68, 48, 0.06) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
}

.statement::before {
  position: absolute;
  top: 0;
  left: 11vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(21, 24, 33, 0.1), transparent);
  content: "";
}

.statement__layout {
  display: grid;
  grid-template-columns: 0.65fr 2fr 1fr;
  gap: clamp(30px, 5vw, 90px);
}

.statement__main {
  padding-top: 48px;
}

.statement__body {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  max-width: 660px;
  margin: 72px 0 0 11%;
}

.statement__body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 2.15;
}

.accent-line {
  display: block;
  width: 70px;
  height: 1px;
  margin-top: 14px;
  background: var(--accent);
}

.statement__orb {
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  width: min(21vw, 300px);
}

.statement__orb::before,
.statement__orb::after,
.statement__orb span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.statement__orb::before {
  inset: 0;
  border: 1px solid rgba(21, 24, 33, 0.16);
  border-radius: 46% 54% 48% 52% / 53% 45% 55% 47%;
}

.statement__orb::after {
  inset: 16%;
  border: 1px solid rgba(21, 24, 33, 0.1);
  border-radius: 53% 47% 56% 44% / 46% 54% 48% 52%;
}

.statement__orb span {
  top: 50%;
  left: 50%;
  width: 30%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: var(--accent);
  box-shadow: 0 22px 70px rgba(255, 101, 77, 0.32);
}

.services {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.services::before {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(24deg, rgba(239, 227, 200, 0.035) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-24deg, rgba(239, 227, 200, 0.02) 0 1px, transparent 1px 22px);
  content: "";
  pointer-events: none;
}

.section-heading-row {
  position: relative;
  display: grid;
  grid-template-columns: 0.62fr 1.35fr 0.78fr;
  gap: clamp(30px, 5vw, 86px);
  align-items: end;
}

.section-intro {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 2.05;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  min-height: 590px;
  padding: 34px clamp(24px, 3.2vw, 52px) 42px;
  border-right: 1px solid var(--line-light);
  transition: background 450ms var(--ease), transform 450ms var(--ease);
}

.service-card:first-child {
  border-left: 1px solid var(--line-light);
}

.service-card::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  content: "";
  transition: transform 450ms var(--ease);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.045);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-card__meta span:first-child {
  color: var(--accent);
}

.service-card h3 {
  max-width: 280px;
  margin: 105px 0 24px;
  font-size: clamp(25px, 2.2vw, 34px);
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.service-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 2;
}

.service-card ul {
  position: absolute;
  right: clamp(24px, 3.2vw, 52px);
  bottom: 44px;
  left: clamp(24px, 3.2vw, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.3;
}

.approach {
  overflow: hidden;
  background-color: #faf7ee;
  background-image: radial-gradient(rgba(80, 68, 48, 0.05) 0.6px, transparent 0.7px);
  background-size: 8px 8px;
}

.approach__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.15fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.approach__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--lavender);
  border-radius: 49% 51% 46% 54% / 53% 48% 52% 47%;
  overflow: hidden;
}

.approach__visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(28deg, rgba(37, 34, 29, 0.1) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-28deg, rgba(37, 34, 29, 0.06) 0 1px, transparent 1px 18px);
  content: "";
}

.approach__visual > p {
  position: absolute;
  right: 34px;
  bottom: 28px;
  margin: 0;
  color: rgba(7, 17, 31, 0.58);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.5;
  letter-spacing: 0.17em;
  text-align: right;
}

.approach__rings {
  position: relative;
  width: 70%;
  aspect-ratio: 1;
  animation: ring-rotate 26s linear infinite;
}

@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

.approach__rings span,
.approach__rings i {
  position: absolute;
  border: 1px solid rgba(7, 17, 31, 0.36);
  border-radius: 50%;
}

.approach__rings span:nth-child(1) { inset: 0; }
.approach__rings span:nth-child(2) { inset: 18%; }
.approach__rings span:nth-child(3) { inset: 36%; }

.approach__rings span:nth-child(1),
.approach__rings span:nth-child(3) {
  border-style: dashed;
}

.approach__rings i {
  top: 3%;
  left: 51%;
  width: 18%;
  aspect-ratio: 1;
  border: 0;
  background: var(--accent);
  box-shadow: 0 14px 38px rgba(255, 101, 77, 0.34);
}

.approach__lead {
  max-width: 640px;
  margin: 42px 0 60px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

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

.approach__principles article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 27px 0 30px;
  border-bottom: 1px solid var(--line);
}

.approach__principles article > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 750;
}

.approach__principles h3 {
  margin: -5px 0 7px;
  font-size: 19px;
  font-family: var(--serif);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.approach__principles p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.process {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(80, 68, 48, 0.06) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
}

.section-heading-row--process .section-intro {
  color: var(--ink-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 100px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-item {
  min-height: 390px;
  padding: 28px clamp(20px, 2.4vw, 38px) 36px;
  border-right: 1px solid var(--line);
}

.process-item:first-child {
  border-left: 1px solid var(--line);
}

.process-item__top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.process-item__number {
  color: var(--accent);
}

.process-item__en {
  color: var(--ink-soft);
}

.process-item h3 {
  margin: 105px 0 20px;
  font-size: clamp(27px, 2.5vw, 38px);
  font-family: var(--serif);
  font-weight: 570;
  letter-spacing: -0.04em;
}

.process-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.company {
  overflow: hidden;
  background: var(--lavender);
}

.company::after {
  position: absolute;
  top: 50%;
  right: -12vw;
  width: 40vw;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.08), 0 0 0 16vw rgba(255, 255, 255, 0.06);
}

.company__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.62fr 2.2fr;
  gap: clamp(40px, 8vw, 130px);
}

.company__content {
  max-width: 850px;
}

.company-table {
  margin: 72px 0 0;
  border-top: 1px solid rgba(21, 24, 33, 0.22);
}

.company-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(21, 24, 33, 0.22);
}

.company-table dt {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.company-table dd {
  margin: 0;
  font-size: 14px;
}

.company-table a {
  text-decoration: underline;
  text-decoration-color: rgba(21, 24, 33, 0.35);
  text-underline-offset: 4px;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 180px) 0;
  background: var(--navy);
  color: var(--white);
}

.contact__glow {
  position: absolute;
  top: 50%;
  left: -4vw;
  width: 34vw;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 77, 0.38), rgba(255, 101, 77, 0.06) 45%, transparent 68%);
  filter: blur(6px);
}

.contact__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.contact__title {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 80px);
  font-family: var(--serif);
  font-weight: 520;
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.contact__action > p {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 2;
}

.contact__action > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 4px 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.contact__action a span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: clamp(16px, 1.5vw, 21px);
}

.contact__action a small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.contact__action a svg {
  width: 30px;
  height: 30px;
}

.site-footer {
  padding: 72px 7vw 26px;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(80, 68, 48, 0.055) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
  color: var(--ink);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand--footer {
  width: clamp(160px, 16vw, 198px);
}

.site-footer nav {
  display: flex;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-footer__bottom {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-footer__bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

.js .hero-animate {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-enter 900ms var(--ease) forwards;
}

.js .hero-animate:nth-child(1) { animation-delay: 180ms; }
.js .hero-animate:nth-child(2) { animation-delay: 280ms; }
.js .hero-animate:nth-child(3) { animation-delay: 400ms; }
.js .hero-animate:nth-child(4) { animation-delay: 520ms; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.error-page main > p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.error-page h1 {
  margin: 14px 0 0;
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.error-page .primary-link {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1024px) {
  :root {
    --shell: min(88vw, 900px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero__content {
    width: 88vw;
  }

  .statement__layout {
    grid-template-columns: 0.45fr 1.8fr;
  }

  .statement__orb {
    display: none;
  }

  .section-heading-row {
    grid-template-columns: 0.42fr 1.5fr;
  }

  .section-heading-row .section-intro {
    grid-column: 2;
    max-width: 570px;
    margin-top: 24px;
  }

  .service-grid {
    margin-top: 70px;
  }

  .service-card {
    min-height: 560px;
  }

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

  .approach__layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }

  .process-item {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: 88vw;
    --header-height: 68px;
  }

  body {
    font-size: 14px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    grid-template-columns: 1fr auto;
    height: var(--header-height);
    padding: 0 6vw;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: block;
  }

  .brand {
    width: 132px;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-menu-open .brand {
    width: 132px;
  }

  .hero {
    align-items: flex-end;
    min-height: 680px;
    height: max(720px, 100svh);
  }

  .hero__image {
    transform: none;
    background-position: 66% center;
    animation: none;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(18, 16, 13, 0.24) 0%, rgba(18, 16, 13, 0.42) 30%, rgba(18, 16, 13, 0.96) 72%, rgba(18, 16, 13, 1) 100%),
      linear-gradient(90deg, rgba(18, 16, 13, 0.7), rgba(18, 16, 13, 0.1));
  }

  .hero__grid {
    opacity: 0.11;
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(180deg, black, transparent 68%);
    mask-image: linear-gradient(180deg, black, transparent 68%);
  }

  .hero__content {
    width: 88vw;
    margin: 0 auto;
    padding-bottom: 78px;
  }

  .hero__eyebrow,
  .eyebrow {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.5vw, 66px);
    line-height: 1.12;
  }

  .hero__lead {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.9;
  }

  .primary-link {
    width: 100%;
    margin-top: 28px;
  }

  .hero__rail {
    display: none;
  }

  .hero__index {
    right: 6vw;
    bottom: 26px;
  }

  .section {
    padding: 96px 0;
  }

  .section-kicker {
    margin-bottom: 55px;
  }

  .display-heading {
    font-size: clamp(39px, 11.2vw, 50px);
    line-height: 1.24;
  }

  .statement::before {
    left: 6vw;
  }

  .statement__layout,
  .section-heading-row,
  .approach__layout,
  .company__layout,
  .contact__layout {
    display: block;
  }

  .statement__main {
    padding-top: 0;
  }

  .statement__body {
    display: block;
    margin: 48px 0 0;
  }

  .statement__body .accent-line {
    width: 54px;
    margin: 0 0 25px;
  }

  .statement__body p {
    font-size: 14px;
    line-height: 2.05;
  }

  .section-heading-row .section-intro {
    max-width: none;
    margin: 30px 0 0;
  }

  .service-grid {
    display: block;
    margin-top: 60px;
    border: 0;
  }

  .service-card,
  .service-card:first-child {
    min-height: auto;
    padding: 26px 0 30px;
    border-top: 1px solid var(--line-light);
    border-right: 0;
    border-left: 0;
  }

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

  .service-card::before {
    display: none;
  }

  .service-card h3 {
    margin: 54px 0 18px;
    font-size: 29px;
  }

  .service-card > p {
    font-size: 13px;
  }

  .service-card ul {
    position: static;
    margin-top: 30px;
  }

  .approach__visual {
    width: 100%;
    margin-bottom: 78px;
  }

  .approach__copy .display-heading br {
    display: none;
  }

  .approach__lead {
    margin: 36px 0 48px;
    font-size: 14px;
  }

  .approach__principles article {
    grid-template-columns: 40px 1fr;
  }

  .process-list {
    display: block;
    margin-top: 60px;
    border-bottom: 0;
  }

  .process-item,
  .process-item:first-child {
    min-height: auto;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .process-item h3 {
    margin: 48px 0 12px;
    font-size: 32px;
  }

  .company::after {
    top: auto;
    right: -32vw;
    bottom: -10vw;
    width: 90vw;
    transform: none;
  }

  .company__content .eyebrow {
    margin-top: 0;
  }

  .company-table {
    margin-top: 50px;
  }

  .company-table div {
    display: block;
    padding: 20px 0;
  }

  .company-table dt {
    margin-bottom: 7px;
    font-size: 9px;
  }

  .company-table dd {
    font-size: 13px;
  }

  .contact__glow {
    top: 10%;
    left: -20vw;
    width: 90vw;
    transform: none;
  }

  .contact__title {
    font-size: clamp(39px, 11vw, 52px);
  }

  .contact__action {
    margin-top: 54px;
  }

  .contact__action > p {
    margin-bottom: 28px;
  }

  .contact__action > a {
    padding: 19px 2px 19px 0;
  }

  .contact__action a span {
    font-size: 16px;
  }

  .site-footer {
    padding: 58px 6vw 24px;
  }

  .brand--footer {
    width: 170px;
  }

  .site-footer__top {
    align-items: flex-start;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }

  .site-footer__bottom {
    margin-top: 58px;
  }

  .site-footer__bottom p:first-child {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    max-width: 330px;
  }

  .mobile-menu nav a {
    padding-top: 9px;
    padding-bottom: 12px;
    font-size: 34px;
  }

  .mobile-menu__footer {
    flex-direction: column;
    gap: 6px;
  }

  .display-heading {
    font-size: 38px;
  }

  .statement__body p,
  .approach__lead {
    font-size: 13px;
  }
}

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

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

/* 2026-09: provided association copy and proposal imagery. */
.hero__image {
  left: 42%;
  background-image: url("/images/community.webp");
  background-position: center;
  animation: none;
  transform: none;
}
.hero__shade {
  background: linear-gradient(90deg, #1b1915 0%, #1b1915 32%, rgba(27,25,21,.86) 48%, rgba(27,25,21,.12) 100%);
}
.hero h1 {
  max-width: 860px;
  font-size: clamp(30px, 3.65vw, 56px);
  line-height: 1.65;
  letter-spacing: .015em;
}
.hero__eyebrow { color: #e0c3a4; font-size: 13px; }
.hero__lead { max-width: 490px; }
.statement__layout { grid-template-columns: .6fr 2.3fr .5fr; gap: 4vw; }
.statement .display-heading { font-size: clamp(30px, 3.7vw, 54px); line-height: 1.6; }
.statement__orb { width: min(13vw, 200px); }
.statement__body { margin: 45px 0 0; grid-template-columns: 40px 1fr; }
.statement__body .accent-line { width: 40px; }
.greeting { background: var(--white); }
.greeting__layout { display: grid; grid-template-columns: .85fr 1.8fr; gap: clamp(48px, 8vw, 130px); }
.greeting__heading .section-kicker { margin-bottom: 48px; }
.greeting__caption { color: var(--ink-soft); margin-top: 32px; line-height: 2; }
.greeting__body > p { margin: 0 0 28px; line-height: 2.25; }
.greeting__signature { margin-top: 44px; text-align: right; }
.greeting__signature p { margin: 5px 0; }
.greeting__signature strong { margin-left: 16px; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.services .display-heading { font-size: clamp(30px, 3.6vw, 52px); line-height: 1.6; }
.service-card { min-height: 450px; display: flex; flex-direction: column; }
.service-card h3 { margin-top: 65px; }
.service-card ul { position: static; margin-top: auto; padding-top: 30px; }
.service-card > p, .section-intro, .contact__action > p { color: rgba(255,255,255,.78); }
.service-card__meta { color: rgba(255,255,255,.65); }
.contact__title { font-size: clamp(34px, 4.5vw, 64px); line-height: 1.6; }
.desktop-nav, .header-contact { font-size: 12px; letter-spacing: .03em; }
.desktop-nav { gap: clamp(16px, 2vw, 32px); }
.site-footer nav { gap: 24px; flex-wrap: wrap; }
.mobile-menu nav a { font-size: clamp(22px, 6vw, 30px); letter-spacing: .02em; }
.primary-link:hover, .primary-link:focus-visible { color: var(--white); }
@media (min-width: 761px) and (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 20px; }
  .desktop-nav { justify-content: center; gap: 14px; font-size: 10px; }
  .header-contact { font-size: 10px; gap: 8px; }
  .brand { width: 130px; }
  .statement__layout { grid-template-columns: .6fr 2.3fr; }
}
@media (max-width: 760px) {
  .hero { height: auto; min-height: 820px; }
  .hero__image { inset: 68px 0 auto; height: 340px; background-position: center 40%; }
  .hero__shade { background: linear-gradient(180deg, transparent 150px, rgba(27,25,21,.25) 260px, #1b1915 420px); }
  .hero__content { padding: 345px 0 58px; }
  .hero h1 { font-size: clamp(21px, 5.7vw, 38px); line-height: 1.8; letter-spacing: 0; }
  .hero__eyebrow { font-size: 11px; }
  .hero__lead { font-size: 14px; }
  .statement__layout, .greeting__layout { display: block; }
  .statement .display-heading, .services .display-heading { font-size: clamp(27px, 7vw, 40px); }
  .statement__body { display: block; }
  .greeting__heading { margin-bottom: 42px; }
  .greeting__body > p { font-size: 15px; line-height: 2.15; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 40px; }
  .contact__title { font-size: clamp(30px, 8vw, 44px); }
  .mobile-menu { overflow-y: auto; }
  .mobile-menu__footer { position: static; margin-top: 32px; flex-wrap: wrap; gap: 12px; }
}

/* Pale green proposal: a softer palette for the association. */
:root {
  --ink: #243e32;
  --ink-soft: #4d6557;
  --paper: #edf5e9;
  --white: #f6faf3;
  --lavender: #dcebd6;
  --accent: #3f7051;
  --line: rgba(36, 62, 50, .2);
  --line-light: rgba(36, 62, 50, .22);
}
html { background: var(--paper); }
.site-header, .site-header.is-scrolled, .site-header.is-menu-open {
  background: rgba(237, 245, 233, .96);
}
.hero, .services, .contact { background: #e3efdc; color: var(--ink); }
.hero__shade {
  background: linear-gradient(90deg, #e3efdc 0%, #e3efdc 32%, rgba(227,239,220,.9) 48%, rgba(227,239,220,.05) 100%);
}
.hero__grid { opacity: .04; }
.hero__eyebrow, .eyebrow--light { color: var(--accent); }
.hero__lead, .hero__rail, .hero__index,
.section-intro, .service-card > p, .service-card__meta,
.service-card li, .contact__action > p, .section-kicker--light {
  color: var(--ink-soft);
}
.display-heading--light { color: var(--ink); }
.primary-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.primary-link:hover, .primary-link:focus-visible { background: #2d563b; border-color: #2d563b; color: #fff; }
.services::before { opacity: .16; }
.service-card li { border-color: var(--line); }
.service-card:hover { background: rgba(255,255,255,.3); }
.contact__action > a { border-color: var(--line); }
.contact__glow { background: radial-gradient(circle, rgba(132,176,114,.2), transparent 68%); }
.statement__orb span { box-shadow: 0 22px 70px rgba(63,112,81,.16); }
.error-page .primary-link { color: #fff; }
@media (max-width: 760px) {
  .hero__shade {
    background: linear-gradient(180deg, transparent 150px, rgba(227,239,220,.25) 260px, #e3efdc 420px);
  }
}


/* Representative portrait, alongside the message on wide screens. */
.greeting__portrait {
  max-width: 340px;
  margin: 36px 0 0;
}
.greeting__portrait img {
  display: block;
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}
.greeting__portrait figcaption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.greeting__portrait figcaption span { color: var(--ink-soft); font-size: 12px; }
.greeting__portrait figcaption strong { font-family: var(--serif); font-size: 23px; font-weight: 500; letter-spacing: .08em; }
@media (max-width: 760px) {
  .greeting__portrait { width: min(100%, 300px); margin: 32px auto 0; }
}
