:root {
  --ink: #182025;
  --muted-ink: #5b6870;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d9dedc;
  --teal: #0e6f68;
  --teal-dark: #094843;
  --coral: #c65d3b;
  --gold: #b38a27;
  --green: #5e7f45;
}

html {
  font-size: 16px;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--teal);
}

a:hover {
  color: var(--teal-dark);
}

.site-header {
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-mark {
  align-items: baseline;
  color: var(--ink);
  display: inline-flex;
  font-size: 1.2rem;
  gap: 0.22rem;
  font-weight: 800;
}

.brand-ampersand {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.navbar {
  padding: 0.85rem 0;
}

.navbar-nav {
  gap: 0.25rem;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.navbar-toggler {
  align-items: center;
  border-color: rgba(24, 32, 37, 0.35);
  display: inline-flex;
  justify-content: center;
  margin-left: auto;
  min-height: 40px;
  min-width: 44px;
}

.navbar-toggler-icon {
  background-image: none;
  display: inline-block;
  height: 14px;
  position: relative;
  width: 20px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
  border-top: 2px solid var(--ink);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  left: 0;
  position: absolute;
  width: 20px;
}

.navbar-toggler-icon::before {
  top: 4px;
}

.navbar-toggler-icon::after {
  top: 10px;
}

.btn {
  border-radius: 6px;
  font-weight: 700;
  padding: 0.72rem 1rem;
}

.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.btn-outline-light:hover {
  color: var(--ink);
  background: #fff;
}

.hero-band {
  min-height: 700px;
  min-height: clamp(560px, calc(100svh - 180px), 700px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1c2428;
  isolation: isolate;
}

.hero-band::before,
.hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-band::before {
  background: linear-gradient(105deg, transparent 0%, rgba(241, 179, 123, 0.08) 36%, rgba(255, 255, 255, 0.12) 46%, transparent 60%);
  transform: translate3d(-28%, 0, 0) skewX(-8deg);
}

.hero-band::after {
  background:
    radial-gradient(circle at 74% 38%, rgba(14, 111, 104, 0.2), transparent 26%),
    radial-gradient(circle at 88% 66%, rgba(198, 93, 59, 0.14), transparent 24%);
  mix-blend-mode: screen;
}

.hero-image,
.section-image {
  display: block;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center right;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 15, 18, 0.93), rgba(8, 15, 18, 0.72), rgba(8, 15, 18, 0.18));
  z-index: 1;
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 780px;
  padding-top: 5rem;
  padding-bottom: 6rem;
  z-index: 3;
}

.hero-content h1,
.page-heading h1 {
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
  font-weight: 800;
  overflow-wrap: break-word;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  line-height: 0.96;
  margin-bottom: 0.8rem;
  max-width: 10ch;
}

.hero-content h1 .brand-ampersand {
  color: #f1b37b;
}

.hero-tagline {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 1rem;
  max-width: 34ch;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
}

.hero-content .hero-summary {
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 660px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: heroPremiumDrift 12s ease-in-out infinite alternate;
    transform-origin: 72% 54%;
    will-change: transform;
  }

  .hero-overlay {
    animation: heroOverlayPulse 12s ease-in-out infinite alternate;
  }

  .hero-band::before {
    animation: heroLightSweep 7.5s ease-in-out infinite;
  }

  .hero-band::after {
    animation: heroDepthGlow 9s ease-in-out infinite alternate;
  }
}

@keyframes heroPremiumDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.11) translate3d(-2.4%, -0.8%, 0);
  }
}

@keyframes heroOverlayPulse {
  from {
    opacity: 0.98;
  }

  to {
    opacity: 0.9;
  }
}

@keyframes heroLightSweep {
  0%,
  28% {
    opacity: 0;
    transform: translate3d(-30%, 0, 0) skewX(-8deg);
  }

  52% {
    opacity: 0.58;
  }

  76%,
  100% {
    opacity: 0;
    transform: translate3d(34%, 0, 0) skewX(-8deg);
  }
}

