
:root {
  --ihrm-navy: #061B4E;
  --ihrm-deep: #020B22;
  --ihrm-blue: #003A8C;
  --ihrm-royal: #0B4FA3;
  --ihrm-crimson: #E3343A;
  --ihrm-red-dark: #B91C2B;
  --ihrm-gold: #D7A84B;
  --ihrm-sky: #EAF4FF;
  --ihrm-soft-blue: #F5F9FF;
  --ihrm-ink: #101828;
  --ihrm-muted: #667085;
  --ihrm-border: #D9E2F2;
  --ihrm-white: #FFFFFF;
  --shadow-soft: 0 18px 50px rgba(3, 16, 54, .13);
  --shadow-deep: 0 32px 90px rgba(2, 11, 34, .38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ihrm-ink);
  background: var(--ihrm-white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
input, select, textarea { width: 100%; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--ihrm-crimson);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; outline: 3px solid white; }
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ihrm-crimson), var(--ihrm-gold));
  z-index: 9999;
}
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(920px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: #010718;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: white; }
.topbar a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ihrm-crimson);
  box-shadow: 0 0 0 4px rgba(227, 52, 58, .16);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(217,226,242,.78);
  box-shadow: 0 12px 40px rgba(2,11,34,.06);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--ihrm-navy);
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(2, 11, 34, .15));
}
.brand span { max-width: 230px; line-height: 1.1; }
.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 12px 10px;
  color: #344054;
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--ihrm-navy); background: var(--ihrm-soft-blue); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--ihrm-crimson);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-red-dark));
  box-shadow: 0 18px 36px rgba(227, 52, 58, .25);
}
.btn-primary:hover { box-shadow: 0 22px 45px rgba(227, 52, 58, .34); }
.btn-secondary {
  color: var(--ihrm-navy);
  background: white;
  border-color: var(--ihrm-border);
  box-shadow: 0 14px 34px rgba(2, 11, 34, .08);
}
.btn-secondary:hover { border-color: rgba(11, 79, 163, .35); }
.btn-ghost { color: white; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-light { color: var(--ihrm-navy); background: white; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ihrm-border);
  border-radius: 14px;
  background: white;
  padding: 0;
  position: relative;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ihrm-navy);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.menu-toggle span { top: 22px; }
.menu-toggle::before { top: 15px; }
.menu-toggle::after { top: 29px; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }
.breadcrumb {
  background: linear-gradient(90deg, rgba(234,244,255,.84), rgba(255,255,255,.92));
  border-bottom: 1px solid var(--ihrm-border);
  font-size: 14px;
}
.breadcrumb .container { min-height: 44px; display: flex; align-items: center; gap: 9px; color: var(--ihrm-muted); }
.breadcrumb a { color: var(--ihrm-navy); font-weight: 800; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 12%, rgba(227,52,58,.24), transparent 31%),
    radial-gradient(circle at 85% 18%, rgba(11,79,163,.44), transparent 32%),
    linear-gradient(135deg, var(--ihrm-deep), var(--ihrm-navy) 54%, #071338);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 65% 30%, black, transparent 75%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 48px rgba(255,255,255,.022), inset 0 0 0 95px rgba(227,52,58,.025);
  z-index: -1;
}
.contact-hero { padding: 90px 0 80px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr); gap: 46px; align-items: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--ihrm-crimson);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #ffb8bb; }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 19px; margin: 20px 0 0; }
.hero .button-row { margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ihrm-gold);
}
.contact-card {
  position: relative;
  background: rgba(255,255,255,.96);
  color: var(--ihrm-ink);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ihrm-crimson), var(--ihrm-gold), var(--ihrm-royal));
}
.logo-orbit {
  width: 106px;
  height: 106px;
  padding: 10px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(2,11,34,.14);
  border: 1px solid var(--ihrm-border);
}
.contact-card h2 { margin: 20px 0 10px; color: var(--ihrm-navy); font-size: 24px; line-height: 1.15; }
.contact-card p { margin: 0; color: var(--ihrm-muted); }
.contact-stack { display: grid; gap: 12px; margin-top: 22px; }
.contact-chip {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--ihrm-soft-blue);
  border: 1px solid var(--ihrm-border);
  border-radius: 18px;
}
.contact-chip strong { display: block; color: var(--ihrm-navy); font-size: 14px; }
.contact-chip span, .contact-chip a { color: #344054; font-weight: 700; overflow-wrap: anywhere; }
.chip-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-royal));
  color: white;
  font-weight: 900;
}

