/* Internal pages — extends the approved homepage visual language. */
.internal-page {
  color: var(--text);
  background: #fff;
}

.internal-page .has-mega.active .mega-toggle {
  color: var(--blue-600);
}

.internal-page .has-mega.active .mega-toggle::after {
  transform: scaleX(1);
}

.mega-all-link {
  margin-top: 7px;
  padding-top: 12px !important;
  border-top: 1px solid var(--line);
  color: var(--blue-700) !important;
  font-weight: 800 !important;
}

.page-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background-color: var(--blue-900);
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 32, 75, 0.97) 0%, rgba(6, 32, 75, 0.85) 38%, rgba(6, 32, 75, 0.25) 100%);
  content: "";
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 63%, rgba(7, 137, 201, 0.15) 63% 64%, transparent 64% 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), transparent 65%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 62px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.75;
}

.page-hero--compact,
.page-hero--compact .page-hero-inner {
  min-height: 260px;
}

.page-hero--article,
.page-hero--article .page-hero-inner {
  min-height: 410px;
}

.page-hero--article::before {
  background: linear-gradient(90deg, rgba(6, 32, 75, 0.98) 0%, rgba(6, 32, 75, 0.88) 50%, rgba(6, 32, 75, 0.35) 100%);
}

.page-hero--article h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.page-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-eyebrow {
  color: #70c8f4;
}

.page-eyebrow::before,
.section-kicker::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-kicker--light {
  color: #79d0f8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  color: #55b6ea;
  font-style: normal;
}

.page-section {
  padding: 88px 0;
}

.page-section--soft {
  background: #f5f7fa;
}

.page-section--blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.page-section h2,
.cta-strip h2,
.media-toolbar h2,
.contact-copy h2,
.legal-layout h2 {
  color: var(--blue-950);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.page-section--blue h2 {
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading--left {
  max-width: 780px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 10px 0 14px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 70px;
  align-items: center;
}

.split-grid--reverse > :first-child {
  order: 2;
}

.content-panel h2 {
  margin: 10px 0 22px;
}

.content-panel > p {
  margin: 0 0 18px;
  color: #536278;
  line-height: 1.84;
}

.intro-lead,
.article-lead {
  color: var(--blue-950) !important;
  font-size: 1.18rem;
  line-height: 1.72 !important;
  font-weight: 700;
}

.visual-panel {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e1e7ee;
  background:
    linear-gradient(135deg, rgba(7, 55, 110, 0.04), rgba(7, 137, 201, 0.08)),
    #fff;
  box-shadow: 0 18px 52px rgba(7, 55, 110, 0.09);
}

.visual-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 6px;
  background: var(--blue-600);
  content: "";
}

.visual-panel img {
  width: 100%;
  height: auto;
}

.visual-stat {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(6, 32, 75, 0.94);
  box-shadow: var(--shadow);
}

.visual-stat strong {
  color: #74d1fb;
  font-size: 2rem;
  line-height: 1;
}

.visual-stat span {
  font-size: 0.82rem;
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #334c68;
  font-weight: 700;
}

.check-list li > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
}

.check-list svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  min-height: 250px;
  padding: 30px 26px;
  border-top: 4px solid var(--blue-700);
  background: #fff;
  box-shadow: 0 12px 38px rgba(7, 55, 110, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(7, 55, 110, 0.13);
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-700);
  background: #eaf6fd;
}

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

.value-card h3 {
  margin: 22px 0 10px;
  color: var(--blue-950);
  font-size: 1.08rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
}

.timeline::before {
  position: absolute;
  top: 25px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: #cfd9e3;
  content: "";
}

.timeline article {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.timeline article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 0 0 1px #cbd8e4;
  font-weight: 900;
}

.timeline h3 {
  margin: 0 0 9px;
  color: var(--blue-950);
  font-size: 1rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.internal-stats .stats-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cta-section {
  padding: 74px 0;
  background: #f5f7fa;
}

.cta-strip {
  display: grid;
  min-height: 250px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: 52px 58px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 32, 75, 0.98), rgba(0, 109, 184, 0.88)),
    url('../assets/images/hero-full.png') center/cover;
  box-shadow: 0 20px 55px rgba(7, 55, 110, 0.17);
}

.cta-strip h2 {
  margin: 10px 0 12px;
  color: #fff;
}

.cta-strip p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--blue-900);
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.related-links svg,
.legal-layout aside a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-light {
  flex: 0 0 auto;
  color: var(--blue-950);
  background: #fff;
}

.button-light:hover {
  color: #fff;
  background: var(--blue-950);
}

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

.division-card {
  display: grid;
  min-height: 390px;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  border: 1px solid #dce4ec;
  background: #fff;
  box-shadow: 0 14px 42px rgba(7, 55, 110, 0.08);
}

