:root {
  color-scheme: light;
  --navy: #06254d;
  --navy-soft: #153d69;
  --gold: #b58d3c;
  --gold-soft: #d5bd7a;
  --paper: #fffdf8;
  --off-white: #f8f3e9;
  --blue-tint: #eef3f6;
  --ink: #232b34;
  --muted: #66717d;
  --line: #e6ddcc;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(6, 37, 77, 0.11);
  --radius: 8px;
  --font-sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-accent: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

textarea {
  resize: vertical;
}

::selection {
  background: rgba(181, 141, 60, 0.24);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.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;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(181, 141, 60, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: 1.03rem;
  font-weight: 800;
  font-variant-caps: small-caps;
  line-height: 1.1;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 37, 77, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 96px 0;
}

.muted-section {
  background: var(--off-white);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading.flush {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.02rem;
  font-weight: 800;
  font-variant-caps: small-caps;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 700;
}

h1 {
  max-width: 920px;
  margin: 0 auto 16px;
  font-size: 3.75rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  font-weight: 800;
}

p {
  color: var(--muted);
  font-weight: 500;
}

.section-heading p,
.hero-copy,
.coordination p,
.contact-copy p {
  font-size: 1.08rem;
}

.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("iprg-hero.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.image-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 253, 248, 0.84);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--gold);
  opacity: 0.8;
}

.hero-content {
  padding: 72px 0 76px;
  text-align: center;
}

.hero-subtitle {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto 24px;
  color: #44505c;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 780ms ease,
    transform 780ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.js-ready .hero .reveal {
  transform: translateY(16px);
}

.button svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #0b315d;
  border-color: var(--gold);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.74);
  color: var(--navy);
  border-color: rgba(181, 141, 60, 0.48);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  border-color: var(--gold);
}

.trust-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

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

.trust-card,
.service-card,
.process-step,
.support-list article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 37, 77, 0.06);
}

.trust-card {
  position: relative;
  padding: 32px;
}

.trust-card::before,
.service-card::before,
.process-step::before,
.support-list article::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: var(--gold);
}

.trust-card,
.service-card,
.process-step,
.support-list article {
  position: relative;
  overflow: hidden;
}

.card-mark {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  margin-bottom: 22px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
}

.card-mark::before,
.card-mark::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.card-mark::before {
  left: 8px;
  right: 8px;
  top: 14px;
  height: 2px;
}

.card-mark::after {
  top: 8px;
  bottom: 8px;
  left: 14px;
  width: 2px;
}

.trust-card p,
.service-card p,
.process-step p,
.support-list p {
  margin-bottom: 0;
}

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

.service-card {
  min-height: 250px;
  padding: 28px 24px 24px;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(181, 141, 60, 0.42);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(181, 141, 60, 0.08);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coordination-layout,
.support-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 56px;
  align-items: center;
}

.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

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

.process-step {
  min-height: 295px;
  padding: 34px 28px 30px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border: 1px solid rgba(181, 141, 60, 0.5);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(181, 141, 60, 0.11);
  font-weight: 800;
}

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

.support-list article {
  min-height: 178px;
  padding: 28px 24px 24px;
}

.notice {
  background: var(--blue-tint);
}

.notice-inner {
  position: relative;
  padding: 52px 56px;
  border: 1px solid rgba(6, 37, 77, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.notice-inner::before {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  top: 0;
  height: 4px;
  background: var(--gold);
}

.notice h2 {
  margin-bottom: 18px;
}

.notice p:last-child {
  max-width: 1020px;
  margin-bottom: 0;
  color: #3b4651;
}

.contact-layout {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-email {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid rgba(181, 141, 60, 0.5);
}

.contact-form {
  padding: 32px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label span:first-child {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  min-height: 48px;
  border: 1px solid #d8cebc;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder {
  color: rgba(14, 35, 66, 0.34);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(181, 141, 60, 0.17);
}

.checkbox-label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy);
}

.checkbox-label span {
  margin: 0;
}

.form-button {
  width: 100%;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(260px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 260px;
  margin-bottom: 22px;
}

.footer-title {
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer p {
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--navy);
  font-weight: 800;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-disclaimer {
  color: #4e5a66;
}

:focus-visible {
  outline: 3px solid rgba(181, 141, 60, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 14px;
    font-size: 0.96rem;
  }

  .brand {
    width: 166px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 82px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    min-height: 0;
    background-position: center;
  }

  .hero-content {
    padding: 58px 0 62px;
  }

  .trust-grid,
  .process-grid,
  .coordination-layout,
  .support-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.flush {
    margin-bottom: 34px;
  }

  .contact-copy {
    position: static;
  }

  .footer-layout {
    gap: 26px;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: calc(100% - 32px);
    max-width: 1120px;
  }

  .section {
    padding: 72px 0;
  }

  .brand {
    width: 150px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero {
    min-height: 0;
    background-position: center top;
  }

  .hero-content {
    padding: 48px 0 54px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-heading p,
  .hero-copy,
  .coordination p,
  .contact-copy p {
    font-size: 1rem;
  }

  .trust-card,
  .process-step,
  .contact-form,
  .notice-inner {
    padding: 28px 22px;
  }

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

  .service-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .notice-inner::before {
    left: 22px;
    right: 22px;
  }

  .footer-logo {
    width: 230px;
  }
}

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

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
