:root {
  --navy: #071427;
  --deep-navy: #020b18;
  --midnight-blue: #0d1b2f;
  --gold: #c9a646;
  --light-gold: #e7c766;
  --ivory: #f8f5ef;
  --paper: #fffdf8;
  --champagne: #e9d7b5;
  --greige: #d8cec2;
  --text-dark: #172033;
  --text-light: #ffffff;
  --muted: #606c7b;
  --blue: #6688b0;
  --green: #659473;
  --shadow: 0 18px 40px rgba(7, 20, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--ivory);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.78;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(22px, 4.2vw, 58px);
  color: #fff;
  background: rgba(2, 11, 24, 0.96);
  border-bottom: 1px solid rgba(201, 166, 70, 0.34);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  line-height: 1;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  inset: 3px 6px;
  content: "";
  border: 2px solid var(--gold);
  border-top: 0;
  transform: skewX(-18deg);
}

.brand-mark::after {
  inset: 3px 12px 3px 0;
  opacity: 0.58;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.global-nav a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: var(--light-gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 2px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button.primary {
  color: #111827;
  background: linear-gradient(135deg, #f3dc8b 0%, var(--gold) 58%, #ae8527 100%);
  box-shadow: 0 10px 22px rgba(201, 166, 70, 0.24);
}

.header-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 166, 70, 0.32);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(201, 166, 70, 0.82);
  background: rgba(2, 11, 24, 0.16);
}

.button.secondary:hover {
  background: rgba(201, 166, 70, 0.13);
}

.button.large {
  min-width: min(100%, 360px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 7px auto;
  background: #fff;
}

.section-inner,
.hero-inner,
.footer-inner {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: 86px 0;
}

.section-dark {
  position: relative;
  color: var(--text-light);
  background:
    radial-gradient(circle at 76% 16%, rgba(228, 200, 106, 0.14), transparent 28%),
    linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 54%, #0b1f3a 100%);
  overflow: hidden;
}

.section-light {
  background:
    linear-gradient(90deg, rgba(201, 166, 70, 0.08), transparent 24%, transparent 76%, rgba(201, 166, 70, 0.08)),
    var(--ivory);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    radial-gradient(circle, rgba(231, 199, 102, 0.95) 0 2px, transparent 2.6px),
    linear-gradient(38deg, transparent 0 31%, rgba(201, 166, 70, 0.22) 31.2% 31.45%, transparent 31.7%),
    linear-gradient(148deg, transparent 0 43%, rgba(201, 166, 70, 0.2) 43.2% 43.45%, transparent 43.7%);
  background-size: 230px 210px, 700px 520px, 600px 480px;
}

.hero-glow {
  position: absolute;
  right: -12%;
  top: 76px;
  width: 58vw;
  height: 650px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.hero {
  min-height: 720px;
  padding: 126px 0 0;
}

.page-hero {
  min-height: 560px;
  padding: 150px 0 88px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 70px;
  align-items: center;
}

.page-hero-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background: rgba(2, 11, 24, 0.58);
  border: 1px solid rgba(201, 166, 70, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.page-hero-panel .line-svg {
  grid-column: 1 / -1;
  justify-self: center;
  width: 82px;
  height: 82px;
  color: var(--gold);
}

.page-hero-panel p {
  margin: 0;
  color: var(--light-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  text-align: center;
}

.page-hero-panel span {
  width: 32px;
  height: 1px;
  background: rgba(201, 166, 70, 0.74);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 0.86fr);
  gap: 54px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0 74px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--light-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.navy {
  color: var(--gold);
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(43px, 5vw, 70px);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

h1 span {
  color: var(--light-gold);
}

h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 15px 0 0;
}

.lead {
  max-width: 650px;
  font-size: 17px;
}

.support {
  color: var(--light-gold);
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics span {
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(201, 166, 70, 0.36);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
}

.hero-portrait-wrap {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 950 / 698;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 166, 70, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.hero-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 20, 39, 0.48) 0%, rgba(7, 20, 39, 0.12) 34%, transparent 64%),
    linear-gradient(0deg, rgba(2, 11, 24, 0.22), transparent 42%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.04);
}

.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--text-dark);
  text-align: right;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9);
}

.hero-name {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 2px;
  color: var(--text-dark);
  text-align: right;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9);
}

.signature {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-style: italic;
  line-height: 1;
}

