:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f5f7f0;
  --ink: #10170f;
  --ink-soft: #59675a;
  --line: #d9e0d5;
  --line-strong: #c3cfbf;
  --primary: #2f6b3f;
  --primary-deep: #18351f;
  --primary-soft: #edf4e8;
  --accent: #a6813a;
  --accent-soft: #f7f1e4;
  --success-soft: #edf7ee;
  --warning-soft: #fff8ec;
  --shadow-sm: 0 16px 42px rgba(17, 29, 18, 0.08);
  --shadow-md: 0 28px 68px rgba(17, 29, 18, 0.12);
  --shell: min(1180px, calc(100vw - 40px));
  --shell-narrow: min(980px, calc(100vw - 40px));
  --font-body: "Manrope", "Noto Sans JP", sans-serif;
  --font-display: "Noto Serif JP", "Noto Sans JP", serif;
  --radius-xl: 18px;
  --radius-l: 14px;
  --radius-m: 10px;
  --radius-s: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--font-body);
  line-height: 1.78;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.ambient {
  display: none;
}

.ambient--top {
  top: -120px;
  left: -120px;
  background: rgba(106, 176, 123, 0.18);
}

.ambient--right {
  top: 10%;
  right: -160px;
  background: rgba(196, 228, 186, 0.2);
}

.site-header,
.site-footer,
.page-shell,
.page-shell--narrow {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  border-bottom: 1px solid rgba(150, 177, 139, 0.34);
  background:
    linear-gradient(90deg, rgba(237, 247, 231, 0.98) 0%, rgba(250, 252, 247, 0.98) 46%, rgba(230, 241, 222, 0.96) 100%);
  backdrop-filter: blur(14px) saturate(1.08);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(24, 53, 31, 0.06);
}

.site-header > .brand,
.site-header > .menu-toggle,
.site-header > .site-nav {
  max-width: var(--shell);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding-inline: max(20px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2));
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 44px;
  border-radius: 14px;
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.08);
}

.brand__copy strong,
.brand__copy small {
  display: block;
}