.division-image {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #e8edf2;
}

.division-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 32, 75, 0.2));
  content: "";
}

.division-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.division-card:nth-child(3) .division-image img,
.division-card:nth-child(4) .division-image img {
  padding: 26%;
  object-fit: contain;
  background: linear-gradient(145deg, #eff4f8, #dce8f1);
}

.division-card:hover .division-image img {
  transform: scale(1.04);
}

.division-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px 30px;
}

.division-body > span,
.article-label span,
.article-topline span:first-child {
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.division-body h2 {
  margin: 8px 0 12px;
  font-size: 1.65rem;
}

.division-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.division-body ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
  color: #3d536d;
  font-size: 0.84rem;
  font-weight: 700;
}

.division-body li::before {
  margin-right: 8px;
  color: var(--blue-600);
  content: "•";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 900;
}

.text-link:hover {
  color: var(--blue-950);
}

.process-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(7, 137, 201, 0.11) 0 32%, transparent 32%),
    repeating-radial-gradient(circle at center, transparent 0 69px, rgba(7, 55, 110, 0.11) 70px 71px),
    #fff;
  box-shadow: 0 18px 50px rgba(7, 55, 110, 0.08);
}

.process-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 140px;
  height: 140px;
  place-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 15px 40px rgba(7, 55, 110, 0.24);
}

.process-ring span {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-ring small {
  max-width: 90px;
  margin: 4px auto 0;
  font-size: 0.66rem;
}

.orbit {
  position: absolute;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 6px solid #f5f7fa;
  border-radius: 50%;
  color: var(--blue-900);
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 55, 110, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
}

.orbit-one { top: 25px; left: 50%; transform: translateX(-50%); }
.orbit-two { top: 50%; right: 28px; transform: translateY(-50%); }
.orbit-three { bottom: 25px; left: 50%; transform: translateX(-50%); }
.orbit-four { top: 50%; left: 28px; transform: translateY(-50%); }

.numbered-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.numbered-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.numbered-list article > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--blue-700);
  background: #eaf6fd;
  font-weight: 900;
}

.numbered-list h3 {
  margin: 0 0 5px;
  color: var(--blue-950);
  font-size: 1rem;
}

.numbered-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.business-intro .button {
  margin-top: 18px;
}

.detail-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #e8edf2;
  box-shadow: 0 18px 50px rgba(7, 55, 110, 0.13);
}

.detail-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.division-cosmetics .detail-image img,
.division-water .detail-image img {
  padding: 20%;
  object-fit: contain;
  background: linear-gradient(145deg, #eff4f8, #dce8f1);
}

.detail-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px 20px;
  color: #fff;
  background: rgba(6, 32, 75, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scope-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.scope-grid article {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
}

.scope-grid article::after {
  position: absolute;
  right: -22px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border: 18px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.scope-grid span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 2rem;
  font-weight: 900;
}

.scope-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 180px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.process-grid article {
  position: relative;
  min-height: 245px;
  padding: 32px 27px;
  border: 1px solid var(--line);
  background: #fff;
}

.process-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--blue-600);
  transition: width 250ms ease;
  content: "";
}

.process-grid article:hover::before {
  width: 100%;
}

.process-grid span {
  color: #cbd8e4;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid h3 {
  margin: 25px 0 10px;
  color: var(--blue-950);
  font-size: 1.08rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 70px;
  align-items: center;
}

.compliance-grid h2 {
  margin: 10px 0 16px;
}

.compliance-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.78;
}

.compliance-grid .check-list {
  margin: 0;
}

.compliance-grid .check-list li {
  color: #fff;
}

.compliance-grid .check-list li > span {
  color: var(--blue-950);
  background: #7ed3f9;
}

.media-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.media-toolbar h2 {
  margin: 10px 0 0;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-pills button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: #496078;
  background: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-pills button:hover,
.filter-pills button.is-active {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid #dce4ec;
  background: #fff;
  box-shadow: 0 12px 38px rgba(7, 55, 110, 0.07);
}

.article-card[hidden] {
  display: none;
}

.article-image {
  display: block;
  height: 225px;
  overflow: hidden;
  background: #e8edf2;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.04);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.article-label,
.article-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #8995a4;
  font-size: 0.72rem;
  font-weight: 700;
}

.article-label time::before,
.article-topline > * + *::before {
  margin-right: 12px;
  color: #b8c2cc;
  content: "•";
}

.article-card h2 {
  margin: 13px 0 12px;
  color: var(--blue-950);
  font-size: 1.25rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.article-card h2 a:hover {
  color: var(--blue-700);
}

.article-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

.article-section {
  padding: 80px 0 90px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 320px);
  gap: 70px;
  justify-content: space-between;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-topline {
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.article-content > section {
  scroll-margin-top: 112px;
}

.article-content h2 {
  margin: 44px 0 15px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.3;
}

.article-content p {
  margin: 0 0 20px;
  color: #4f6075;
  font-size: 1rem;
  line-height: 1.92;
}

.article-callout {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px;
  margin-top: 42px;
  border-left: 4px solid var(--blue-700);
  background: #eef7fc;
}

.article-callout p {
  margin: 0;
  color: var(--blue-950);
  font-weight: 700;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.article-share strong {
  margin-right: 10px;
  color: var(--blue-950);
  font-size: 0.86rem;
}

.article-share button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  color: #435a72;
  background: #fff;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.article-share button:hover {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.article-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 22px;
}

.toc-card,
.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 55, 110, 0.06);
}

.toc-card > span {
  display: block;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--blue-700);
  color: var(--blue-950);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.toc-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #edf1f5;
  color: #5b6c80;
  font-size: 0.84rem;
  line-height: 1.5;
}

