:root {
  --navy: #102a43;
  --navy-deep: #071c2f;
  --blue: #174f78;
  --orange: #d66b2c;
  --orange-dark: #b94f18;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #18242d;
  --muted: #60707b;
  --line: #d7dedf;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 60px rgb(16 42 67 / 12%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgb(255 253 248 / 90%);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(16 42 67 / 10%);
  box-shadow: 0 8px 24px rgb(16 42 67 / 7%);
}

.header-inner,
.footer-inner,
.footer-bottom,
.section-inner,
.hero-grid {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

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

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px 12px 3px 12px;
  color: var(--white);
  background: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.global-nav > a:not(.nav-contact) {
  position: relative;
}

.global-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 96px 0 90px;
  background:
    linear-gradient(90deg, rgb(16 42 67 / 4%) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgb(16 42 67 / 4%) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--cream);
}

.hero::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 580px;
  height: 580px;
  border: 1px solid rgb(214 107 44 / 25%);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  display: inline-block;
  width: 36px;
  height: 2px;
  margin: 0 12px 4px 0;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--orange-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #43535f;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange-dark);
  box-shadow: 0 12px 24px rgb(185 79 24 / 22%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9e3e0e;
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.text-link {
  color: var(--navy);
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-notes li::before {
  margin-right: 8px;
  color: var(--orange-dark);
  content: "●";
  font-size: 8px;
  vertical-align: 2px;
}

.hero-visual {
  position: relative;
  min-height: 490px;
}

.visual-label {
  position: absolute;
  top: 14px;
  right: 0;
  color: rgb(16 42 67 / 35%);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
}

.visual-card {
  position: absolute;
  box-shadow: var(--shadow);
}

.visual-card-main {
  top: 52px;
  right: 44px;
  width: min(390px, 88%);
  min-height: 360px;
  padding: 50px;
  border-radius: 4px 48px 4px 48px;
  color: var(--white);
  background: var(--navy);
  transform: rotate(2deg);
}

.visual-card-main::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 82%;
  height: 82%;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  content: "";
}

.visual-kicker {
  display: block;
  margin-bottom: 22px;
  color: #f0b28e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.visual-card-main strong {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.visual-lines {
  display: grid;
  gap: 11px;
  margin-top: 35px;
}

.visual-lines i {
  display: block;
  height: 5px;
  border-radius: 5px;
  background: rgb(255 255 255 / 22%);
}

.visual-lines i:nth-child(2) { width: 78%; }
.visual-lines i:nth-child(3) { width: 55%; }

.visual-card-sub {
  z-index: 2;
  bottom: 12px;
  left: 0;
  display: grid;
  width: 210px;
  min-height: 128px;
  align-content: center;
  padding: 24px;
  border: 1px solid rgb(16 42 67 / 10%);
  border-radius: 24px 4px 24px 4px;
  background: var(--white);
  transform: rotate(-3deg);
}

.visual-card-sub span {
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.visual-card-sub b {
  color: var(--navy);
}

.visual-orbit {
  position: absolute;
  top: 0;
  left: 10px;
  width: 420px;
  height: 420px;
  border: 1px dashed rgb(16 42 67 / 20%);
  border-radius: 50%;
}

.section-pad {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading h2,
.audience h2,
.strength-intro h2,
.flow h2,
.about h2,
.cta h2,
.contact-guide h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.section-heading > p,
.flow-sticky > p:last-child {
  margin: 0;
  color: var(--muted);
}

.audience {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

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

.audience-list article {
  display: grid;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 60px 1fr;
  gap: 18px;
}

.audience-list article > span {
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

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

.audience-list strong {
  color: var(--navy);
  font-size: 19px;
}

.services {
  background: #edf1f1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  border: 1px solid rgb(16 42 67 / 9%);
  border-radius: 4px var(--radius) 4px var(--radius);
  background: var(--paper);
}

.service-card-featured {
  color: var(--white);
  background: var(--navy);
  grid-column: span 2;
}

.service-number {
  display: block;
  margin-bottom: 48px;
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.service-card-featured .service-number {
  color: #f0b28e;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 22px;
}

.service-card-featured h3 {
  color: var(--white);
  font-size: 30px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card-featured p {
  max-width: 560px;
  color: rgb(255 255 255 / 76%);
}

.service-card .service-type {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #f0b28e;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-caution {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.strengths {
  color: var(--white);
  background: var(--navy-deep);
}

.section-label-light {
  color: #f0b28e;
}

.strength-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px 70px;
}

.strength-intro .section-label {
  grid-column: 1 / -1;
}

.strength-intro h2 {
  color: var(--white);
}

.strength-intro > p:last-child {
  align-self: end;
  margin: 0 0 8px;
  color: rgb(255 255 255 / 68%);
}

.strength-grid {
  display: grid;
  margin-top: 74px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  grid-template-columns: repeat(3, 1fr);
}

.strength-grid article {
  padding: 42px 38px 10px 0;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.strength-grid article + article {
  padding-left: 38px;
}

.strength-grid article:last-child {
  border-right: 0;
}

.strength-grid span {
  color: #f0b28e;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.strength-grid h3 {
  margin: 26px 0 12px;
  font-size: 23px;
}

.strength-grid p {
  margin: 0;
  color: rgb(255 255 255 / 65%);
  font-size: 14px;
}

.flow {
  background: var(--paper);
}

.flow-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.flow-sticky {
  align-self: start;
  position: sticky;
  top: 130px;
}

.flow-sticky > p:last-child {
  margin-top: 24px;
}

.flow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 80px 1fr;
  gap: 28px;
}

.flow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-list li > span {
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.flow-list h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

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

.works {
  background: var(--cream);
}

.support {
  background: #edf1f1;
}

.support-heading {
  margin-bottom: 46px;
}

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

.support-card {
  padding: 42px;
  border: 1px solid rgb(16 42 67 / 10%);
  border-radius: 4px 28px 4px 28px;
  background: var(--paper);
}

.support-card-included {
  color: var(--white);
  background: var(--navy);
}

.support-type {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.support-card-included .support-type {
  color: #f0b28e;
}

.support-card h3 {
  margin: 0 0 24px;
  color: var(--navy-deep);
  font-size: 28px;
}

.support-card-included h3 {
  color: var(--white);
}

.support-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgb(16 42 67 / 11%);
}

.support-card-included li {
  border-color: rgb(255 255 255 / 15%);
}

.support-card li::before {
  margin-right: 10px;
  color: var(--orange-dark);
  content: "✓";
  font-weight: 800;
}

.support-card-included li::before {
  color: #f0b28e;
}

.support-note {
  padding-top: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.support-card-included .support-note {
  color: rgb(255 255 255 / 66%);
}

.work-placeholder {
  display: grid;
  align-items: center;
  padding: 34px;
  border: 1px solid rgb(16 42 67 / 10%);
  border-radius: 4px 34px 4px 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
}

.work-preview {
  display: grid;
  min-height: 330px;
  align-content: center;
  padding: 50px;
  overflow: hidden;
  border-radius: 2px 24px 2px 24px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 8%), transparent 50%),
    var(--navy);
  gap: 18px;
}

.work-preview span {
  width: 54%;
  height: 45px;
  border-radius: 4px;
  background: var(--orange);
}

.work-preview i {
  width: 82%;
  height: 8px;
  border-radius: 8px;
  background: rgb(255 255 255 / 28%);
}

.work-preview i:nth-child(3) { width: 65%; }
.work-preview i:nth-child(4) { width: 45%; }

.work-label {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.work-placeholder h3 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.45;
}

.work-placeholder p:last-child {
  margin: 0;
  color: var(--muted);
}

.about {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}

.about-layout > div {
  max-width: 720px;
}

.about-layout > div > p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about-note,
.draft-notice,
.draft-policy-note {
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  background: var(--cream);
  font-size: 13px !important;
}

.about-link {
  display: inline-flex;
  margin-top: 28px;
}

.profile-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 260px;
  gap: 80px;
}

.profile-monogram {
  display: grid;
  width: 240px;
  height: 240px;
  place-content: center;
  border-radius: 4px 48px 4px 48px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(2deg);
}

.profile-monogram span {
  font-family: Georgia, serif;
  font-size: 72px;
  font-style: italic;
  line-height: 1;
}

.profile-monogram small {
  margin-top: 20px;
  color: #f0b28e;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.profile-intro {
  background: var(--paper);
}

.profile-intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.profile-name h2,
.profile-scope h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.profile-name dl {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.profile-name dl > div {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px 1fr;
  gap: 14px;
}

.profile-name dt {
  color: var(--muted);
  font-size: 13px;
}

.profile-name dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.profile-message {
  padding-top: 20px;
}

.profile-message p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
}

.profile-message .profile-lead {
  margin-bottom: 34px;
  color: var(--navy-deep);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.7;
}

.profile-values {
  color: var(--white);
  background: var(--navy-deep);
}

.profile-values .section-heading h2 {
  color: var(--white);
}

.profile-values .section-heading > p {
  color: rgb(255 255 255 / 66%);
}

.profile-value-grid {
  display: grid;
  border-top: 1px solid rgb(255 255 255 / 18%);
  grid-template-columns: repeat(3, 1fr);
}

.profile-value-grid article {
  padding: 42px 34px 12px 0;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.profile-value-grid article + article {
  padding-left: 34px;
}

.profile-value-grid article:last-child {
  border-right: 0;
}

.profile-value-grid span {
  color: #f0b28e;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.profile-value-grid h3 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.profile-value-grid p {
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 14px;
}

.profile-scope {
  background: var(--cream);
}

.profile-scope-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.profile-scope h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.4;
}

.profile-scope-grid > div:last-child p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.cta {
  padding: 100px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgb(214 107 44 / 24%), transparent 34%),
    var(--navy);
}

.cta-inner {
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p:not(.section-label) {
  margin: 22px 0 32px;
  color: rgb(255 255 255 / 72%);
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--white);
  background: #061522;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.brand-footer .brand-mark {
  color: var(--navy);
  background: var(--white);
}

.brand-footer .brand-copy small {
  color: rgb(255 255 255 / 52%);
}

.footer-inner > div > p {
  margin: 20px 0 0;
  color: rgb(255 255 255 / 56%);
  font-size: 14px;
}

.footer-inner nav {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px 36px;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 60px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 42%);
}

.page-hero {
  padding: 100px 0 88px;
  background:
    linear-gradient(90deg, rgb(16 42 67 / 4%) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgb(16 42 67 / 4%) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--cream);
}

.page-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.3;
}

.page-hero p:last-child {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.contact-guide h2 {
  font-size: 32px;
}

.contact-guide > p {
  color: var(--muted);
}

.contact-guide > ul {
  padding: 0;
  margin: 24px 0 34px;
  list-style: none;
}

.contact-guide > ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.contact-guide > ul li::before {
  margin-right: 10px;
  color: var(--orange-dark);
  content: "✓";
  font-weight: 800;
}

.draft-notice p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-form {
  padding: 44px;
  border: 1px solid rgb(16 42 67 / 10%);
  border-radius: 4px 28px 4px 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.field-row label {
  color: var(--navy);
  font-weight: 800;
}

.field-row label span {
  margin-left: 8px;
  color: var(--orange-dark);
  font-size: 11px;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #bfc9cd;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgb(23 79 120 / 14%);
}

.field-row textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 28px;
  font-size: 14px;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--navy);
}

.check-row a {
  color: var(--blue);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-widget {
  min-height: 65px;
  margin: 0 0 24px;
}

.form-status {
  display: none;
  padding: 14px;
  margin: 18px 0 0;
  border-radius: 8px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #154a34;
  background: #e8f5ee;
}

.form-status.is-warning {
  color: #6b300f;
  background: #fff0e6;
}

.form-status.is-error {
  color: #7a1d1d;
  background: #fdeaea;
}

.policy {
  background: var(--paper);
}

.policy-inner {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.draft-policy-note {
  margin: 0 0 60px;
  color: var(--muted);
}

.policy section {
  padding: 0 0 30px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.policy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 21px;
}

.policy p {
  margin: 0;
  color: var(--muted);
}

.policy-date {
  text-align: right;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 90;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    gap: 0;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease, padding 220ms ease;
  }

  .global-nav.is-open {
    max-height: calc(100vh - 80px);
    padding-top: 16px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
  }

  .global-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-contact {
    margin-top: 14px;
    border-bottom: 0 !important;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .audience-grid,
  .flow-layout,
  .contact-layout,
  .profile-intro-grid,
  .profile-scope-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .profile-value-grid {
    grid-template-columns: 1fr;
  }

  .profile-value-grid article,
  .profile-value-grid article + article {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .flow-sticky {
    position: static;
  }

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

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

  .service-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .footer-inner,
  .footer-bottom,
  .section-inner,
  .hero-grid,
  .policy-inner {
    width: min(calc(100% - 32px), var(--max));
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .global-nav {
    top: 70px;
  }

  .section-pad {
    padding: 76px 0;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.2vw, 56px);
  }

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

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

  .text-link {
    text-align: center;
  }

  .hero-notes {
    display: grid;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-card-main {
    top: 30px;
    right: 18px;
    width: 88%;
    min-height: 290px;
    padding: 36px 30px;
  }

  .visual-card-sub {
    width: 180px;
    min-height: 105px;
  }

  .visual-orbit {
    width: 320px;
    height: 320px;
  }

  .section-heading,
  .strength-intro,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .audience-grid {
    gap: 36px;
  }

  .audience-list article {
    grid-template-columns: 44px 1fr;
  }

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

  .support-card {
    padding: 30px 24px;
  }

  .service-card-featured {
    grid-column: auto;
  }

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

  .service-number {
    margin-bottom: 32px;
  }

  .service-caution {
    text-align: left;
  }

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

  .strength-grid article,
  .strength-grid article + article {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .flow-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .work-placeholder {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-preview {
    min-height: 230px;
    padding: 32px;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-inner nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 6px;
  }

  .page-hero {
    padding: 72px 0 64px;
  }

  .profile-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .profile-monogram {
    width: 180px;
    height: 180px;
  }

  .profile-monogram span {
    font-size: 54px;
  }

  .contact-form {
    padding: 26px 20px;
  }
}

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

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