.brand__copy strong {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__copy small {
  font-size: 0.74rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary-deep);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px rgba(59, 143, 87, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 11px;
  position: relative;
  z-index: 3;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.page-shell {
  width: var(--shell);
  padding: 40px 0 64px;
}

.page-shell--home {
  width: 100%;
  padding-top: 0;
}

.page-shell--products {
  padding-top: 0;
}

.page-shell--narrow {
  width: var(--shell-narrow);
}

.page-shell--narrow .hero-page {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.page-shell--narrow .hero-page h1 {
  max-width: none;
  font-size: 3.35rem;
}

.page-shell--narrow .hero-figure--contact {
  align-self: stretch;
}

.page-shell--narrow .hero-photo--contact {
  height: 100%;
}

.hero-lp,
.hero-page,
.card-masthead,
.service-card,
.issue-card,
.reason-card,
.flow-step,
.faq-item,
.project-card,
.entry-card,
.fact-card,
.principle-card,
.contact-card,
.contact-note,
.contact-banner,
.hero-page__aside,
.section--panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero-lp {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 380px);
  gap: 40px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(106, 176, 123, 0.14), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(166, 129, 58, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 244, 0.97));
}

.hero-lp--home-photo,
.hero-lp--product-photo {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 540px;
  padding: 92px max(20px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2)) 96px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-lp--home-photo {
  background:
    linear-gradient(90deg, rgba(9, 22, 13, 0.78) 0 28%, rgba(9, 22, 13, 0.56) 44%, rgba(9, 22, 13, 0.28) 64%, rgba(9, 22, 13, 0.08) 82%, rgba(9, 22, 13, 0.02) 100%),
    url("/assets/photos/city-walk.png");
}

.hero-lp--product-photo {
  background:
    linear-gradient(90deg, rgba(8, 18, 14, 0.84) 0 24%, rgba(8, 18, 14, 0.62) 42%, rgba(8, 18, 14, 0.3) 62%, rgba(8, 18, 14, 0.1) 80%, rgba(8, 18, 14, 0.02) 100%),
    url("/assets/photos/product-hero-main.png");
}

.hero-lp--home-photo::before,
.hero-lp--product-photo::before {
  display: none;
}

.hero-lp--home-photo .hero-lp__copy,
.hero-lp--product-photo .hero-lp__copy {
  width: min(1180px, calc(100vw - 40px));
  max-width: none;
  margin-inline: auto;
  gap: 22px;
}

.hero-lp--home-photo .eyebrow,
.hero-lp--product-photo .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-lp--home-photo h1,
.hero-lp--product-photo h1 {
  max-width: 9ch;
  font-size: 4.55rem;
  line-height: 1.16;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(3, 11, 6, 0.42);
}

.hero-lp--home-photo h1 span,
.hero-lp--product-photo h1 span {
  color: #dcfce7;
}

.hero-lp--home-photo .lead,
.hero-lp--product-photo .lead {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  text-shadow: 0 10px 26px rgba(4, 10, 24, 0.22);
}

.hero-lp--single {
  grid-template-columns: 1fr;
  min-height: 0;
}

.hero-lp--single .hero-lp__copy {
  max-width: 920px;
}

.hero-lp__copy,
.hero-page__copy {
  min-width: 0;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-lp__copy h1,
.card-masthead h1 {
  margin: 0;
  max-width: 8ch;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-page h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-lp__copy h1 span,
.hero-page h1 span,
.card-masthead h1 span {
  display: block;
  color: var(--primary);
}

.hero-lp--home-photo h1 span,
.hero-lp--product-photo h1 span {
  color: #e7f2de;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead,
.hero-lp p,
.hero-page p,
.card-masthead p,
.service-card p,
.issue-card p,
.reason-card p,
.flow-step p,
.faq-item p,
.project-card p,
.entry-card p,
.fact-card p,
.principle-card p,
.contact-card p,
.contact-note p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-lp__copy .lead,
.hero-page__copy .lead {
  max-width: 54ch;
  font-size: 1.04rem;
  line-height: 1.95;
}

.project-card p + p,
.principle-card p + p,
.contact-card p + p,
.media-card__body p + p {
  margin-top: 12px;
}

.copy-stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.copy-stack > * {
  min-width: 0;
}

.copy-stack--tight {
  gap: 10px;
}

.copy-stack--lead {
  max-width: 54ch;
  gap: 8px;
}

.copy-stack--lead .lead {
  max-width: none;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.action-row--compact {
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #315f3d, #18351f);
  color: #fff;
  box-shadow: 0 16px 30px rgba(24, 53, 31, 0.24);
}

.button--secondary {
  background: var(--surface);
  color: var(--primary-deep);
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 24px rgba(17, 29, 18, 0.04);
}

.hero-figure {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-figure--photo {
  gap: 0;
}

.hero-figure__frame {
  position: relative;
  min-height: 320px;
  padding: 24px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(106, 176, 123, 0.15), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(196, 228, 186, 0.18), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-photo {
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-photo--contact {
  min-height: 360px;
  background-image:
    linear-gradient(135deg, rgba(15, 31, 20, 0.12), rgba(15, 31, 20, 0.04) 38%, rgba(255, 255, 255, 0.02)),
    url("/assets/photos/contact-team.png");
}

.hero-photo--profile {
  min-height: 360px;
  background-image:
    linear-gradient(135deg, rgba(15, 31, 20, 0.14), rgba(15, 31, 20, 0.05) 44%, rgba(255, 255, 255, 0.03)),
    url("/assets/photos/desk-window.png");
}

.hero-photo--products {
  min-height: 360px;
  background-image:
    linear-gradient(135deg, rgba(15, 31, 20, 0.12), rgba(15, 31, 20, 0.05) 42%, rgba(255, 255, 255, 0.03)),
    url("/assets/photos/home-office.png");
}

.hero-figure__frame::before {
  content: "";
  position: absolute;
  inset: auto -15% -30% auto;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 143, 87, 0.14), transparent 70%);
}

.hero-figure__frame img {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17, 29, 18, 0.08));
}

.hero-lp .hero-figure__frame {
  min-height: 300px;
  padding: 20px;
}

.hero-lp .hero-figure__frame img {
  width: min(100%, 330px);
  max-height: 250px;
}

.hero-figure__floating {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 107, 63, 0.14);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(17, 29, 18, 0.08);
}

.hero-figure__floating span {
  display: block;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-figure__floating strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-figure__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-figure__chips span {
  padding: 10px 14px;
  border: 1px solid rgba(47, 107, 63, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(17, 29, 18, 0.04);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-lp__panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-l);
  background: #112017;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hero-lp__panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lp__visual {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, #f7f8f3 0 44px, #dce4d8 44px 45px, #ffffff 45px 100%);
  overflow: hidden;
}

.hero-lp__visual::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a6813a;
  box-shadow: 18px 0 0 #bfcaa7, 36px 0 0 #2f6b3f;
}

.hero-lp__visual::after {
  content: "";
  position: absolute;
  inset: 68px 18px 18px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #f2faf1 0 32%, transparent 32%),
    linear-gradient(#dff1de 0 44px, transparent 44px),
    linear-gradient(180deg, #ffffff, #f8fbf7);
  border: 1px solid #d9e7d9;
}

.hero-lp__metrics {
  display: grid;
  gap: 12px;
}

.hero-lp__metrics article {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-lp__metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lp__metrics strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.section {
  padding-top: 52px;
}

.section--spotlight {
  padding: 56px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section--panel {
  padding: 34px;
  border-radius: var(--radius-l);
  background: var(--surface-muted);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-header--center {
  text-align: center;
}

.section-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--ink);
  font-weight: 700;
}

.section-header h2,
.contact-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-grid,
.issue-grid,
.reason-grid,
.featured-grid,
.flow-grid,
.faq-list,
.principle-grid,
.entry-grid,
.media-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.issue-grid,
.reason-grid,
.entry-grid,
.principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.issue-card,
.reason-card,
.entry-card,
.principle-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-l);
  background: #ffffff;
}

.issue-card__visual {
  display: grid;
  place-items: center;
  height: 156px;
  margin: -6px -6px 14px;
  border-radius: var(--radius-m);
  background: #f5faf4;
  border: 1px solid rgba(217, 230, 214, 0.95);
  overflow: hidden;
}

.issue-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-card__visual--photo img {
  transform: scale(1.02);
}

.issue-card__tag,
.principle-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6d5424;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.issue-card::before,
.principle-card::before,
.contact-card::before,
.media-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-deep), var(--accent));
}

.service-card h3,
.issue-card h3,
.reason-card h3,
.project-card h3,
.flow-step h3,
.faq-item h3,
.principle-card h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-card__index,
.reason-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

.project-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: var(--radius-l);
  background: #ffffff;
}