.toc-card a:hover {
  color: var(--blue-700);
}

.contact-card {
  color: #fff;
  border: 0;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.contact-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-card .button {
  width: 100%;
  color: var(--blue-950);
  background: #fff;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-links a {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  color: var(--blue-950);
  border: 1px solid #dfe6ed;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.related-links a:hover {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  margin: 10px 0 20px;
}

.contact-copy > p {
  color: #596a7e;
  line-height: 1.82;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.direct-contact > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.direct-contact > a:hover {
  border-color: var(--blue-600);
}

.direct-contact small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.direct-contact strong {
  color: var(--blue-950);
  font-size: 0.94rem;
}

.inquiry-form {
  padding: 36px;
  border-top: 5px solid var(--blue-700);
  background: #f5f7fa;
  box-shadow: 0 16px 46px rgba(7, 55, 110, 0.1);
}

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

.form-grid label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.search-page-form input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #ced8e2;
  border-radius: 0;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.search-page-form input:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(7, 137, 201, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.consent input {
  min-height: 0;
  margin: 4px 0 0;
}

.consent span {
  color: #5c6e80 !important;
  font-size: 0.75rem !important;
  line-height: 1.55;
}

.consent a {
  color: var(--blue-700);
  text-decoration: underline;
}

.form-submit {
  margin-top: 24px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status.is-success {
  padding: 12px 14px;
  color: #175d3b;
  background: #e9f7f0;
}

.form-status.is-error {
  padding: 12px 14px;
  color: #9a2b2b;
  background: #fdeeee;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.office-grid article {
  min-height: 245px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.office-grid h3 {
  margin: 22px 0 10px;
  color: var(--blue-950);
}

.office-grid p {
  min-height: 54px;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.office-grid a {
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 55px;
  padding: 45px 55px;
  background: #f5f7fa;
}

.map-card h2 {
  margin: 10px 0 15px;
}

.map-card p {
  color: var(--muted);
  line-height: 1.75;
}

.search-page {
  max-width: 900px;
}

.search-page-form {
  padding: 32px;
  border-top: 5px solid var(--blue-700);
  background: #f5f7fa;
}

.search-page-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 1rem;
  font-weight: 900;
}

.search-page-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-page-form input {
  min-height: 48px;
}

.search-summary {
  margin: 34px 0 20px;
  color: var(--muted);
}

.search-results {
  display: grid;
  gap: 14px;
}

.search-result {
  padding: 25px 27px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-result:hover {
  border-color: var(--blue-600);
  box-shadow: 0 10px 28px rgba(7, 55, 110, 0.08);
}

.search-result span {
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-result h2 {
  margin: 7px 0 8px;
  font-size: 1.25rem;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.search-empty {
  padding: 30px;
  color: var(--muted);
  border: 1px dashed #cbd6e0;
  background: #fafbfc;
}

.legal-section {
  padding: 80px 0 95px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 75px;
  align-items: start;
  justify-content: center;
}

.legal-layout aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 4px solid var(--blue-700);
  background: #f5f7fa;
}

.legal-layout aside span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.legal-layout aside strong {
  color: var(--blue-950);
  font-size: 0.88rem;
}

.legal-layout aside a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.legal-layout article section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-layout article section:last-child {
  border-bottom: 0;
}

.legal-layout h2 {
  margin: 0 0 13px;
  font-size: 1.4rem;
}

.legal-layout p {
  margin: 0;
  color: #536477;
  line-height: 1.88;
}

.legal-layout p a {
  color: var(--blue-700);
  text-decoration: underline;
}

.notfound-section {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(6, 32, 75, 0.98), rgba(0, 83, 149, 0.9)),
    url('../assets/images/hero-full.png') center/cover;
}

.notfound-inner {
  text-align: center;
}

.notfound-inner > span {
  display: block;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(7rem, 20vw, 15rem);
  line-height: 0.8;
  font-weight: 900;
}

.notfound-inner h1 {
  margin: 24px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.notfound-inner p {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.76);
}

.notfound-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.notfound-inner .button {
  color: var(--blue-950);
  background: #fff;
}

.notfound-inner .text-link {
  margin: 0;
  color: #fff;
}

.internal-contact-band {
  scroll-margin-top: 100px;
}

.legal-links {
  display: inline-flex;
  gap: 18px;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .split-grid,
  .contact-layout {
    gap: 45px;
  }

  .value-grid,
  .scope-grid,
  .process-grid,
  .office-grid {
    gap: 16px;
  }

  .division-card {
    grid-template-columns: 40% 60%;
  }

  .division-body {
    padding: 28px 24px;
  }

  .article-layout {
    gap: 45px;
  }
}

@media (max-width: 991px) {
  .page-hero,
  .page-hero-inner {
    min-height: 300px;
  }

  .page-hero--article,
  .page-hero--article .page-hero-inner {
    min-height: 360px;
  }

  .page-section {
    padding: 70px 0;
  }

  .split-grid,
  .contact-layout,
  .compliance-grid,
  .map-card {
    grid-template-columns: 1fr;
  }

  .split-grid--reverse > :first-child {
    order: 0;
  }

  .visual-panel,
  .process-visual {
    min-height: 360px;
  }

  .value-grid,
  .scope-grid,
  .process-grid,
  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 0;
  }

  .timeline::before {
    display: none;
  }

  .cta-strip {
    padding: 44px;
  }

  .division-grid {
    grid-template-columns: 1fr;
  }

  .division-card {
    min-height: 340px;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .map-card {
    padding: 38px;
  }

  .legal-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .page-hero,
  .page-hero-inner,
  .page-hero--article,
  .page-hero--article .page-hero-inner {
    min-height: 315px;
  }

  .page-hero::before {
    background: linear-gradient(90deg, rgba(6, 32, 75, 0.96), rgba(6, 32, 75, 0.72));
  }

  .page-hero-inner {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .breadcrumb {
    margin-bottom: 26px;
    font-size: 0.72rem;
  }

  .page-hero h1,
  .page-hero--article h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 0.94rem;
  }

  .page-section,
  .article-section,
  .legal-section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .page-section h2,
  .cta-strip h2,
  .media-toolbar h2,
  .contact-copy h2 {
    font-size: 1.75rem;
  }

  .split-grid,
  .contact-layout,
  .compliance-grid,
  .map-card {
    gap: 34px;
  }

  .visual-panel,
  .process-visual,
  .detail-image,
  .detail-image img {
    min-height: 300px;
    height: 300px;
  }

  .visual-panel {
    padding: 20px;
  }

  .visual-stat {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .value-grid,
  .scope-grid,
  .process-grid,
  .office-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .process-grid article {
    min-height: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .timeline article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 0;
    text-align: left;
  }

  .timeline article > span {
    margin: 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-strip {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 26px;
  }

  .button-light {
    width: 100%;
  }

  .division-card {
    grid-template-columns: 1fr;
  }

  .division-image {
    min-height: 220px;
  }

  .division-body {
    padding: 26px 22px;
  }

  .process-visual {
    height: auto;
  }

  .media-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .filter-pills {
    justify-content: flex-start;
  }

  .article-image {
    height: 220px;
  }

  .article-layout {
    gap: 42px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-callout {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .article-share {
    align-items: flex-start;
  }

  .article-share strong {
    width: 100%;
  }

  .inquiry-form {
    padding: 27px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .map-card {
    padding: 28px 22px;
  }

  .search-page-form {
    padding: 22px;
  }

  .search-page-form > div {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-layout aside {
    position: static;
  }

  .notfound-inner > div {
    flex-direction: column;
    gap: 18px;
  }

  .legal-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-hero h1,
  .page-hero--article h1 {
    font-size: 1.75rem;
  }

  .intro-lead,
  .article-lead {
    font-size: 1.04rem;
  }

  .orbit {
    width: 68px;
    height: 68px;
  }

  .orbit-two { right: 8px; }
  .orbit-four { left: 8px; }

  .process-ring {
    width: 120px;
    height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-card,
  .division-image img,
  .article-image img,
  .button {
    transition: none;
  }
}

/* Keep small source artwork sharp instead of stretching it across a hero. */
.page-hero--cosmetics,
.page-hero--water {
  background-repeat: no-repeat;
  background-size: 270px auto;
  background-position: 82% center;
}

.division-card:nth-child(-n + 2) .division-image img,
.article-image img {
  transform: scale(1.06);
}

.division-card:nth-child(-n + 2):hover .division-image img,
.article-card:hover .article-image img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .page-hero--cosmetics,
  .page-hero--water {
    background-size: 180px auto;
    background-position: 92% center;
  }
}