.floating-note {
  position: absolute;
  right: -60px;
  bottom: 122px;
  z-index: 3;
  width: 250px;
  padding: 22px 24px;
  color: #fff;
  background: rgba(2, 11, 24, 0.76);
  border: 1px solid rgba(201, 166, 70, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  font-family: "Noto Serif JP", serif;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.wide-gap {
  gap: 72px;
}

.large,
.section-lead {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.58;
}

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

.concern-grid span {
  position: relative;
  min-height: 76px;
  padding: 18px 20px 18px 52px;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(201, 166, 70, 0.46);
  box-shadow: 0 12px 28px rgba(7, 20, 39, 0.06);
  font-weight: 800;
}

.concern-grid span::before {
  position: absolute;
  left: 20px;
  color: var(--gold);
  content: "●";
  font-size: 13px;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

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

.card-grid > .reveal {
  min-width: 0;
}

.navy-card {
  height: 100%;
  min-height: 245px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 27, 47, 0.96), rgba(2, 11, 24, 0.96)),
    var(--navy);
  border: 1px solid rgba(201, 166, 70, 0.4);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.glass-card {
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.navy-card h3 {
  color: var(--light-gold);
}

.navy-card p {
  color: rgba(255, 255, 255, 0.86);
}

.icon-line {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 50%, rgba(231, 199, 102, 0.13), transparent 62%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 166, 70, 0.32);
  line-height: 1;
}

.line-svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 6px 14px rgba(201, 166, 70, 0.16));
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.service-card {
  height: 100%;
  min-height: 398px;
  padding: 32px 30px 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 166, 70, 0.36);
  box-shadow: 0 16px 36px rgba(7, 20, 39, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(7, 20, 39, 0.16);
}

.service-card h3 {
  margin-top: 8px;
  font-size: 40px;
}

.service-card.protect h3,
.service-card.protect .service-icon {
  color: var(--blue);
}

.service-card.grow h3,
.service-card.grow .service-icon {
  color: var(--gold);
}

.service-card.utilize h3,
.service-card.utilize .service-icon {
  color: var(--green);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 70px;
  margin-bottom: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: 1;
}

.service-icon .line-svg {
  width: 66px;
  height: 66px;
  filter: drop-shadow(0 8px 14px rgba(7, 20, 39, 0.08));
}

.service-card.protect .service-icon {
  color: #6d8caf;
}

.service-card.grow .service-icon {
  color: #c8a247;
}

.service-card.utilize .service-icon {
  color: #6f9878;
}

.subtitle {
  margin-top: 0;
  font-weight: 800;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tags span {
  padding: 5px 11px;
  color: var(--midnight-blue);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--champagne);
  font-size: 13px;
}

.section-button {
  margin-top: 34px;
}

.psychology,
.movie,
.faq {
  background: var(--paper);
}

.insight-panel {
  display: grid;
  gap: 10px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 27, 47, 0.98), rgba(2, 11, 24, 0.98)),
    var(--navy);
  border: 1px solid rgba(201, 166, 70, 0.42);
  box-shadow: var(--shadow);
}

.insight-panel div {
  padding: 16px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 166, 70, 0.28);
  font-weight: 800;
}

.insight-panel span {
  width: 1px;
  height: 22px;
  margin: 0 auto;
  background: var(--gold);
}

.notice {
  margin-top: 26px;
  padding: 22px;
  background: #f1e7d8;
  border: 1px solid var(--champagne);
}

.notice.compact {
  font-size: 14px;
}

.gold-box {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(201, 166, 70, 0.54);
  box-shadow: var(--shadow);
}

.gold-box p:first-child {
  margin-top: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
}

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

.animal-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px 20px;
  margin-top: 42px;
}

.animal-card {
  display: grid;
  min-height: 152px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 8px 6px 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.animal-svg {
  width: 112px;
  height: 94px;
  color: var(--gold);
  overflow: visible;
  filter: drop-shadow(0 8px 14px rgba(201, 166, 70, 0.09));
}

.animal-card span {
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
}

.viewpoint-card {
  height: 100%;
  min-height: 250px;
  padding: 24px 20px;
  background: var(--ivory);
  border: 1px solid rgba(201, 166, 70, 0.34);
  box-shadow: 0 14px 30px rgba(7, 20, 39, 0.08);
}

.viewpoint-card .line-svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

.viewpoint-card h3 {
  margin-top: 16px;
  color: var(--navy);
  font-size: 21px;
}

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

.section-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
}

.bubble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.bubble {
  height: 100%;
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--champagne);
  box-shadow: 0 14px 30px rgba(7, 20, 39, 0.08);
  font-weight: 700;
}

.training-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(201, 166, 70, 0.18), rgba(201, 166, 70, 0.58), rgba(201, 166, 70, 0.18));
  box-shadow: 0 24px 60px rgba(7, 20, 39, 0.12);
}

.dialogue-card {
  position: relative;
  height: 100%;
  min-height: 230px;
  padding: 30px 24px 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 27, 47, 0.96), rgba(2, 11, 24, 0.98)),
    var(--navy);
  overflow: hidden;
}

.dialogue-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(201, 166, 70, 0.2);
  border-radius: 50%;
}

.dialogue-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--light-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
}

.dialogue-card h3 {
  color: #fff;
  font-size: 23px;
}