.project-card:nth-child(1) {
  box-shadow: 0 22px 46px rgba(59, 143, 87, 0.08);
}

.project-card:nth-child(2) {
  box-shadow: 0 22px 46px rgba(148, 201, 115, 0.12);
}

.project-card__visual {
  position: relative;
  height: 220px;
  margin-bottom: 16px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f5faf4;
  display: grid;
  place-items: center;
  padding: 0;
}

.project-card__visual::before {
  display: none;
}

.project-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 20, 0.02), rgba(15, 31, 20, 0.12));
}

.project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.project-card[data-accent="rust"] .project-card__visual {
  background: #f5faf4;
}

.project-card[data-accent="ink"] .project-card__visual {
  background: #f5faf4;
}

.project-card__meta,
.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-card__meta span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card__summary {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.project-card__detail {
  margin-top: 10px;
}

.project-card__footer {
  margin-top: auto;
  padding-top: 22px;
}

.project-card__footer .button {
  min-height: 40px;
  padding-inline: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-page,
.card-masthead {
  padding: 36px;
  border-radius: var(--radius-xl);
}

.hero-page {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
  background: #ffffff;
}

.hero-page--photo-surface {
  border: 1px solid var(--line);
  box-shadow: 0 24px 54px rgba(17, 29, 18, 0.06);
}

.hero-page--single {
  grid-template-columns: 1fr;
}

.hero-page--single .hero-page__copy {
  max-width: 760px;
}

.hero-page__aside {
  padding: 20px;
  border-radius: var(--radius-l);
  background: var(--surface-muted);
}

.hero-page__aside p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-page__aside strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.editorial-block,
.fact-card,
.contact-note,
.contact-banner {
  padding: 32px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.editorial-block h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.editorial-block__visual {
  display: grid;
  place-items: center;
  height: 188px;
  margin: 0 0 18px;
  border-radius: var(--radius-l);
  background: #f5faf4;
  border: 1px solid rgba(217, 230, 214, 0.95);
  overflow: hidden;
}

.editorial-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-block__visual--photo img {
  transform: scale(1.02);
}

.editorial-block p + p {
  margin-top: 14px;
}

.fact-card {
  display: grid;
  gap: 18px;
  background: #ffffff;
}

.fact-card span,
.contact-card span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fact-card strong,
.contact-card strong,
.entry-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.card-masthead {
  text-align: left;
}

.entry-card {
  display: block;
}

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

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

.media-grid--single {
  grid-template-columns: 1fr;
}

.media-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-l);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.media-card--feature {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.media-card__frame {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: #f5faf4;
  overflow: hidden;
}

.media-card__frame--portrait {
  aspect-ratio: 2377 / 3335;
  width: min(100%, 340px);
  justify-self: center;
  background: #ffffff;
}

.media-card__frame img,
.media-placeholder {
  width: 100%;
  height: 100%;
}

.media-card__frame img {
  object-fit: cover;
  padding: 0;
}

.media-card__frame--portrait img {
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.media-card__frame--photo img {
  transform: scale(1.02);
}

.media-card__frame--photo.media-card__frame--portrait img {
  transform: none;
}

.media-card__body {
  display: grid;
  gap: 14px;
}

.media-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.media-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-card {
  position: relative;
  display: block;
  padding: 24px;
  border-radius: var(--radius-l);
  background: #ffffff;
}

.contact-note {
  background: #ffffff;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}

.bullet-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.72em;
  border-radius: 50%;
  background: var(--accent);
}

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

.flow-step {
  padding: 22px;
  border-radius: var(--radius-l);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #fff;
  font-weight: 700;
}

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

.faq-item {
  padding: 24px 26px;
  border-radius: var(--radius-l);
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-banner--strong {
  background: linear-gradient(135deg, #132418, #284c30);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.contact-banner--strong .eyebrow,
.contact-banner--strong p,
.contact-banner--strong h2 {
  color: inherit;
}

.contact-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--primary-deep);
  font-weight: 700;
}

.text-link::after {
  content: ">";
  font-size: 0.9em;
}

.is-placeholder {
  color: var(--ink-soft);
  cursor: default;
}

.site-footer {
  width: var(--shell);
  margin-bottom: 44px;
  padding: 20px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #ffffff;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1040px) {
  .hero-lp,
  .hero-page,
  .editorial-split,
  .contact-layout,
  .contact-banner,
  .featured-grid,
  .featured-grid--full,
  .service-grid,
  .issue-grid,
  .reason-grid,
  .entry-grid,
  .principle-grid,
  .flow-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .section--spotlight {
    padding-top: 44px;
  }
}

@media (max-width: 1240px) {
  .hero-lp {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: 28px;
    padding: 34px;
  }

  .hero-lp__copy h1 {
    font-size: 3.55rem;
  }

  .hero-lp .hero-figure__frame {
    min-height: 260px;
  }

  .hero-lp .hero-figure__frame img {
    width: min(100%, 290px);
    max-height: 220px;
  }

  .hero-figure__floating {
    max-width: 180px;
  }

  .hero-lp--home-photo,
  .hero-lp--product-photo {
    min-height: 500px;
    padding: 72px max(20px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2)) 72px;
  }

  .hero-lp--home-photo {
    background:
      linear-gradient(90deg, rgba(9, 22, 13, 0.72) 0 30%, rgba(9, 22, 13, 0.48) 48%, rgba(9, 22, 13, 0.2) 66%, rgba(9, 22, 13, 0.06) 82%, rgba(9, 22, 13, 0.02) 100%),
      url("/assets/photos/city-walk.png");
  }

  .hero-lp--product-photo {
    background:
      linear-gradient(90deg, rgba(8, 18, 14, 0.78) 0 26%, rgba(8, 18, 14, 0.56) 44%, rgba(8, 18, 14, 0.24) 62%, rgba(8, 18, 14, 0.08) 80%, rgba(8, 18, 14, 0.02) 100%),
      url("/assets/photos/product-hero-main.png");
  }

  .hero-lp--home-photo::before,
  .hero-lp--product-photo::before {
    display: none;
  }

  .hero-lp--home-photo h1,
  .hero-lp--product-photo h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
    --shell-narrow: calc(100vw - 32px);
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    padding-inline: 16px;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: var(--radius-m);
  }

  .brand__copy {
    min-width: 0;
  }

  .brand__copy strong {
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .brand__copy small {
    font-size: 0.66rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    justify-self: end;
    border-color: var(--primary-deep);
    background: var(--primary-deep);
  }

  .menu-toggle span {
    width: 20px;
    background: #ffffff;
  }

  .menu-toggle span + span {
    margin-top: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    background: var(--surface);
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a,
  .button {
    width: 100%;
    text-align: center;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-lp__copy,
  .hero-page__copy,
  .section-header,
  .issue-card,
  .principle-card,
  .project-card,
  .media-card,
  .editorial-block,
  .fact-card,
  .contact-card,
  .contact-note {
    min-width: 0;
  }

  .page-shell {
    width: var(--shell);
    max-width: var(--shell);
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-shell--home,
  .page-shell--products {
    width: 100%;
    padding-top: 0;
  }

  .page-shell--home > .section,
  .page-shell--products > .section {
    width: var(--shell);
    max-width: var(--shell);
    margin-inline: auto;
  }

  .hero-lp,
  .hero-page,
  .card-masthead,
  .service-card,
  .issue-card,
  .reason-card,
  .flow-step,
  .faq-item,
  .project-card,
  .entry-card,
  .fact-card,
  .principle-card,
  .contact-card,
  .contact-note,
  .contact-banner,
  .hero-page__aside,
  .section--panel {
    padding: 20px;
    max-width: 100%;
  }

  .hero-lp__copy h1,
  .hero-page h1,
  .card-masthead h1 {
    max-width: none;
    font-size: 2.15rem;
    line-height: 1.22;
  }

  .hero-lp--home-photo,
  .hero-lp--product-photo {
    width: 100%;
    min-height: 440px;
    margin-left: 0;
    margin-right: 0;
    padding: 56px max(16px, calc((100vw - var(--shell)) / 2)) 44px;
    background-position: center center;
  }

  .hero-lp--home-photo {
    background:
      linear-gradient(180deg, rgba(7, 18, 10, 0.78) 0 18%, rgba(7, 18, 10, 0.58) 44%, rgba(7, 18, 10, 0.32) 66%, rgba(7, 18, 10, 0.12) 88%, rgba(7, 18, 10, 0.04) 100%),
      url("/assets/photos/city-walk.png");
  }

  .hero-lp--product-photo {
    background:
      linear-gradient(180deg, rgba(8, 18, 14, 0.82) 0 18%, rgba(8, 18, 14, 0.6) 42%, rgba(8, 18, 14, 0.32) 66%, rgba(8, 18, 14, 0.12) 88%, rgba(8, 18, 14, 0.04) 100%),
      url("/assets/photos/product-hero-main.png");
  }

  .hero-lp--home-photo::before,
  .hero-lp--product-photo::before {
    display: none;
  }

  .hero-lp--home-photo .hero-lp__copy,
  .hero-lp--product-photo .hero-lp__copy {
    width: 100%;
    gap: 16px;
  }

  .hero-lp--home-photo h1,
  .hero-lp--product-photo h1 {
    max-width: 100%;
    font-size: 2.12rem;
    line-height: 1.2;
  }

  .hero-lp--home-photo .lead,
  .hero-lp--product-photo .lead {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .hero-figure__frame {
    min-height: 260px;
  }

  .hero-photo {
    min-height: 220px;
    border-radius: var(--radius-l);
  }

  .hero-page {
    gap: 20px;
    border-radius: var(--radius-l);
  }

  .page-shell--narrow .hero-page,
  .hero-page {
    grid-template-columns: 1fr;
  }

  .page-shell--narrow .hero-page h1 {
    font-size: 2.05rem;
  }

  .hero-figure__floating {
    position: static;
    max-width: none;
    margin-bottom: 10px;
  }

  .media-card--feature {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 38px;
  }

  .section--spotlight {
    padding-top: 40px;
  }

  .section-header {
    gap: 8px;
    margin-bottom: 18px;
  }

  .section-header h2,
  .contact-banner h2,
  .editorial-block h2 {
    font-size: 1.72rem;
    line-height: 1.28;
  }

  .issue-card p,
  .principle-card p,
  .project-card p,
  .media-card p,
  .editorial-block p,
  .contact-card p,
  .contact-note li {
    word-break: break-all;
  }

  .issue-grid,
  .principle-grid,
  .featured-grid,
  .featured-grid--full {
    gap: 16px;
  }

  .issue-card,
  .principle-card,
  .project-card,
  .media-card,
  .contact-card,
  .contact-note,
  .editorial-block,
  .fact-card {
    border-radius: var(--radius-l);
  }

  .issue-card__visual {
    height: 170px;
    margin: -4px -4px 16px;
  }

  .project-card__visual {
    height: 184px;
  }

  .project-card__meta,
  .project-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card__footer .button {
    width: 100%;
  }

  .editorial-split,
  .contact-layout {
    gap: 16px;
  }

  .editorial-block__visual {
    height: 170px;
  }

  .media-card__frame--portrait {
    width: min(100%, 300px);
  }

  .contact-note {
    padding: 20px;
  }

  .action-row,
  .contact-banner__actions {
    flex-direction: column;
  }

  .site-footer {
    width: var(--shell);
    padding: 18px;
  }
}

:root {
  --bg: #fbfaf4;
  --surface: #fffdf7;
  --surface-muted: #f3f2e8;
  --ink: #132016;
  --ink-soft: #5e685c;
  --line: rgba(33, 55, 35, 0.14);
  --line-strong: rgba(33, 55, 35, 0.24);
  --primary: #35693f;
  --primary-deep: #122819;
  --primary-soft: #e9f0df;
  --accent: #9a7835;
  --accent-soft: #f4ead2;
  --shadow-sm: 0 18px 48px rgba(19, 32, 22, 0.07);
  --shadow-md: 0 32px 76px rgba(19, 32, 22, 0.12);
  --radius-xl: 12px;
  --radius-l: 10px;
  --radius-m: 7px;
  --radius-s: 4px;
  --font-body: "Noto Sans JP", "Manrope", sans-serif;
  --font-display: "Noto Serif JP", "Noto Sans JP", serif;
}

body {
  background:
    linear-gradient(180deg, rgba(250, 250, 244, 0.98), rgba(246, 244, 235, 0.96)),
    repeating-linear-gradient(90deg, rgba(18, 40, 25, 0.025) 0 1px, transparent 1px 96px);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(53, 105, 63, 0.08), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(154, 120, 53, 0.07), transparent 24%);
}

.site-header {
  min-height: 76px;
  border-bottom: 1px solid rgba(31, 57, 35, 0.18);
  background:
    linear-gradient(90deg, rgba(246, 249, 238, 0.94), rgba(255, 253, 247, 0.92) 44%, rgba(232, 240, 222, 0.94));
  box-shadow: 0 12px 34px rgba(18, 40, 25, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--accent));
}

.brand__mark {
  border-radius: 50%;
  background: #f4ead2;
  box-shadow: inset 0 0 0 1px rgba(154, 120, 53, 0.16), 0 10px 22px rgba(18, 40, 25, 0.1);
}

.brand__copy strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.brand__copy small {
  margin-top: 2px;
  color: rgba(19, 32, 22, 0.58);
  font-size: 0.68rem;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  border-radius: 0;
  color: rgba(19, 32, 22, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary-deep);
  background: transparent;
  box-shadow: none;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}

.page-shell {
  padding-bottom: 92px;
}

.page-shell:not(.page-shell--home):not(.page-shell--products) {
  padding-top: 58px;
}

.hero-lp--home-photo,
.hero-lp--product-photo {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 72svh, 720px);
  padding-top: 106px;
  padding-bottom: 112px;
}

.hero-lp--home-photo {
  background-image: url("/assets/photos/city-walk.png");
}

.hero-lp--product-photo {
  background-image: url("/assets/photos/product-hero-main.png");
}

.hero-lp--home-photo::before,
.hero-lp--product-photo::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 22, 13, 0.9) 0%, rgba(8, 22, 13, 0.72) 34%, rgba(8, 22, 13, 0.34) 62%, rgba(8, 22, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 22, 13, 0.08), rgba(8, 22, 13, 0.36));
}

.hero-lp--home-photo::after,
.hero-lp--product-photo::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2));
  bottom: 58px;
  width: min(210px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0));
}