@keyframes heroDepthGlow {
  from {
    opacity: 0.26;
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    opacity: 0.42;
    transform: scale(1.05) translate3d(-0.8%, 0.6%, 0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.page-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.text-link {
  display: inline-flex;
  font-weight: 800;
  margin-top: 0.5rem;
  text-decoration: none;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #f1b37b;
}

.section-band,
.page-heading {
  padding: 5rem 0;
}

.section-band.muted,
.page-heading {
  background: #eef0ea;
}

.page-heading.compact {
  padding: 3rem 0;
}

.page-heading p {
  color: var(--muted-ink);
  font-size: 1.1rem;
  max-width: 760px;
}

.narrow {
  max-width: 850px;
}

.split-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.visual-heading {
  align-items: center;
}

.section-copy p {
  color: var(--muted-ink);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-copy h2 {
  overflow-wrap: break-word;
}

.feature-grid,
.service-grid,
.portfolio-grid,
.detail-grid,
.case-grid,
.material-grid,
.package-grid,
.checklist-grid {
  display: grid;
  gap: 1rem;
}

.split-layout > *,
.feature-grid > *,
.service-grid > *,
.portfolio-grid > *,
.detail-grid > *,
.case-grid > *,
.material-grid > *,
.package-grid > *,
.checklist-grid > *,
.timeline > *,
.process-strip > * {
  min-width: 0;
}

.feature-grid,
.portfolio-grid,
.case-grid,
.material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
}

.media-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.card-image {
  aspect-ratio: 16 / 9;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  width: 100%;
}

.fit-contain,
.card-image.fit-contain,
.section-image.fit-contain {
  background: #f3f4f1;
  object-fit: contain;
}

.fit-cover {
  object-fit: cover;
}

.card-body {
  padding: 1.35rem;
}

.feature-card h2,
.feature-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.8rem;
  overflow-wrap: break-word;
}

.feature-card p,
.text-flow p,
.faq-list p,
.download-panel p {
  color: var(--muted-ink);
  overflow-wrap: break-word;
}

.case-card h2 {
  font-size: 1.25rem;
}

.case-card-format {
  color: var(--muted-ink);
  font-size: 0.82rem;
  font-weight: 700;
  margin: -0.25rem 0 0.65rem;
}

.section-heading-row {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.featured-case-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-case {
  min-width: 0;
}

.featured-case > a {
  display: block;
  overflow: hidden;
}

.featured-case img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.featured-case > a:hover img {
  transform: scale(1.015);
}

.featured-case > div {
  padding-top: 1rem;
}

.featured-case h3 {
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}

.featured-case p:not(.case-label) {
  color: var(--muted-ink);
}

.journey-heading {
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.journey-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.journey-step {
  color: var(--ink);
  min-width: 0;
  text-decoration: none;
}

.journey-step:hover {
  color: var(--teal-dark);
}

.journey-step img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  display: block;
  margin-bottom: 0.8rem;
  width: 100%;
}

.journey-step span {
  color: var(--coral);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.journey-step strong {
  display: block;
  font-size: 0.9rem;
}

.project-format-layout {
  align-items: center;
}

.project-format-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-format-item {
  color: var(--ink);
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  min-width: 0;
  text-decoration: none;
}

.project-format-item img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 86px;
}

.project-format-item span {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.7rem;
}

.industry-home-band {
  background: #f5f6f2;
}

.industry-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
  overflow: hidden;
}

.industry-card-media {
  color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.industry-card-media::after {
  background: linear-gradient(180deg, transparent 48%, rgba(8, 19, 22, 0.78));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.industry-card-media img,
.industry-tile img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.industry-card-media:hover img,
.industry-tile:hover img {
  transform: scale(1.018);
}

.industry-card-media span {
  bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  left: 1rem;
  position: absolute;
  z-index: 1;
}

.industry-card-copy {
  padding: 1.25rem;
}

.industry-card-copy h2,
.industry-card-copy h3 {
  font-size: 1.28rem;
  margin: 0 0 0.7rem;
}

.industry-card-copy p:not(.case-label) {
  color: var(--muted-ink);
}

.industry-card-copy .text-link {
  margin-top: 0.35rem;
}

.industry-index-band {
  border-top: 1px solid var(--line);
}

.industry-grid.compact {
  gap: 0.9rem;
}

.industry-tile {
  color: var(--ink);
  min-width: 0;
  text-decoration: none;
}

.industry-tile span {
  color: var(--coral);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.8rem;
  text-transform: uppercase;
}

.industry-tile strong {
  display: block;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.industry-detail-hero {
  background: #edf0ec;
  padding: 3.5rem 0 0;
}

.industry-detail-hero-grid {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.industry-detail-hero h1 {
  font-size: 3rem;
  line-height: 1.04;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.industry-detail-hero-grid > div {
  padding-bottom: 3.5rem;
}

.industry-detail-hero-grid > div > p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 1.08rem;
}

.industry-hero-media,
.industry-detail-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.industry-hero-media img,
.industry-detail-media img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.industry-story-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.industry-detail-media {
  border: 1px solid var(--line);
}

.industry-detail-media figcaption {
  background: #f5f6f2;
  color: var(--muted-ink);
  font-size: 0.76rem;
  padding: 0.65rem 0.8rem;
}

.industry-meta-groups {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.industry-service-band {
  align-items: start;
}

.case-stage-count {
  align-items: center;
  color: var(--muted-ink);
  display: flex;
  font-size: 0.82rem;
  gap: 0.4rem;
  margin-top: 1rem;
}

.case-stage-count span {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 1.65rem;
  justify-content: center;
  width: 1.65rem;
}

.case-format {
  color: var(--muted-ink);
  font-size: 0.92rem !important;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.case-stage-band {
  padding: 4rem 0;
  scroll-margin-top: 110px;
}

.case-stage-band:nth-child(even) {
  background: #eef0ea;
}

.case-stage-layout {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.case-stage-band.reverse .case-stage-media {
  order: 2;
}

.case-stage-media {
  background: #f3f4f1;
  border: 1px solid var(--line);
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.case-stage-media img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  width: 100%;
}

.case-stage-media.fit-contain img {
  object-fit: contain;
}

.case-stage-media.fit-cover img {
  object-fit: cover;
}

.case-stage-copy h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.case-stage-copy > p:not(.case-label) {
  color: var(--muted-ink);
  font-size: 1.04rem;
}

.review-point-list,
.buildability-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.review-point-list li,
.buildability-list li {
  border-top: 1px solid var(--line);
  padding: 0.7rem 0 0.7rem 1.25rem;
  position: relative;
}

.review-point-list li::before,
.buildability-list li::before {
  color: var(--teal);
  content: "+";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.buildability-panel {
  align-items: start;
  border-left: 5px solid var(--coral);
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  padding-left: 1.5rem;
}

.case-label {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.case-workflow-section {
  padding-top: 1rem;
}

.case-workflow-heading {
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.case-workflow-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-workflow-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.case-workflow-item img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.case-workflow-item figcaption {
  padding: 1rem 1.1rem 1.15rem;
}

.case-workflow-item figcaption span {
  color: var(--coral);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.case-workflow-item figcaption p {
  color: var(--muted-ink);
  margin: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.pill-list span {
  background: #eef0ea;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
}

.trust-panel {
  align-self: start;
  border-left: 5px solid var(--teal);
}

.trust-panel h3 {
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
}

.trust-strip {
  margin-top: 2rem;
}

.resource-heading {
  margin-bottom: 1.5rem;
}

.before-after-layout {
  align-items: center;
}

.resource-timeline {
  margin-top: 2rem;
}

.download-panel {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem;
}

.accent-a {
  border-top: 5px solid var(--teal);
}

.accent-b {
  border-top: 5px solid var(--coral);
}

.accent-c {
  border-top: 5px solid var(--gold);
}

.section-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 430px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(24, 32, 37, 0.12);
}

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

.process-strip div {
  border-left: 4px solid var(--teal);
  padding: 0.35rem 1rem;
}

.process-strip span,
.timeline span {
  color: var(--coral);
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
}

.timeline article.media-card {
  padding: 0;
}

.auth-page {
  align-items: center;
  background: #eef0ea;
  display: flex;
  min-height: calc(100svh - 210px);
  padding: 5rem 0;
}

.auth-shell {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  max-width: 1040px;
}

.auth-context {
  max-width: 580px;
}

.auth-context h1,
.auth-panel h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  overflow-wrap: break-word;
}

.auth-context > p:not(.eyebrow),
.auth-panel > p:not(.case-label) {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.auth-scope {
  border-left: 4px solid var(--coral);
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  max-width: 510px;
  padding: 0.35rem 0 0.35rem 1rem;
}

.auth-scope span,
.auth-notice span {
  color: var(--muted-ink);
}

.auth-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 32, 37, 0.1);
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.auth-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.auth-panel h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.auth-panel-warning {
  border-top-color: var(--coral);
}

.auth-panel-intro {
  margin-bottom: 1.5rem;
}

.auth-form {
  display: grid;
  gap: 1.1rem;
}

.auth-field {
  display: grid;
  gap: 0.4rem;
}

.auth-field label {
  font-weight: 700;
}

.auth-field .form-control {
  min-height: 48px;
}

.auth-check {
  align-items: center;
  color: var(--muted-ink);
  display: flex;
  gap: 0.55rem;
}

.auth-check input {
  height: 18px;
  margin: 0;
  width: 18px;
}

.auth-submit {
  min-height: 48px;
  width: 100%;
}

.auth-validation:empty {
  display: none;
}

.auth-validation ul {
  color: #a53d2a;
  margin: 0;
  padding-left: 1.2rem;
}

.auth-links {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.auth-links a:not(.btn) {
  font-weight: 700;
}

.auth-links-actions {
  align-items: center;
  justify-content: flex-start;
}

.auth-notice {
  background: #f6f6f2;
  border-left: 4px solid var(--coral);
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.auth-single {
  max-width: 620px;
}

.form-shell {
  max-width: 960px;
}

.stacked-form {
  display: grid;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 100%;
  min-width: 0;
  padding: 1.5rem;
}

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

.form-label {
  font-weight: 700;
}

.form-control,
.form-select {
  border-radius: 6px;
  border-color: #cbd3d0;
}

.form-note,
.empty-state,
.admin-table span {
  color: var(--muted-ink);
  font-size: 0.92rem;
  overflow-wrap: break-word;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem;
}

.admin-table {
  margin-bottom: 0;
}

.admin-table th {
  color: var(--muted-ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.detail-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.inquiry-detail {
  display: grid;
  gap: 1.5rem;
}

dl {
  margin: 0;
}

dt {
  color: var(--muted-ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0 0 0.75rem;
}

.site-footer {
  background: #1f292c;
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid > div > strong,
.footer-grid > div > span {
  display: block;
}

.footer-grid small {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  margin-top: 0.35rem;
}

.footer-brand {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.footer-brand .brand-ampersand {
  display: inline;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
}

.representative-figure {
  margin: 0;
}

.representative-figure figcaption,
.intelligent-product-card figure figcaption {
  color: var(--muted-ink);
  font-size: 0.78rem;
  margin-top: 0.55rem;
}

.intelligent-display-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(226, 107, 74, 0.12), transparent 28rem),
    #eef0ea;
}

.intelligent-display-hero h1 {
  max-width: 15ch;
}

.technology-layer-grid,
.intelligent-product-grid,
.concept-idea-grid,
.technology-delivery-grid,
.intelligent-package-grid {
  display: grid;
  gap: 1rem;
}

.technology-layer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.technology-layer {
  background: #1f292c;
  border-radius: 8px;
  color: #fff;
  min-width: 0;
  padding: 1.25rem;
}

.technology-layer span,
.technology-delivery-grid span,
.technology-home-capabilities span {
  color: #f1b37b;
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.technology-layer h3,
.technology-delivery-grid h3 {
  font-size: 1.08rem;
  margin-bottom: 0.65rem;
}

.technology-layer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin: 0;
}

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

.intelligent-product-card figure {
  margin: 0;
}

.intelligent-product-card figure figcaption {
  background: #f3f4f1;
  margin: 0;
  padding: 0.45rem 0.75rem;
}

.interaction-definition {
  border-top: 1px solid var(--line);
  margin: 1.1rem 0;
  padding-top: 1rem;
}

.interaction-definition dt {
  color: var(--coral);
}

.interaction-definition dd {
  color: var(--muted-ink);
  font-size: 0.92rem;
}

.flagship-band {
  background: #1f292c;
  color: #fff;
}

.flagship-band .section-copy p,
.flagship-band .representative-figure figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.2rem;
}

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

.concept-idea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 1.25rem;
}

.concept-idea h3 {
  font-size: 1.1rem;
}

.concept-idea p {
  color: var(--muted-ink);
}

.concept-boundary {
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  margin: 1rem 0 0;
  padding-top: 0.85rem;
}

.technology-delivery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.technology-delivery-grid article {
  border-top: 3px solid var(--coral);
  padding: 1.25rem 0.5rem 0;
}

.technology-delivery-grid p {
  color: var(--muted-ink);
  margin: 0;
}

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

.intelligent-package-grid .feature-card {
  display: flex;
  flex-direction: column;
}

.custom-quote {
  align-self: flex-start;
  background: #1f292c;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: auto;
  padding: 0.4rem 0.75rem;
  text-transform: uppercase;
}

.safety-principles {
  display: grid;
  gap: 0;
}

.safety-principles article {
  border-bottom: 1px solid var(--line);
  padding: 0 0 1rem;
}

.safety-principles article + article {
  padding-top: 1rem;
}

.safety-principles h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.safety-principles p {
  color: var(--muted-ink);
  margin: 0;
}

.intelligent-cta-band {
  background: linear-gradient(135deg, #e8ded3, #eef0ea);
}

.technology-home-band {
  background: #f6f3ee;
}

.technology-home-capabilities {
  display: grid;
  gap: 0.85rem;
}

.technology-home-capabilities article {
  background: #1f292c;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  color: #fff;
  padding: 1.1rem 1.25rem;
}

.technology-home-capabilities span {
  margin-bottom: 0.35rem;
}

.technology-home-capabilities strong {
  display: block;
  font-size: 0.98rem;
}

.technology-service-band {
  background: #f6f3ee;
}

.technology-system-map {
  background: #1f292c;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(24, 32, 37, 0.16);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.technology-system-map article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.3rem;
}

.technology-system-map article:last-child {
  border-bottom: 0;
}

.technology-system-map span {
  color: #f1b37b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technology-system-map strong {
  color: #fff;
  font-size: 0.98rem;
}

.technology-fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.technology-fieldset legend {
  float: none;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  width: auto;
}

.technology-checkbox-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.technology-checkbox {
  align-items: start;
  background: #f6f6f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  gap: 0.6rem;
  min-width: 0;
  padding: 0.8rem;
}

.technology-checkbox:has(input:checked) {
  background: #fff2e9;
  border-color: var(--coral);
}

.technology-checkbox input {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.technology-detail-fields {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.technology-inquiry-detail {
  border-left: 4px solid var(--coral);
}

@media (max-width: 900px) {
  .navbar .container {
    position: relative;
  }

  .navbar-toggler {
    display: inline-flex !important;
  }

  .navbar-collapse {
    display: none !important;
    flex-basis: 100%;
    margin-top: 1rem;
    overflow: visible;
    width: 100%;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .navbar-collapse .navbar-nav {
    align-items: stretch !important;
    flex-direction: column;
    gap: 0.1rem;
    padding-bottom: 0.5rem;
    white-space: normal;
  }

  .navbar-collapse .nav-link {
    padding: 0.55rem 0;
  }

  .split-layout,
  .auth-shell,
  .feature-grid,
  .featured-case-grid,
  .industry-grid,
  .service-grid,
  .portfolio-grid,
  .detail-grid,
  .case-grid,
  .case-workflow-gallery,
  .case-stage-layout,
  .industry-detail-hero-grid,
  .industry-story-grid,
  .buildability-panel,
  .material-grid,
  .package-grid,
  .checklist-grid,
  .process-strip,
  .form-grid,
  .technology-layer-grid,
  .intelligent-product-grid,
  .concept-idea-grid,
  .technology-delivery-grid,
  .intelligent-package-grid,
  .technology-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-hero {
    padding-top: 2.5rem;
  }

  .auth-page {
    align-items: start;
    min-height: 0;
    padding: 3rem 0;
  }

  .auth-shell {
    gap: 1.5rem;
  }

  .auth-shell .auth-panel {
    order: -1;
  }

  .auth-context h1,
  .auth-panel h1 {
    font-size: 2rem;
    line-height: 1.08;
    max-width: 18ch;
  }

  .auth-panel h2 {
    font-size: 1.65rem;
  }

  .auth-panel {
    padding: 1.35rem;
  }

  .auth-links,
  .auth-links-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-links .btn {
    text-align: center;
    width: 100%;
  }

  .industry-detail-hero h1 {
    font-size: 2rem;
    max-width: none;
  }

  .industry-detail-hero-grid > div {
    padding-bottom: 0;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

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

  .journey-step:last-child {
    grid-column: 1 / -1;
  }

  .project-format-grid {
    grid-template-columns: 1fr;
  }

  .case-stage-band {
    padding: 3rem 0;
  }

  .case-stage-band.reverse .case-stage-media {
    order: 0;
  }

  .case-stage-copy h2 {
    font-size: 1.55rem;
  }

  .hero-band {
    min-height: auto;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 15, 18, 0.9), rgba(8, 15, 18, 0.82));
  }

  .hero-content {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding-top: 5.5rem;
    padding-bottom: 2.75rem;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 0.98;
    max-width: 9ch;
    white-space: normal;
  }

  .hero-tagline {
    font-size: 1.2rem;
    max-width: 27ch;
  }

  .page-heading h1 {
    font-size: 1.9rem;
    line-height: 1.08;
    max-width: 15ch;
    white-space: normal;
  }

  .hero-content .lead {
    font-size: 1rem;
    max-width: 32ch;
  }

  .page-heading p {
    font-size: 1rem;
    max-width: 34ch;
  }

  .section-copy h2 {
    font-size: 1.55rem;
    line-height: 1.18;
    max-width: 20ch;
  }

  .hero-actions {
    max-width: 32ch;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    text-align: center;
    width: 100%;
  }

  .page-actions .btn {
    flex: 1 1 100%;
    text-align: center;
    width: 100%;
  }

  .section-image {
    max-height: none;
  }

  .section-band,
  .page-heading {
    padding: 3rem 0;
  }

  .card-body {
    padding: 1.1rem;
  }

  .stacked-form {
    padding: 1.1rem;
  }

  .card-body p {
    max-width: 33ch;
  }

  .form-note {
    max-width: 32ch;
  }

  .faq-list h2 {
    font-size: 1.45rem;
    line-height: 1.16;
    max-width: 20ch;
    overflow-wrap: break-word;
  }

  .faq-list p,
  .text-flow p {
    max-width: 33ch;
  }

  .footer-grid {
    flex-direction: column;
  }

  .download-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-overlay,
  .hero-band::before,
  .hero-band::after {
    animation: none !important;
    transform: none !important;
  }

  .hero-band::before,
  .hero-band::after {
    opacity: 0;
  }
}