.dialogue-card p {
  color: rgba(255, 255, 255, 0.78);
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.policy-card {
  height: 100%;
  padding: 24px;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  box-shadow: 0 14px 30px rgba(7, 20, 39, 0.07);
}

.policy-card h3 {
  color: var(--navy);
  font-size: 21px;
}

.process-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

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

.policy-wrap {
  margin-top: 42px;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.policy-list span {
  padding: 15px 12px;
  color: var(--navy);
  background: var(--ivory);
  border-top: 2px solid var(--gold);
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 20, 39, 0.06);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 128px;
  padding: 18px 12px;
  background: #fff;
  border-bottom: 2px solid var(--champagne);
  box-shadow: 0 12px 26px rgba(7, 20, 39, 0.06);
  text-align: center;
  font-weight: 800;
}

.flow-list span {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 11, 24, 0.88), rgba(13, 27, 47, 0.92)),
    var(--deep-navy);
  border: 1px solid rgba(201, 166, 70, 0.44);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.movie-actions {
  margin-top: 26px;
}

.message-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 56px;
  align-items: center;
}

.message-stack {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  grid-template-areas:
    "photo heading"
    "photo copy";
  column-gap: 56px;
  row-gap: 28px;
  align-items: center;
}

.message-photo-wrap {
  grid-area: photo;
}

.message-copy {
  grid-area: copy;
}

.message-heading {
  grid-area: heading;
  max-width: 760px;
}

.message-layout {
  gap: 36px;
}

.message-photo {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--champagne);
  box-shadow: var(--shadow);
}

.message-photo img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 30% center;
}

.message-copy {
  position: relative;
}

.message-copy::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  width: 210px;
  height: 150px;
  content: "";
  opacity: 0.28;
  background:
    radial-gradient(circle at 50% 35%, transparent 0 32%, var(--champagne) 32.4% 33%, transparent 33.4%),
    linear-gradient(35deg, transparent 49%, var(--gold) 49.2% 49.6%, transparent 49.8%);
}

.representative {
  margin-top: 28px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 36px auto 0;
}

details {
  background: var(--ivory);
  border: 1px solid var(--champagne);
}

summary {
  position: relative;
  padding: 19px 56px 19px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--gold);
  content: "+";
  transform: translateY(-50%);
  font-size: 25px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-height: 260px;
}

.contact-inner .button {
  margin-top: 28px;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 54px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--champagne);
}

dt {
  color: var(--gold);
  font-weight: 800;
}

dd {
  margin: 0;
}

.footer {
  padding: 40px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep-navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
}

.fixed-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #111827;
  background: linear-gradient(135deg, #f3dc8b, var(--gold));
  box-shadow: 0 14px 30px rgba(2, 11, 24, 0.28);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .global-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    padding: 22px;
    background: rgba(2, 11, 24, 0.98);
    border: 1px solid rgba(201, 166, 70, 0.35);
  }

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

  .menu-button {
    display: block;
  }

  .hero-inner,
  .split,
  .page-hero-inner,
  .message-layout,
  .message-stack,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .message-stack {
    grid-template-areas:
      "heading"
      "photo"
      "copy";
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-copy {
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
  }

  .hero-portrait-wrap {
    width: min(100%, 560px);
  }

  .floating-note {
    right: 18px;
    bottom: 112px;
  }

  .card-grid.three,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .policy-list,
  .flow-list,
  .viewpoint-grid,
  .animal-grid,
  .personality-bubbles,
  .training-panel,
  .policy-card-grid,
  .service-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero-panel {
    max-width: 520px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .brand {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand {
    font-size: 15px;
  }

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

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .global-nav {
    top: 68px;
  }

  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 40px, 1180px);
  }

  section:not(.hero) {
    padding: 64px 0;
  }

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

  h1 {
    font-size: clamp(39px, 10vw, 52px);
  }

  .lead {
    font-size: 16px;
  }

  .button-row {
    display: grid;
  }

  .hero .button-row {
    grid-template-columns: 1fr;
  }

  .hero .button-row .secondary {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-photo {
    height: 100%;
    max-height: none;
  }

  .hero-photo img {
    object-position: center center;
  }

  .hero-name {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 70%;
    margin: 12px 0 0 auto;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  }

  .message-stack {
    row-gap: 24px;
  }

  .contact-inner .section-lead {
    margin-bottom: 14px;
  }

  .contact-inner .button {
    margin-top: 30px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
    margin-top: 0;
  }

  .concern-grid,
  .policy-list,
  .flow-list,
  .viewpoint-grid,
  .personality-bubbles,
  .training-panel,
  .policy-card-grid,
  .service-process {
    grid-template-columns: 1fr;
  }

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

  .animal-card {
    min-height: 136px;
    padding: 6px 4px 8px;
  }

  .animal-svg {
    width: 96px;
    height: 82px;
  }

  .page-hero {
    min-height: auto;
    padding: 112px 0 62px;
  }

  .page-hero-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px;
  }

  .page-hero-panel span {
    width: 1px;
    height: 24px;
    justify-self: center;
  }

  .service-card,
  .navy-card {
    min-height: auto;
    padding: 24px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .fixed-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