.hero-lp--home-photo .hero-lp__copy,
.hero-lp--product-photo .hero-lp__copy {
  padding-left: 30px;
  border-left: 1px solid rgba(244, 234, 210, 0.46);
}

.hero-lp--home-photo h1,
.hero-lp--product-photo h1 {
  max-width: 10ch;
  font-size: clamp(4.3rem, 6vw, 6.25rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hero-lp--home-photo h1 span,
.hero-lp--product-photo h1 span {
  color: #f2ead6;
}

.hero-lp--home-photo h1 .hero-title-line,
.hero-lp--product-photo h1 .hero-title-line {
  color: #fffdf7;
}

.hero-lp--home-photo h1 .hero-title-accent,
.hero-lp--product-photo h1 .hero-title-accent {
  color: #f2ead6;
}

.hero-lp--home-photo .lead,
.hero-lp--product-photo .lead {
  color: rgba(255, 253, 247, 0.9);
  font-size: 1rem;
  line-height: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section {
  padding-top: 82px;
}

.section--spotlight {
  padding-top: 78px;
}

.section-header {
  position: relative;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-header::after {
  content: "";
  width: 84px;
  height: 3px;
  justify-self: start;
  align-self: end;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-header--center {
  text-align: left;
}

.section-header h2,
.contact-banner h2,
.editorial-block h2 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-header h2 {
  font-size: clamp(2.6rem, 4.4vw, 4rem);
}

.section-note {
  width: fit-content;
  margin: 34px auto 0;
  padding: 13px 22px;
  border: 1px solid rgba(154, 120, 53, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 34px rgba(19, 32, 22, 0.06);
}

.issue-grid,
.principle-grid {
  gap: 22px;
  align-items: start;
}

.issue-card,
.principle-card,
.editorial-block,
.fact-card,
.media-card,
.project-card,
.contact-card,
.contact-note,
.site-footer {
  border: 1px solid rgba(31, 57, 35, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(250, 248, 239, 0.94));
  box-shadow: 0 18px 44px rgba(19, 32, 22, 0.07);
}

.issue-card,
.principle-card {
  padding: 26px;
  border-radius: 6px 18px 6px 18px;
}

.issue-card:nth-child(2),
.principle-card:nth-child(2) {
  margin-top: 34px;
}

.issue-card:nth-child(3),
.principle-card:nth-child(3) {
  margin-top: 68px;
}

.issue-card::before,
.principle-card::before,
.contact-card::before,
.media-card::before {
  left: 26px;
  right: 26px;
  top: 20px;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(154, 120, 53, 0.78), rgba(154, 120, 53, 0));
}

.issue-card__visual {
  height: 214px;
  margin: 12px 0 22px;
  border: 0;
  border-radius: 4px 14px 4px 14px;
  background: #e8ece0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.issue-card__visual img,
.project-card__visual img,
.editorial-block__visual img,
.media-card__frame img {
  filter: saturate(0.92) contrast(1.02);
}

.issue-card__tag,
.principle-card__tag {
  padding: 0;
  margin: 0 0 12px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.service-card h3,
.issue-card h3,
.reason-card h3,
.project-card h3,
.flow-step h3,
.faq-item h3,
.principle-card h3 {
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-page {
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 57, 35, 0.14);
  border-radius: 6px 26px 6px 26px;
  background: #fffdf7;
  box-shadow: 0 28px 74px rgba(19, 32, 22, 0.1);
}

.hero-page__copy {
  align-content: center;
  padding: 48px 0 48px 48px;
}

.hero-page h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-page h1 span {
  color: var(--primary-deep);
}

.hero-page .hero-figure {
  min-height: 100%;
}

.hero-photo {
  height: 100%;
  min-height: 420px;
  border-radius: 0;
  box-shadow: none;
}

.editorial-split {
  gap: 24px;
}

.editorial-block {
  padding: 38px;
  border-radius: 18px 6px 18px 6px;
}

.editorial-block h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.editorial-block__visual {
  height: 245px;
  margin: 10px 0 24px;
  border: 0;
  border-radius: 4px 18px 4px 18px;
}

.fact-card {
  position: sticky;
  top: 104px;
  gap: 0;
  padding: 12px 30px;
  border-radius: 6px 18px 6px 18px;
}

.fact-card div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.fact-card div:last-child {
  border-bottom: 0;
}

.fact-card span,
.contact-card span {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.fact-card strong,
.contact-card strong,
.entry-card strong {
  font-size: 1.14rem;
}

.media-card {
  border-radius: 6px 22px 6px 22px;
}

.media-card--feature {
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 36px;
  padding: 30px;
}

.media-card__frame {
  border: 0;
  border-radius: 4px 16px 4px 16px;
}

.media-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  letter-spacing: -0.03em;
}

.featured-grid--full {
  gap: 26px;
}

.project-card {
  padding: 0;
  border-radius: 6px 24px 6px 24px;
}

.project-card:nth-child(2) {
  margin-top: 54px;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.project-card__visual {
  height: 310px;
  margin: 0 0 24px;
  border: 0;
  border-radius: 0;
}

.project-card__visual::after {
  background: linear-gradient(180deg, rgba(18, 40, 25, 0), rgba(18, 40, 25, 0.2));
}

.project-card__meta,
.project-card h3,
.project-card__summary,
.project-card__detail,
.project-card__footer {
  margin-left: 28px;
  margin-right: 28px;
}

.project-card h3 {
  margin-top: 0;
  font-size: 1.72rem;
}

.project-card__summary {
  font-size: 1.02rem;
}

.project-card__footer {
  padding-bottom: 28px;
}

.status-pill {
  border: 1px solid rgba(53, 105, 63, 0.2);
  background: rgba(233, 240, 223, 0.82);
}

.button {
  min-height: 46px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.button--secondary {
  background: transparent;
  border-color: rgba(53, 105, 63, 0.28);
  color: var(--primary-deep);
}

.button--secondary:hover {
  box-shadow: 0 12px 28px rgba(18, 40, 25, 0.1);
}

.contact-layout {
  gap: 24px;
}

.contact-card {
  padding: 34px;
  border-radius: 6px 22px 6px 22px;
}

.contact-card strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.contact-note {
  padding: 30px;
  border-radius: 22px 6px 22px 6px;
  background:
    linear-gradient(145deg, rgba(18, 40, 25, 0.96), rgba(38, 78, 46, 0.94));
  color: #fffdf7;
}

.contact-note .eyebrow,
.contact-note li {
  color: rgba(255, 253, 247, 0.86);
}

.bullet-list li::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(154, 120, 53, 0.16);
}

.site-footer {
  margin-top: 18px;
  margin-bottom: 56px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.74);
}

@media (max-width: 1040px) {
  .section-header {
    grid-template-columns: 1fr;
  }

  .section-header::after {
    justify-self: start;
  }

  .issue-card:nth-child(2),
  .principle-card:nth-child(2),
  .issue-card:nth-child(3),
  .principle-card:nth-child(3),
  .project-card:nth-child(2) {
    margin-top: 0;
  }

  .fact-card {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    background: #fbfaf4;
  }

  .site-header {
    min-height: 66px;
    background: rgba(248, 250, 242, 0.96);
  }

  .site-nav {
    gap: 0;
    background: rgba(255, 253, 247, 0.98);
  }

  .site-nav a {
    padding: 12px 10px;
  }

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

  h1,
  h2,
  h3,
  p,
  li,
  a,
  strong {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .eyebrow {
    white-space: nowrap;
  }

  .page-shell:not(.page-shell--home):not(.page-shell--products) {
    padding-top: 28px;
  }

  .hero-lp--home-photo,
  .hero-lp--product-photo {
    min-height: 500px;
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .hero-lp--home-photo::before,
  .hero-lp--product-photo::before {
    background:
      linear-gradient(180deg, rgba(8, 22, 13, 0.84) 0%, rgba(8, 22, 13, 0.64) 46%, rgba(8, 22, 13, 0.22) 100%),
      linear-gradient(90deg, rgba(8, 22, 13, 0.34), rgba(8, 22, 13, 0));
  }

  .hero-lp--home-photo::after,
  .hero-lp--product-photo::after {
    left: 16px;
    bottom: 28px;
    width: 140px;
  }

  .hero-lp--home-photo .hero-lp__copy,
  .hero-lp--product-photo .hero-lp__copy {
    width: var(--shell);
    max-width: var(--shell);
    padding-left: 18px;
  }

  .hero-lp--home-photo h1,
  .hero-lp--product-photo h1 {
    max-width: 100%;
    font-size: 2.08rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-title-line,
  .hero-title-accent {
    display: block;
  }

  .hero-lp--home-photo .copy-stack--lead,
  .hero-lp--product-photo .copy-stack--lead,
  .hero-lp--home-photo .lead,
  .hero-lp--product-photo .lead {
    max-width: 100%;
  }

  .hero-page {
    border-radius: 6px 18px 6px 18px;
  }

  .hero-page__copy {
    padding: 28px 24px 4px;
  }

  .hero-page h1 {
    font-size: 2.34rem;
  }

  .hero-photo {
    min-height: 260px;
  }

  .section,
  .section--spotlight {
    padding-top: 52px;
  }

  .section-header {
    margin-bottom: 24px;
    padding-bottom: 14px;
  }

  .section-header h2,
  .contact-banner h2,
  .editorial-block h2 {
    font-size: 2rem;
  }

  .section-note {
    width: 100%;
    text-align: center;
  }

  .issue-card,
  .principle-card,
  .editorial-block,
  .fact-card,
  .media-card,
  .contact-card,
  .contact-note {
    padding: 22px;
  }

  .issue-card__visual {
    height: 190px;
  }

  .editorial-block__visual {
    height: 190px;
  }

  .media-card--feature {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .media-card__body {
    width: 100%;
  }

  .project-card__visual {
    height: 220px;
  }

  .project-card__meta,
  .project-card h3,
  .project-card__summary,
  .project-card__detail,
  .project-card__footer {
    margin-left: 22px;
    margin-right: 22px;
  }

  .project-card h3 {
    font-size: 1.46rem;
  }

  .contact-card strong {
    font-size: 1.16rem;
  }

  .site-footer {
    border-radius: 18px;
  }
}

@keyframes ambientGradientShift {
  0% {
    background-position: 0% 0%, 0 0;
  }

  50% {
    background-position: 100% 42%, 48px 0;
  }

  100% {
    background-position: 0% 100%, 96px 0;
  }
}

@keyframes ambientGlowDrift {
  0% {
    opacity: 0.72;
    transform: translate3d(-1.2%, -0.8%, 0) scale(1);
  }

  50% {
    opacity: 0.94;
    transform: translate3d(1.6%, 1.2%, 0) scale(1.04);
  }

  100% {
    opacity: 0.78;
    transform: translate3d(0.6%, -1.4%, 0) scale(1.02);
  }
}

@keyframes headerLustre {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes heroBreath {
  0% {
    background-position: center center;
    background-size: 100% auto;
  }

  100% {
    background-position: center 42%;
    background-size: 106% auto;
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ruleDraw {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(82, 128, 76, 0.14), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(170, 126, 48, 0.11), transparent 26%),
    linear-gradient(120deg, #fbfaf4 0%, #f2f0e4 38%, #eef4e8 70%, #fbfaf4 100%),
    repeating-linear-gradient(90deg, rgba(18, 40, 25, 0.026) 0 1px, transparent 1px 96px);
  background-attachment: fixed;
  background-size: 160% 160%, 150% 150%, 220% 220%, 96px 96px;
  animation: ambientGradientShift 24s ease-in-out infinite alternate;
}

body::before {
  animation: ambientGlowDrift 18s ease-in-out infinite alternate;
}

.site-header {
  background:
    linear-gradient(100deg, rgba(246, 249, 238, 0.96), rgba(255, 253, 247, 0.92), rgba(230, 240, 220, 0.96), rgba(255, 253, 247, 0.92));
  background-size: 220% 100%;
  animation: headerLustre 18s ease-in-out infinite alternate;
}

.site-header::before,
.section-header::after,
.hero-lp--home-photo::after,
.hero-lp--product-photo::after {
  transform-origin: left;
  animation: ruleDraw 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.hero-lp--home-photo,
.hero-lp--product-photo {
  animation: heroBreath 22s ease-in-out infinite alternate;
}

.hero-lp--home-photo h1 .hero-title-line,
.hero-lp--home-photo h1 .hero-title-accent,
.hero-lp--product-photo h1 .hero-title-line,
.hero-lp--product-photo h1 .hero-title-accent,
.hero-page h1,
.section-header h2 {
  animation: titleRise 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line:nth-child(2) {
  animation-delay: 110ms;
}

.hero-title-accent {
  animation-delay: 220ms;
}

.hero-lp--home-photo .lead,
.hero-lp--product-photo .lead,
.hero-page .lead {
  animation: titleRise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 320ms;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity 880ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 880ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 880ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

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

.issue-card,
.principle-card,
.project-card,
.editorial-block,
.fact-card,
.media-card,
.contact-card,
.contact-note,
.button {
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.issue-card:hover,
.principle-card:hover,
.project-card:hover,
.editorial-block:hover,
.media-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 120, 53, 0.28);
  box-shadow: 0 26px 68px rgba(19, 32, 22, 0.12);
}

.issue-card__visual img,
.project-card__visual img,
.editorial-block__visual img,
.media-card__frame img {
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

.issue-card:hover .issue-card__visual img,
.project-card:hover .project-card__visual img,
.editorial-block:hover .editorial-block__visual img,
.media-card:hover .media-card__frame img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.04);
}

.media-card__frame--portrait img,
.media-card__frame--photo.media-card__frame--portrait img {
  transform: none;
}

.media-card:hover .media-card__frame--portrait img,
.media-card:hover .media-card__frame--photo.media-card__frame--portrait img {
  transform: scale(1.018);
}

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

.button--secondary:hover {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(234, 241, 224, 0.82));
}

.project-card::before,
.issue-card::before,
.principle-card::before,
.contact-card::before,
.media-card::before {
  transition: opacity 260ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover::before,
.issue-card:hover::before,
.principle-card:hover::before,
.contact-card:hover::before,
.media-card:hover::before {
  opacity: 1;
  transform: scaleX(1.04);
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 12% 6%, rgba(82, 128, 76, 0.1), transparent 32%),
      linear-gradient(180deg, #fbfaf4 0%, #f2f0e4 100%);
    animation-duration: 32s;
  }

  .hero-lp--home-photo,
  .hero-lp--product-photo {
    animation: none;
    background-size: cover;
  }

  .issue-card:hover,
  .principle-card:hover,
  .project-card:hover,
  .editorial-block:hover,
  .media-card:hover,
  .contact-card:hover,
  .button:hover {
    transform: none;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
