:root {
  --navy: #002b55;
  --navy-deep: #001e3c;
  --navy-soft: #083c68;
  --gold: #c89a3a;
  --gold-deep: #a57923;
  --ink: #14243a;
  --muted: #68768a;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --shadow: 0 14px 34px rgba(14, 34, 60, .12);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
main,
section,
article,
div,
p,
h1,
h2,
h3,
a,
li {
  min-width: 0;
}
p,
h1,
h2,
h3,
a,
li {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 75px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 26px;
  color: #fff;
  background: rgba(0, 32, 64, .98);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(0, 30, 60, .96);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.static-header {
  position: sticky;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 310px;
  min-width: 0;
}
.brand > span:last-child { min-width: 0; }
.brand-mark {
  flex: 0 0 auto;
  width: 31px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  clip-path: polygon(50% 0, 100% 20%, 80% 100%, 50% 82%, 20% 100%, 0 20%);
  font-family: var(--serif);
  font-weight: 700;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .02em;
  line-height: 1.3;
  overflow-wrap: normal;
}
.brand small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255,255,255,.8);
  letter-spacing: .2em;
}
.global-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-family: var(--serif);
  font-size: 14px;
  min-width: 0;
}
.global-nav a {
  position: relative;
  padding: 27px 0;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .2s ease;
}
.global-nav a:hover::after,
.global-nav a.is-active::after { width: 44px; }
.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 168px;
  padding: 13px 20px;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  font-family: var(--serif);
  font-weight: 700;
  white-space: nowrap;
}
.menu-toggle { display: none; }

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 10px;
  filter: drop-shadow(0 12px 22px rgba(0, 24, 48, .22));
}
.floating-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.floating-cta a:last-child {
  background: rgba(0, 43, 85, .96);
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(520px, 55%) minmax(0, 45%);
  color: #fff;
  background:
    radial-gradient(circle at 28% 10%, rgba(25, 76, 120, .8), transparent 35%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 65%, #04213f);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 75px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,154,58,.7), transparent);
  animation: goldScan 5.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-copy {
  padding: clamp(54px, 5vw, 72px) clamp(34px, 5vw, 66px) 74px clamp(34px, 6vw, 76px);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.42;
  letter-spacing: .02em;
  overflow-wrap: normal;
}
.hero h1 span { color: var(--gold); }
.lead {
  max-width: 620px;
  margin: 24px 0 32px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2.05;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-buttons a {
  flex: 1 1 176px;
  min-width: min(100%, 176px);
  padding: 12px 20px;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
}
.hero-visual {
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(0,31,62,.25), rgba(0,31,62,.05)),
    linear-gradient(135deg, #5d574d, #e9edf2);
}
.hero-visual img { mix-blend-mode: normal; }

.metrics {
  max-width: 1080px;
  margin: -46px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 14px;
  padding: 0 24px;
}
.metric-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #697587;
  font-size: 13px;
  text-align: right;
}
.metric-card {
  min-height: 138px;
  padding: 24px 16px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(17, 45, 82, .09);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(15, 36, 65, .12);
}
.metric-icon {
  display: block;
  margin: 0 auto 7px;
  color: var(--gold);
  font-size: clamp(25px, 2.2vw, 30px);
  line-height: 1;
}
.metric-card p {
  margin: 0;
  color: #23354d;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
}
.metric-card strong {
  display: block;
  margin-top: 2px;
  color: #0e2746;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.1;
}
.metric-card small {
  margin-left: 4px;
  font-size: 14px;
}
.metric-card em {
  display: block;
  margin-top: 8px;
  color: #6c7684;
  font-style: normal;
  font-size: 12px;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 0 34px;
}
.section-title span {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
h2, h3 {
  font-family: var(--serif);
  line-height: 1.5;
}
.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: .08em;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.service-card {
  overflow: hidden;
  min-height: 100%;
  padding-bottom: 58px;
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid #e6ebf0;
  border-radius: 7px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,154,58,.7);
  box-shadow: var(--shadow);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.36), transparent 42%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}
.service-card:hover::after {
  transform: translateX(120%);
}
.service-card img {
  height: clamp(140px, 16vw, 176px);
  background: linear-gradient(135deg, #e9edf2, #f9fafc);
}
.round-icon {
  width: 58px;
  height: 58px;
  margin: -29px auto 14px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 3px solid #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
}
.service-card h3 {
  margin: 0 16px 12px;
  color: var(--navy);
  font-size: 20px;
}
.service-card p {
  margin: 0 auto;
  max-width: 20em;
  color: #4d5b6d;
  font-size: 14px;
  line-height: 2;
}
.service-card > a {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--navy);
  font-size: 26px;
}

.strength { padding-top: 74px; }
.strength-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 28px;
}
.strength-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 28px;
  border-left: 1px solid #d8cbb4;
  border-right: 1px solid #d8cbb4;
}
.line-icon {
  color: var(--navy);
  font-size: 52px;
  line-height: 1;
}
.strength-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
}
.strength-item p {
  margin: 0;
  color: #526174;
  font-size: 14px;
  line-height: 1.95;
}