.section { padding: 92px 0; }
.section-muted { background: linear-gradient(180deg, var(--ihrm-soft-blue), #fff); }
.section-dark {
  color: white;
  background:
    radial-gradient(circle at 12% 8%, rgba(227,52,58,.18), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(11,79,163,.28), transparent 34%),
    linear-gradient(135deg, var(--ihrm-deep), var(--ihrm-navy));
}
.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2,
.rich-text h2,
.office-panel h2,
.form-panel h2,
.notice-card h2 {
  margin: 0;
  color: var(--ihrm-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-dark .section-heading h2,
.section-dark h2 { color: white; }
.section-heading p { color: var(--ihrm-muted); font-size: 18px; margin: 16px 0 0; }
.section-dark .section-heading p { color: rgba(255,255,255,.75); }
.direct-answer {
  margin-top: -38px;
  position: relative;
  z-index: 3;
  padding-top: 0;
}
.answer-panel {
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ihrm-border);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.answer-panel h2 { margin: 0; color: var(--ihrm-navy); font-size: clamp(24px, 3vw, 38px); line-height: 1.1; letter-spacing: -.03em; }
.answer-panel p { margin: 10px 0 0; color: var(--ihrm-muted); }
.answer-mark {
  width: 92px;
  height: 92px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-gold));
  box-shadow: 0 18px 45px rgba(227,52,58,.22);
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.pathway-card {
  position: relative;
  min-height: 240px;
  border: 1px solid var(--ihrm-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: white;
  box-shadow: 0 18px 44px rgba(2,11,34,.08);
  overflow: hidden;
}
.pathway-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,52,58,.11), transparent 66%);
}
.pathway-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--ihrm-navy), var(--ihrm-royal));
  font-weight: 900;
}
.pathway-card h3 { margin: 18px 0 8px; color: var(--ihrm-navy); font-size: 21px; line-height: 1.2; }
.pathway-card p { margin: 0; color: var(--ihrm-muted); }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(360px, 1.24fr);
  gap: 28px;
  align-items: start;
}
.office-panel,
.form-panel,
.notice-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--ihrm-border);
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.office-panel { position: sticky; top: 118px; }
.panel-header {
  padding: 28px;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(215,168,75,.26), transparent 32%),
    linear-gradient(135deg, var(--ihrm-deep), var(--ihrm-navy));
}
.panel-header h2 { color: white; font-size: 34px; }
.panel-header p { margin: 12px 0 0; color: rgba(255,255,255,.74); }
.office-list { display: grid; gap: 14px; padding: 24px; }
.office-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 15px;
  border-radius: 18px;
  background: var(--ihrm-soft-blue);
  border: 1px solid var(--ihrm-border);
}
.office-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-red-dark));
}
.office-item strong { display: block; color: var(--ihrm-navy); }
.office-item p, .office-item a { margin: 3px 0 0; color: #344054; font-weight: 700; overflow-wrap: anywhere; }
.map-card {
  margin: 0 24px 24px;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid var(--ihrm-border);
  background:
    linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.86)),
    linear-gradient(90deg, rgba(11,79,163,.09) 1px, transparent 1px),
    linear-gradient(rgba(11,79,163,.09) 1px, transparent 1px),
    var(--ihrm-sky);
  background-size: auto, 28px 28px, 28px 28px, auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--ihrm-navy);
}
.map-pin {
  width: 64px;
  height: 64px;
  border-radius: 22px 22px 22px 5px;
  transform: rotate(-45deg);
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-gold));
  box-shadow: 0 20px 44px rgba(227,52,58,.22);
}
.map-pin span { transform: rotate(45deg); display: grid; place-items: center; height: 64px; color: white; font-weight: 900; font-size: 24px; }
.map-card p { margin: 0; color: var(--ihrm-muted); }
.form-panel { padding: 28px; }
.form-intro { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.form-intro p { color: var(--ihrm-muted); margin: 12px 0 0; }
.form-status {
  display: none;
  border-radius: 18px;
  padding: 14px 16px;
  margin: 0 0 18px;
  font-weight: 800;
}
.form-status.is-visible { display: block; }
.form-status.success { color: #0f5132; background: #d1e7dd; border: 1px solid #badbcc; }
.form-status.error { color: #842029; background: #f8d7da; border: 1px solid #f5c2c7; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group label { color: var(--ihrm-navy); font-weight: 900; font-size: 14px; }
.required { color: var(--ihrm-crimson); }
.form-group input,
.form-group select,
.form-group textarea {
  appearance: none;
  border: 1px solid var(--ihrm-border);
  background: #fff;
  color: var(--ihrm-ink);
  border-radius: 16px;
  min-height: 52px;
  padding: 13px 15px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(11,79,163,.55);
  box-shadow: 0 0 0 4px rgba(11,79,163,.11);
}
.form-group .field-error { color: var(--ihrm-red-dark); font-weight: 800; font-size: 13px; min-height: 18px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-box {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--ihrm-border);
  background: var(--ihrm-soft-blue);
  border-radius: 18px;
}
.consent-box input { width: 20px; height: 20px; margin-top: 4px; accent-color: var(--ihrm-crimson); }
.consent-box span { color: #344054; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.privacy-note { color: var(--ihrm-muted); font-size: 14px; margin: 0; }
.notice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.notice-card { padding: 24px; }
.notice-card h3 { margin: 0 0 10px; color: var(--ihrm-navy); font-size: 21px; }
.notice-card p { color: var(--ihrm-muted); margin: 0; }
.legal-note {
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.legal-note h2 { margin: 0 0 12px; color: white; font-size: clamp(28px, 3vw, 44px); }
.legal-note p { margin: 0; color: rgba(255,255,255,.76); }
.faq-list { display: grid; gap: 13px; }
.faq-item {
  border: 1px solid var(--ihrm-border);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(2,11,34,.06);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  color: var(--ihrm-navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ihrm-soft-blue);
  color: var(--ihrm-crimson);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 20px 20px; margin: 0; color: var(--ihrm-muted); }
.cta-panel {
  border-radius: var(--radius-xl);
  color: white;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(227,52,58,.25), transparent 30%),
    linear-gradient(135deg, var(--ihrm-deep), var(--ihrm-navy));
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.cta-panel h2 { margin: 0; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 50px); line-height: 1.05; }
.cta-panel p { margin: 14px 0 0; color: rgba(255,255,255,.78); }
.site-footer {
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 12% 18%, rgba(227,52,58,.18), transparent 28%),
    linear-gradient(135deg, #010718, var(--ihrm-deep));
  padding: 72px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.15fr .75fr .95fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: white; margin-bottom: 18px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; }
.footer-brand strong { display: block; max-width: 260px; font-size: 20px; line-height: 1.1; }
.site-footer h2, .site-footer h3 { color: white; margin: 0 0 15px; }
.site-footer p { margin: 0 0 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover, .site-footer a:hover { color: white; }
.footer-contact p { overflow-wrap: anywhere; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 42px;
  padding-top: 22px;
  font-size: 14px;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ihrm-crimson), var(--ihrm-red-dark));
  color: white;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(227,52,58,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 800;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .menu-toggle { display: inline-block; }
  .nav {
    position: fixed;
    top: 130px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    background: white;
    border: 1px solid var(--ihrm-border);
    border-radius: 24px;
    box-shadow: var(--shadow-deep);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 16px; }
  .hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .office-panel { position: static; }
  .pathway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .notice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .topbar .container { justify-content: center; flex-wrap: wrap; padding: 9px 0; }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; gap: 10px; }
  .brand img { width: 54px; height: 54px; }
  .brand span { font-size: 14px; max-width: 165px; }
  .nav { top: 118px; }
  .contact-hero { padding: 62px 0 66px; }
  .hero-grid { gap: 26px; }
  .hero h1 { font-size: clamp(38px, 13vw, 56px); }
  .hero p { font-size: 17px; }
  .section { padding: 64px 0; }
  .direct-answer { margin-top: -24px; }
  .answer-panel { grid-template-columns: 1fr; padding: 22px; }
  .answer-mark { width: 70px; height: 70px; border-radius: 24px; font-size: 26px; }
  .pathway-grid, .form-row { grid-template-columns: 1fr; }
  .pathway-card { min-height: auto; }
  .form-panel, .panel-header { padding: 22px; }
  .office-list { padding: 18px; }
  .map-card { margin: 0 18px 18px; }
  .form-intro { display: block; }
  .cta-panel { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .button-row, .form-actions { align-items: stretch; }
  .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
