/* Search-intent pages and homepage SEO navigation. */
:root {
  --seo-ink: #242823;
  --seo-green: #173f33;
  --seo-green-soft: #e7eee9;
  --seo-gold: #c9ae7e;
  --seo-paper: #f7f5ef;
}

.breadcrumbs {
  margin-top: var(--header-h, 84px);
  padding: 12px clamp(20px, 5vw, 72px);
  background: #f7f5ef;
  border-bottom: 1px solid rgba(30, 74, 60, 0.12);
  font-size: 12px;
  color: #64655f;
}

.breadcrumbs ol {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #9b9b94;
}

.breadcrumbs a { color: var(--seo-green); }

.sub-hero {
  position: relative;
  min-height: min(560px, 64svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.sub-hero__media,
.sub-hero__overlay {
  position: absolute;
  inset: 0;
}

.sub-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero__overlay {
  background: linear-gradient(92deg, rgba(12, 38, 30, 0.88), rgba(14, 42, 33, 0.52) 58%, rgba(12, 38, 30, 0.2));
}

.sub-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  padding: 88px 0 80px;
}

.sub-hero h1 {
  max-width: 900px;
  margin: 14px 0 24px;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.sub-hero__inner > p:last-child {
  max-width: 760px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}

.page-content { color: var(--seo-ink); }

.content-section {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
}

.content-section + .content-section { border-top: 1px solid rgba(30, 74, 60, 0.1); }

.content-section--tint {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1080px) / 2));
  background: var(--seo-paper);
  border-top: 0 !important;
}

.content-section > h2,
.content-section > div > h2,
.contact-card h2 {
  margin: 12px 0 28px;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.07em;
  color: var(--seo-green);
}

.content-section p {
  max-width: 880px;
  font-size: 16px;
  line-height: 2.05;
}

.content-section p + p { margin-top: 18px; }

.content-section a:not(.btn) {
  color: #155b46;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.feature-grid article {
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid rgba(30, 74, 60, 0.14);
  box-shadow: 0 16px 42px rgba(21, 51, 42, 0.06);
}

.feature-grid h3 {
  margin: 0 0 16px;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--seo-green);
}

.feature-grid p { font-size: 14.5px; line-height: 1.95; }

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.contact-card {
  padding: clamp(28px, 4vw, 42px);
  background: var(--seo-green);
  color: #fff;
}

.contact-card h2 { margin-top: 0; font-size: clamp(22px, 2.4vw, 30px); color: #fff; }
.contact-card p { font-size: 14px; line-height: 1.9; }
.contact-card .btn { width: 100%; margin-top: 24px; background: #fff; color: var(--seo-green); }

.source-note {
  margin-top: 28px !important;
  padding: 14px 18px;
  border-left: 3px solid var(--seo-gold);
  background: rgba(201, 174, 126, 0.1);
  font-size: 13px !important;
}

.number-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: seo-steps;
}

.number-list li {
  counter-increment: seo-steps;
  display: grid;
  grid-template-columns: 60px minmax(160px, 0.35fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(30, 74, 60, 0.18);
}

.number-list li::before {
  content: "0" counter(seo-steps);
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--seo-gold);
}

.number-list strong { color: var(--seo-green); }
.number-list span { font-size: 14px; line-height: 1.9; }

.company-table--page { margin-top: 34px; }
.timeline--compact { margin-top: 42px; }

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.source-list a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(30, 74, 60, 0.18);
  text-decoration: none !important;
}

.source-list strong { font-size: 18px; color: var(--seo-green); }
.source-list span { font-size: 13px; line-height: 1.8; color: #5c625d; }

.access-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.map-frame { min-height: 440px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; min-height: 440px; }

.access-detail { margin-top: 26px; }
.access-detail div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid rgba(30, 74, 60, 0.15); }
.access-detail dt { font-weight: 700; color: var(--seo-green); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn--outline { border: 1px solid var(--seo-green); color: var(--seo-green); background: transparent; }

.faq-list { width: min(900px, 100%); margin: 0 auto; }
.faq-item { border-top: 1px solid rgba(30, 74, 60, 0.2); }
.faq-item:last-child { border-bottom: 1px solid rgba(30, 74, 60, 0.2); }
.faq-item summary { position: relative; padding: 28px 56px 28px 44px; cursor: pointer; list-style: none; font-weight: 700; line-height: 1.7; color: var(--seo-green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; position: absolute; left: 8px; top: 25px; font-family: Georgia, serif; font-size: 22px; color: var(--seo-gold); }
.faq-item summary::after { content: "+"; position: absolute; right: 14px; top: 25px; font-size: 24px; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer { padding: 0 44px 28px; }
.faq-item__answer p { font-size: 15px; }

.prose { width: min(860px, calc(100% - 40px)); }
.prose h2 { margin-top: 56px; font-size: clamp(23px, 2.6vw, 32px); }
.prose h2:first-child { margin-top: 0; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 24px auto;
  font-size: 12px;
}

.footer-nav a { color: inherit; opacity: 0.82; }

.seo-pathways {
  background: var(--seo-paper);
}

.seo-pathways__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.seo-pathway {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(30, 74, 60, 0.12);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-pathway:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(20, 57, 45, 0.1); }
.seo-pathway__eyebrow { font-size: 10px; letter-spacing: 0.22em; color: #8b7147; }
.seo-pathway h3 { margin: 15px 0 12px; font-family: "Shippori Mincho", "Yu Mincho", serif; font-size: 19px; line-height: 1.55; color: var(--seo-green); }
.seo-pathway p { font-size: 13px; line-height: 1.8; color: #5a5e59; }
.seo-pathway__more { margin-top: auto; padding-top: 18px; font-size: 12px; color: var(--seo-green); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(30, 74, 60, 0.16);
}

.trust-strip > div { padding: 28px; }
.trust-strip > div + div { border-left: 1px solid rgba(30, 74, 60, 0.16); }
.trust-strip strong { display: block; color: var(--seo-green); margin-bottom: 8px; }
.trust-strip span { font-size: 13px; line-height: 1.8; color: #646862; }

.section-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--seo-green);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1100px) {
  .global-nav__list { gap: 10px !important; }
  .global-nav__list a { font-size: 11px !important; }
  .seo-pathways__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .feature-grid,
  .split-copy,
  .access-page-grid,
  .source-list { grid-template-columns: 1fr; }
  .number-list li { grid-template-columns: 48px 1fr; }
  .number-list span { grid-column: 2; }
  .map-frame,
  .map-frame iframe { min-height: 360px; }
}

@media (max-width: 560px) {
  .breadcrumbs { margin-top: 68px; padding-inline: 18px; }
  .sub-hero { min-height: 560px; }
  .sub-hero__inner { width: calc(100% - 36px); padding: 100px 0 64px; }
  .sub-hero h1 { font-size: 31px; line-height: 1.5; }
  .content-section { width: calc(100% - 36px); padding-block: 64px; }
  .content-section--tint { width: 100%; padding-inline: 18px; }
  .feature-grid,
  .seo-pathways__grid { grid-template-columns: 1fr; }
  .seo-pathway { min-height: 180px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div + div { border-left: 0; border-top: 1px solid rgba(30, 74, 60, 0.16); }
  .access-detail div { grid-template-columns: 82px 1fr; }
  .button-row .btn { width: 100%; }
  .faq-item summary { padding-left: 38px; padding-right: 42px; }
  .faq-item summary::before { left: 2px; }
  .faq-item__answer { padding-inline: 38px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .seo-pathway { transition: none; }
}