.profile-group {
  max-width: 1080px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: minmax(380px, .94fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 0 24px 24px;
}
.profile-card,
.group-card {
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(15,36,65,.07);
}
.group-link {
  margin-top: 22px;
}
.profile-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 24px;
}
.profile-card img {
  height: 248px;
  border-radius: 6px;
  background: #edf1f5;
}
.profile-card h2 {
  margin: 4px 0 6px;
  color: var(--navy);
  font-size: 23px;
}
.profile-card h2 small {
  color: #526174;
  font-size: 14px;
}
.role {
  margin: 0 0 10px;
  font-size: 14px;
}
.profile-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #1f3048;
  font-size: 14px;
  line-height: 1.95;
}
.outline-button {
  display: inline-block;
  min-width: 210px;
  padding: 11px 18px;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: #6d4c12;
  font-family: var(--serif);
  font-size: 14px;
}
.group-card {
  padding: 28px 24px 30px;
  text-align: center;
}
.group-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.group-card > p {
  margin: 8px 0 24px;
  color: #566377;
  font-size: 14px;
}
.group-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}
.flow-box {
  min-height: 154px;
  padding: 18px 12px 14px;
  border: 1px solid #d9bb78;
  border-radius: 5px;
  background: #fffdf9;
}
.flow-box strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
}
.flow-box span {
  display: block;
  margin-top: 8px;
  color: #273950;
  font-weight: 700;
  font-size: 14px;
}
.flow-box small {
  display: block;
  min-height: 48px;
  color: #68768a;
  font-size: 12px;
  line-height: 1.75;
}
.flow-box b {
  display: block;
  margin-top: 10px;
  padding: 8px;
  color: #fff;
  background: var(--navy);
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 13px;
}
.flow-cross {
  display: none;
  color: var(--navy);
  font-size: 18px;
}

.cta-band {
  margin-top: 48px;
  padding: 48px 24px 56px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% -40%, rgba(20,86,135,.6), transparent 42%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.cta-band p {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: .14em;
}
.cta-buttons {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cta-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.cta-buttons span { font-size: 23px; }

.news-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 76px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
}

.contact-form-section {
  padding-top: 76px;
}
.contact-form {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15,36,65,.08);
}
.form-lead {
  grid-column: 1 / -1;
  padding: 0 0 6px;
}
.form-lead strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
}
.form-lead p {
  margin: 4px 0 0;
  color: #58677a;
  font-size: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label span {
  color: #24364e;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #f9fbfd;
  border: 1px solid #cfd9e4;
  border-radius: 4px;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.form-wide {
  grid-column: 1 / -1;
}
.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 52px;
  padding: 12px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: 0;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.breadcrumb {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 24px 0;
  color: #657386;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--navy);
  font-weight: 700;
}
.breadcrumb a::after {
  content: " / ";
  margin: 0 6px;
  color: #99a6b5;
}
.page-hero {
  max-width: 1080px;
  margin: 20px auto 0;
  padding: 76px 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,30,60,.94), rgba(0,43,85,.84)),
    url("images/hero-sake.jpg") center / cover;
  border-radius: 0;
}
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.45;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 28px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2;
}
.detail-section {
  padding-bottom: 80px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.detail-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15,36,65,.07);
}
.detail-grid h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}
.detail-grid p {
  margin: 0;
  color: #526174;
  font-size: 15px;
  line-height: 2;
}
.detail-grid a {
  display: inline-block;
  margin-top: 18px;
  color: #6d4c12;
  font-family: var(--serif);
  font-weight: 700;
}
.page-nav {
  max-width: 420px;
}
.news-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #dde4eb;
}
.news-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.news-heading a {
  min-width: 98px;
  padding: 7px 14px;
  text-align: center;
  border: 1px solid #8394aa;
  border-radius: 2px;
  color: #314862;
  font-size: 12px;
}
.news-list article {
  display: grid;
  grid-template-columns: 90px 76px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid #e9eef3;
}
.news-list time {
  color: #4f5d70;
  font-size: 13px;
}
.news-list span {
  padding: 4px 8px;
  text-align: center;
  background: #e8edf3;
  color: #3c4f66;
  font-size: 11px;
}
.news-list .gold { background: #e6d6b5; }
.news-list p,
.column-list p {
  margin: 0;
  color: #2a3d55;
  font-size: 14px;
  line-height: 1.8;
}
.column-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid #e9eef3;
}
.column-list img {
  width: 76px;
  height: 48px;
  background: #edf1f5;
}
.column-list time {
  display: block;
  color: #7a8593;
  font-size: 12px;
}

