@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap');
@import url('css/bootstrap.min.css');
@import url('css/font-awesome.min.css');

:root {
  --ink: #17302f;
  --ink-soft: #506563;
  --green-950: #082f2d;
  --green-900: #0b3d3a;
  --green-800: #12504b;
  --green-100: #dfece8;
  --green-050: #eff5f2;
  --cream: #f7f4ed;
  --sand: #e9e1d4;
  --copper: #b7623f;
  --white: #ffffff;
  --line: #dfe5e1;
  --shadow: 0 20px 55px rgba(17, 48, 46, 0.10);
  --shadow-soft: 0 12px 35px rgba(17, 48, 46, 0.07);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: .2s ease; }
a:hover { color: var(--copper); text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  margin-top: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.025em;
}
p { margin-top: 0; color: var(--ink-soft); }

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 92px 0; }
.section--soft { background: var(--green-050); }
.section--cream { background: var(--cream); }
.section--compact { padding: 64px 0; }
.section-heading { max-width: 680px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2 { font-size: clamp(2.15rem, 5vw, 3.45rem); margin-bottom: 16px; }
.section-heading p { font-size: 1.03rem; margin-bottom: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: currentColor; }
.eyebrow--light { color: #d8ece7; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--green-950); color: #e8f4f0; font-size: .78rem; }
.utility-bar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar__notice, .utility-bar__contact { display: flex; align-items: center; gap: 14px; }
.utility-bar a { color: #fff; font-weight: 700; }
.utility-bar a:hover { color: #ffd8c7; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #8bc6aa; box-shadow: 0 0 0 4px rgba(139,198,170,.12); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(223,229,225,.95); backdrop-filter: blur(14px); }
.site-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 270px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 50%; background: var(--green-050); display: grid; place-items: center; overflow: hidden; }
.brand__mark img { width: 46px; height: 46px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: 'Newsreader', Georgia, serif; font-size: 1.55rem; font-weight: 600; }
.brand__text small { margin-top: 3px; max-width: 250px; color: var(--ink-soft); font-size: .70rem; line-height: 1.25; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { position: relative; padding: 30px 0 28px; color: #334947; font-size: .82rem; font-weight: 800; }
.primary-nav a:not(.nav-contact)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--copper); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { right: 0; }
.primary-nav a.is-active { color: var(--green-950); }
.primary-nav .nav-contact { padding: 11px 17px; border-radius: 999px; background: var(--green-900); color: white; }
.primary-nav .nav-contact:hover, .primary-nav .nav-contact.is-active { background: var(--green-800); color: white; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--green-900); color: white; }
.btn--primary:hover { background: var(--green-800); color: white; box-shadow: 0 8px 24px rgba(11,61,58,.20); }
.btn--secondary { border-color: var(--line); background: white; color: var(--ink); }
.btn--secondary:hover { border-color: var(--green-900); color: var(--green-900); }
.btn--light { background: white; color: var(--green-950); }
.btn--light:hover { background: var(--cream); color: var(--green-950); }
.btn--outline-light { border-color: rgba(255,255,255,.42); color: white; background: transparent; }
.btn--outline-light:hover { background: white; color: var(--green-950); }
.btn--small { min-height: 40px; padding: 9px 15px; font-size: .78rem; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f6f3ec 0%, #eff5f2 100%); }
.hero::after { content: ''; position: absolute; right: -180px; top: -180px; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(11,61,58,.08); box-shadow: 0 0 0 60px rgba(11,61,58,.025), 0 0 0 120px rgba(11,61,58,.018); }
.hero__inner { min-height: 660px; display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; padding: 70px 0; position: relative; z-index: 1; }
.hero__copy { max-width: 660px; }
.hero h1 { font-size: clamp(3.2rem, 6.7vw, 5.7rem); margin-bottom: 24px; }
.hero h1 span { color: var(--green-800); }
.hero__lead { max-width: 620px; font-size: 1.08rem; line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(23,48,47,.12); }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; color: #405654; font-size: .82rem; font-weight: 700; }
.hero__trust i { color: var(--copper); }
.hero__visual { position: relative; min-height: 500px; }
.hero__image { position: absolute; inset: 0 0 52px 55px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,47,45,.34)); }
.hero__panel { position: absolute; left: 0; bottom: 0; width: min(360px, 88%); padding: 24px; border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
.hero__panel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.hero__panel strong { font-family: 'Newsreader', Georgia, serif; font-size: 1.35rem; }
.hero__panel-badge { padding: 6px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero__quicklinks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero__quicklinks a { padding: 12px; border: 1px solid var(--line); border-radius: 12px; font-size: .78rem; font-weight: 800; background: #fff; }
.hero__quicklinks a:hover { border-color: var(--green-800); color: var(--green-900); }

.info-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.info-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.info-strip__item { padding: 24px 28px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.info-strip__item:first-child { padding-left: 0; }
.info-strip__item:last-child { border-right: 0; }
.info-strip__icon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: var(--green-050); color: var(--green-900); display: grid; place-items: center; }
.info-strip__item strong { display: block; color: var(--ink); font-size: .9rem; }
.info-strip__item small { color: var(--ink-soft); font-size: .76rem; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #c8d7d2; box-shadow: var(--shadow-soft); }
.service-card__icon { width: 48px; height: 48px; margin-bottom: 40px; border-radius: 14px; background: var(--green-050); color: var(--green-900); display: grid; place-items: center; font-size: 1.15rem; }
.service-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.service-card p { margin-bottom: 20px; font-size: .9rem; }
.service-card a { font-size: .82rem; font-weight: 800; color: var(--green-900); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.split__image { position: relative; }
.split__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.split__image-note { position: absolute; right: -24px; bottom: -24px; max-width: 280px; padding: 22px; border-radius: 18px; color: white; background: var(--green-900); box-shadow: var(--shadow); }
.split__image-note strong { display: block; margin-bottom: 4px; font-family: 'Newsreader', Georgia, serif; font-size: 1.3rem; }
.split__image-note span { color: #dbeae5; font-size: .78rem; }
.split__copy h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); margin-bottom: 20px; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); color: #344c4a; font-size: .9rem; }
.check-list i { color: var(--copper); margin-top: 5px; }

.notice-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; }
.notice-list { display: grid; gap: 14px; }
.notice-item { display: grid; grid-template-columns: 118px 1fr auto; gap: 22px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.notice-item__type { color: var(--copper); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.notice-item h3 { margin: 3px 0 6px; font-size: 1.27rem; }
.notice-item p { margin: 0; font-size: .82rem; line-height: 1.55; }
.notice-item__arrow { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--green-900); }
.notice-item:hover { border-color: #c6d4d0; box-shadow: var(--shadow-soft); }
.notice-item:hover .notice-item__arrow { background: var(--green-900); color: white; border-color: var(--green-900); }
.office-card { height: 100%; padding: 30px; border-radius: var(--radius-md); background: var(--green-900); color: white; }
.office-card h3 { color: white; font-size: 2rem; margin-bottom: 16px; }
.office-card p, .office-card li { color: #d8e6e2; }
.office-card ul { padding: 0; margin: 26px 0 0; list-style: none; }
.office-card li { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: .85rem; }
.office-card i { margin-top: 5px; color: #ffd4c4; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-card { padding: 26px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); }
.resource-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 28px; }
.resource-card__tag { color: var(--copper); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.resource-card__icon { width: 38px; height: 38px; border-radius: 10px; background: var(--green-050); color: var(--green-900); display: grid; place-items: center; }
.resource-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.resource-card p { font-size: .86rem; }
.resource-card a { color: var(--green-900); font-size: .8rem; font-weight: 800; }

.page-hero { background: var(--cream); border-bottom: 1px solid var(--sand); }
.page-hero__inner { min-height: 330px; display: grid; grid-template-columns: 1fr .52fr; gap: 60px; align-items: end; padding: 72px 0 56px; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 15px; }
.page-hero p { max-width: 680px; margin-bottom: 0; font-size: 1rem; }
.page-hero__meta { justify-self: end; align-self: center; padding: 22px; border: 1px solid var(--sand); border-radius: 18px; background: rgba(255,255,255,.55); }
.page-hero__meta strong { display: block; margin-bottom: 6px; font-family: 'Newsreader', Georgia, serif; font-size: 1.2rem; }
.page-hero__meta span { color: var(--ink-soft); font-size: .78rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: #687a78; font-size: .74rem; font-weight: 700; }
.breadcrumbs a { color: var(--green-900); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 30px; border-radius: var(--radius-md); background: var(--green-050); }
.value-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 26px; border-radius: 50%; background: var(--green-900); color: white; font-size: .8rem; font-weight: 800; }
.value-card h3 { font-size: 1.5rem; }
.value-card p { margin-bottom: 0; font-size: .87rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-card { position: relative; min-height: 285px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; counter-increment: step; }
.process-card::before { content: '0' counter(step); display: block; margin-bottom: 54px; color: var(--copper); font-size: .74rem; font-weight: 800; letter-spacing: .1em; }
.process-card h3 { font-size: 1.45rem; }
.process-card p { font-size: .85rem; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-detail { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.service-detail__head { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.service-detail__head span { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: var(--green-050); color: var(--green-900); }
.service-detail h3 { margin: 0; font-size: 1.6rem; }
.service-detail ul { margin: 18px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: .86rem; }
.service-detail li { margin-bottom: 7px; }
.disclaimer { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--copper); background: #fbf8f3; color: #647471; font-size: .78rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.team-card__initial { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--green-900); color: white; font-family: 'Newsreader', Georgia, serif; font-size: 1.1rem; margin-bottom: 30px; }
.team-card h3 { margin-bottom: 6px; font-size: 1.4rem; }
.team-card h4 { margin-bottom: 13px; color: var(--copper); font-family: 'Manrope', Arial, sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.team-card p { margin: 0; font-size: .82rem; }

.faq-list { max-width: 900px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--line); }
details.faq-item:first-child { border-top: 1px solid var(--line); }
details.faq-item summary { position: relative; padding: 24px 52px 24px 0; cursor: pointer; list-style: none; color: var(--ink); font-family: 'Newsreader', Georgia, serif; font-size: 1.35rem; font-weight: 600; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 21px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: 'Manrope', sans-serif; font-size: 1rem; }
details.faq-item[open] summary::after { content: '−'; background: var(--green-900); color: white; border-color: var(--green-900); }
details.faq-item p { padding: 0 60px 24px 0; max-width: 800px; font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.contact-card { padding: 30px; border-radius: var(--radius-md); background: var(--green-900); color: white; }
.contact-card h2 { color: white; font-size: 2.25rem; }
.contact-card p { color: #d8e6e2; }
.contact-detail { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-detail i { width: 20px; color: #ffd3c2; margin-top: 4px; }
.contact-detail strong { display: block; color: white; font-size: .83rem; }
.contact-detail span, .contact-detail a { color: #d8e6e2; font-size: .8rem; }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-soft); }
.contact-form h2 { font-size: 2rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 7px; color: #304745; font-size: .76rem; font-weight: 800; }
.form-control { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #d8e0dc; border-radius: 10px; background: white; color: var(--ink); outline: none; box-shadow: none; }
textarea.form-control { min-height: 145px; resize: vertical; }
.form-control:focus { border-color: var(--green-800); box-shadow: 0 0 0 3px rgba(18,80,75,.08); }
.form-note { margin-top: 14px; color: #71807e; font-size: .72rem; }
.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-size: .82rem; }
.alert--success { background: #e9f5ee; color: #20563b; border: 1px solid #cce7d6; }
.alert--error { background: #fff0ed; color: #91442e; border: 1px solid #f0d0c7; }
.hp-field { position: absolute !important; left: -9999px !important; }
.map-frame { margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); }
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }

.notice-board { display: grid; gap: 18px; }
.notice-board__item { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.notice-board__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pill { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; background: var(--green-050); color: var(--green-900); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.notice-board__item h2 { font-size: 1.75rem; margin-bottom: 10px; }
.notice-board__item p { margin-bottom: 16px; font-size: .9rem; }
.empty-state { padding: 34px; border: 1px dashed #bfcac6; border-radius: var(--radius-md); background: #fbfcfb; text-align: center; }
.empty-state i { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: var(--green-050); color: var(--green-900); }
.empty-state h3 { font-size: 1.5rem; }
.empty-state p { max-width: 600px; margin: 0 auto; font-size: .85rem; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.article-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article-card__body { padding: 24px; }
.article-card__kicker { color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-card h2 { margin: 9px 0 12px; font-size: 1.55rem; }
.article-card p { font-size: .84rem; }
.article-card a { color: var(--green-900); font-size: .8rem; font-weight: 800; }
.article-content { max-width: 820px; margin: 0 auto; }
.article-content h2 { margin-top: 40px; font-size: 2rem; }
.article-content h3 { margin-top: 30px; font-size: 1.5rem; }
.article-content p, .article-content li { color: #526664; }
.article-content ul { padding-left: 22px; }

.footer-cta { padding: 62px 0; background: var(--green-900); }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-cta h2 { margin-bottom: 8px; color: white; font-size: clamp(2rem, 4vw, 3rem); }
.footer-cta p { margin-bottom: 0; color: #d7e6e2; }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }

.site-footer { padding: 70px 0 0; background: #071f1e; color: #c3d2cf; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1fr; gap: 50px; }
.brand--footer { min-width: 0; color: white; }
.brand--footer .brand__mark { background: rgba(255,255,255,.08); }
.brand--footer .brand__text small { color: #9fb3af; }
.footer-brand p { max-width: 390px; margin: 24px 0 0; color: #9fb3af; font-size: .82rem; }
.site-footer h3 { color: white; font-family: 'Manrope', sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { margin: 18px 0 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: #b7c7c4; font-size: .82rem; }
.footer-links a:hover { color: white; }
.site-footer address, .footer-meta { color: #9fb3af; font-size: .8rem; }
.footer-contact { display: block; margin-top: 8px; color: #dce8e5; font-size: .78rem; }
.site-footer__bottom { margin-top: 58px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 24px; }
.site-footer__bottom p { margin: 0; color: #78908c; font-size: .68rem; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--green-900); color: white; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: .76rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .utility-bar__contact { display: none; }
  .site-header__inner { min-height: 76px; }
  .nav-toggle { display: flex; }
  .primary-nav { position: fixed; inset: 117px 16px auto 16px; max-height: calc(100vh - 140px); overflow-y: auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 10px; border-bottom: 1px solid #edf0ee; }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-contact { margin-top: 10px; text-align: center; border-bottom: 0; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; padding: 64px 0 82px; gap: 50px; }
  .hero__visual { min-height: 460px; max-width: 650px; width: 100%; }
  .info-strip__grid { grid-template-columns: 1fr; }
  .info-strip__item { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .info-strip__item:last-child { border-bottom: 0; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .notice-layout, .contact-grid { grid-template-columns: 1fr; }
  .page-hero__inner { grid-template-columns: 1fr; gap: 20px; align-items: center; }
  .page-hero__meta { justify-self: start; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section--compact { padding: 52px 0; }
  .utility-bar__inner { min-height: 44px; }
  .utility-bar__notice span:not(.status-dot) { display: none; }
  .utility-bar__notice { width: 100%; justify-content: center; }
  .brand { min-width: 0; gap: 8px; }
  .brand__mark { width: 44px; height: 44px; }
  .brand__mark img { width: 40px; height: 40px; }
  .brand__text strong { font-size: 1.25rem; }
  .brand__text small { max-width: 190px; font-size: .61rem; }
  .primary-nav { top: 112px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero__visual { min-height: 380px; }
  .hero__image { inset: 0 0 52px 24px; }
  .hero__panel { padding: 18px; }
  .hero__quicklinks { grid-template-columns: 1fr; }
  .hero__trust { gap: 13px; }
  .card-grid, .value-grid, .process-grid, .service-detail-grid, .resource-grid, .article-grid, .team-grid, .site-footer__grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card__icon { margin-bottom: 28px; }
  .split__image-note { right: 8px; bottom: -28px; }
  .notice-item { grid-template-columns: 1fr auto; gap: 10px; }
  .notice-item__type { grid-column: 1 / -1; }
  .notice-item p { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .contact-form { padding: 24px; }
  .page-hero__inner { min-height: 280px; padding: 54px 0 45px; }
  .page-hero__meta { display: none; }
  .site-footer__bottom { flex-direction: column; }
  .footer-cta__actions { width: 100%; }
  .footer-cta__actions .btn { width: 100%; }
}