.site-footer {
  position: relative;
  color: #dbe7f3;
  background:
    radial-gradient(circle at 10% 0, rgba(27,96,145,.48), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) minmax(150px, .9fr) minmax(180px, 1fr) minmax(220px, 1.2fr);
  gap: 42px;
  padding: 58px 32px 46px;
}
.site-footer h2 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 15px;
}
.site-footer p,
.site-footer a {
  font-size: 13px;
  line-height: 1.9;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.footer-contact a {
  display: block;
  margin-bottom: 18px;
  padding: 15px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}
.copyright {
  margin: 0;
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.17);
  color: rgba(255,255,255,.72);
  font-family: var(--serif);
  font-size: 12px;
}
.to-top {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes goldScan {
  0%, 100% { opacity: .25; transform: scaleX(.25); }
  50% { opacity: .9; transform: scaleX(1); }
}

@media (max-width: 1180px) {
  body.is-menu-open { overflow: hidden; }
  .site-header {
    height: 66px;
    padding: 0 16px;
    gap: 14px;
  }
  .site-header.is-scrolled { height: 62px; }
  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 56px);
  }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 10px; }
  .menu-toggle {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 3px;
    background: transparent;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
  }
  .global-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    padding: 14px 22px 22px;
    background: rgba(0,30,60,.98);
    transform: translateY(-115%);
    transition: transform .25s ease;
  }
  .global-nav.is-open { transform: translateY(0); }
  .global-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    white-space: normal;
  }
  .global-nav a::after { display: none; }
  .header-cta { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 38%); }
  .metrics { margin-top: -28px; }
  .profile-group { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: minmax(170px, 220px) 1fr; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .floating-cta a {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .brand { max-width: calc(100% - 54px); }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
    padding: 52px 24px 44px;
  }
  .hero h1 {
    font-size: clamp(31px, 8.2vw, 40px);
    line-height: 1.42;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero-visual {
    position: absolute;
    inset: auto 0 0 0;
    min-height: 220px;
    opacity: .18;
    pointer-events: none;
  }
  .hero-buttons a { flex: 1 1 100%; }
  .metrics {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 22px 16px 0;
  }
  .metric-card { min-height: 132px; }
  .service-grid,
  .strength-row,
  .cta-buttons,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .page-nav {
    display: none;
  }
  .page-hero {
    margin-top: 14px;
    padding: 54px 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .service-card p { max-width: 24em; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card img {
    width: min(260px, 100%);
    max-width: 260px;
    height: 260px;
  }
  .group-flow { grid-template-columns: 1fr; }
  .flow-box { min-height: 0; }
  .flow-cross { display: none; }
  .news-section { gap: 40px; }
  .footer-inner { gap: 30px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .site-header { padding-inline: 12px; }
  .brand { gap: 9px; }
  .brand-mark {
    width: 27px;
    height: 32px;
  }
  .brand strong {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.35;
  }
  .brand small {
    max-width: 210px;
    letter-spacing: .08em;
  }
  .hero-copy { padding-inline: 18px; }
  .eyebrow {
    font-size: 13px;
    letter-spacing: .05em;
  }
  .lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .section {
    padding: 58px 18px 0;
  }
  .section-title {
    gap: 18px;
    margin-bottom: 28px;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .metrics { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card h3 { font-size: 19px; }
  .service-card p { font-size: 14px; }
  .strength {
    padding-top: 58px;
  }
  .strength-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px 18px;
  }
  .line-icon { font-size: 40px; }
  .profile-group {
    margin-top: 58px;
    padding-inline: 18px;
  }
  .profile-card,
  .group-card {
    padding: 22px 18px;
  }
  .group-card h2,
  .profile-card h2 {
    font-size: 22px;
  }
  .flow-box {
    padding: 18px 14px;
  }
  .cta-band {
    padding: 40px 18px 48px;
  }
  .cta-band p {
    font-size: 21px;
  }
  .news-section {
    grid-template-columns: 1fr;
    padding: 58px 18px 64px;
  }
  .news-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .news-list span {
    width: fit-content;
    min-width: 64px;
  }
  .news-heading a { min-width: 78px; }
  .cta-band p { letter-spacing: .08em; }
  .cta-buttons a {
    min-height: 54px;
    padding: 10px 14px;
    font-size: 15px;
  }
  .column-list article {
    grid-template-columns: 72px 1fr;
  }
  .footer-links { grid-template-columns: 1fr; }
  .footer-inner {
    padding: 46px 22px 36px;
  }
  .floating-cta {
    gap: 8px;
  }
  .floating-cta a {
    padding: 10px 8px;
    font-size: 12px;
  }
  .copyright { padding-inline: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
