﻿:root {
  --bg: #f4efe6;
  --bg-soft: #efe7da;
  --ink: #1b2430;
  --muted: #586373;
  --line: rgba(27, 36, 48, 0.1);
  --surface: rgba(255, 250, 243, 0.9);
  --surface-strong: #fffaf3;
  --accent: #a7552d;
  --accent-deep: #7f3e1e;
  --shadow: 0 20px 50px rgba(20, 28, 37, 0.1);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167, 85, 45, 0.09), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, #f3ede3 52%, #f7f2ea 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

.shell,
.band-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 237, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.nav-shell {
  width: min(calc(100% - 12px), 1460px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: -10px;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 0;
}

.brand-title {
  display: block;
  font-size: 2.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links,
.hero-actions,
.story-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  color: var(--muted);
  font-size: 0.96rem;
  gap: 26px;
}

.nav-links a {
  white-space: nowrap;
  padding: 6px 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 320px;
  max-width: 320px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(27, 36, 48, 0.1);
  background: rgba(255, 250, 243, 0.88);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  padding: 0 6px;
}

.header-search input::placeholder {
  color: #758091;
}

.header-search button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fffdf8;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: #fffdf8;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(167, 85, 45, 0.24);
}

.button-light {
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
}

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

main {
  padding: 0 0 56px;
}

.hero-showcase {
  position: relative;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #17212b;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-showcase .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.about-hero-showcase .hero-slide img {
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.88) 0%, rgba(16, 24, 32, 0.58) 42%, rgba(16, 24, 32, 0.16) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.08) 0%, rgba(16, 24, 32, 0.4) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fffdf8;
}

.hero-dots {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.18);
}

.hero-dots span:nth-child(1) {
  animation: heroDot 24s infinite;
}

.hero-dots span:nth-child(2) {
  animation: heroDot 24s infinite 6s;
}

.hero-dots span:nth-child(3) {
  animation: heroDot 24s infinite 12s;
}

.hero-dots span:nth-child(4) {
  animation: heroDot 24s infinite 18s;
}

.blog-feature {
  position: relative;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #17212b;
}

.blog-feature-slides {
  position: absolute;
  inset: 0;
}

.blog-feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.blog-feature-slide:nth-child(2) {
  animation-delay: 6s;
}

.blog-feature-slide:nth-child(3) {
  animation-delay: 12s;
}

.blog-feature-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.58) 48%, rgba(16, 24, 32, 0.24) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.08) 0%, rgba(16, 24, 32, 0.44) 100%);
}

.blog-feature-overlay {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.blog-feature-shell {
  display: flex;
  align-items: center;
  min-height: 680px;
}

.blog-feature-copy {
  width: min(100%, 780px);
  padding: 84px 0;
  color: #fffdf8;
}

.blog-feature-copy h1 {
  max-width: 14ch;
}

.blog-feature-links {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.blog-feature-link {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.12);
  border: 1px solid rgba(255, 250, 243, 0.16);
  backdrop-filter: blur(6px);
}

.blog-feature-link strong {
  font-size: 1.06rem;
  line-height: 1.55;
}

.blog-feature-link span {
  color: rgba(255, 253, 248, 0.8);
  line-height: 1.7;
}

.blog-list-band {
  background: linear-gradient(180deg, #f7f2ea 0%, #efe5d7 100%);
}

.blog-list {
  display: grid;
  gap: 22px;
}

.blog-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.blog-row-image {
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9cfbf;
}

.blog-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-row-copy {
  display: grid;
  align-content: center;
}

.blog-row-copy h3 {
  margin-top: 14px;
}

.blog-row-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.article-hero {
  padding: 74px 0 34px;
  background: linear-gradient(180deg, #f4efe6 0%, #efe5d7 100%);
}

.article-hero-shell {
  width: min(calc(100% - 40px), 1320px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-hero h1 {
  max-width: 24ch;
  margin-top: 18px;
  margin-left: 0;
  text-wrap: balance;
}

.article-intro {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.98rem;
}

.article-band {
  padding-top: 28px;
  background: linear-gradient(180deg, #efe5d7 0%, #f7f2ea 100%);
}

.article-shell {
  width: min(calc(100% - 40px), 1320px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

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

.article-main h2 {
  margin-top: 42px;
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.article-main h3 {
  margin-top: 28px;
  font-size: 1.38rem;
}

.article-main p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.98rem;
}

.article-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.98rem;
}

.article-list li + li {
  margin-top: 8px;
}

.article-figure {
  margin: 20px 0 0;
}

.article-figure-hero {
  margin-top: 10px;
}

.article-figure img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 18px 40px rgba(20, 28, 37, 0.08);
  background: rgba(255, 250, 243, 0.96);
}

.article-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 76ch;
}

.article-gallery {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

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

.article-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.article-side-card {
  padding: 22px 22px 24px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.article-side-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.article-side-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.article-side-list li + li {
  margin-top: 8px;
}

.hero-panel-copy {
  width: min(100%, 760px);
  padding: 84px 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 14px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.42rem;
}

.lede,
.section-copy,
.panel-copy p,
.sector-card span,
.sales-lines,
.footer-note {
  line-height: 1.82;
  color: var(--muted);
}

.hero-panel-copy .lede {
  max-width: 62ch;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 28px;
}

.eyebrow,
.card-label,
.sales-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow {
  padding: 8px 14px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(255, 250, 243, 0.18);
  color: var(--muted);
}

.band {
  width: 100%;
  padding: 68px 0;
}

.intro-band {
  padding-bottom: 28px;
  background: linear-gradient(180deg, #f4efe6 0%, #f7f2ea 100%);
}

.about-hero {
  background: linear-gradient(180deg, #f4efe6 0%, #efe6d8 100%);
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}

.intro-copy h2 {
  max-width: 16ch;
}

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

.intro-text .section-copy {
  margin: 0;
  max-width: none;
}

.about-hero-layout,
.about-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.about-hero-copy {
  padding: 12px 0;
}

.about-hero-copy .lede {
  max-width: 66ch;
  margin-top: 18px;
}

.about-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-hero-points span {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(27, 36, 48, 0.08);
  color: var(--ink);
  line-height: 1.55;
}

.about-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.14);
  border: 1px solid rgba(255, 250, 243, 0.22);
  color: rgba(255, 253, 248, 0.92);
  line-height: 1.45;
  backdrop-filter: blur(6px);
}

.about-hero-image,
.about-capability-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.about-hero-stack {
  display: grid;
  gap: 18px;
}

.about-hero-photo {
  overflow: hidden;
  border-radius: 26px;
  background: #fffaf3;
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.about-hero-photo.large {
  min-height: 300px;
}

.about-hero-photo.small {
  min-height: 170px;
  margin-left: 58px;
}

.about-hero-photo img,
.about-capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats-band {
  padding-top: 0;
  background: #f7f2ea;
}

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

.about-stat,
.about-profile-card,
.about-support-card,
.about-milestone {
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.about-stat {
  padding: 26px 24px;
}

.about-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
}

.about-stat span {
  color: var(--muted);
  line-height: 1.65;
}

.about-profile-band {
  padding-top: 22px;
  background: linear-gradient(180deg, #f7f2ea 0%, #efe6d8 100%);
}

.resource-band {
  background: linear-gradient(180deg, #f7f2ea 0%, #eee3d3 100%);
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.contact-intro-band {
  background: linear-gradient(180deg, #f4efe6 0%, #efe6d8 100%);
}

.section-head.contact-intro-head {
  display: block;
  margin-bottom: 40px;
  max-width: 1120px;
}

.contact-intro-head h1 {
  max-width: 15ch;
  margin: 0;
}

.section-head.contact-intro-head .section-copy {
  margin-top: 18px;
  max-width: 68ch;
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form-card,
.contact-guide-card {
  padding: 30px 30px 34px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.contact-card p,
.contact-guide-card p,
.contact-form-note {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-stack {
  display: grid;
  gap: 22px;
}

.contact-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.contact-mini-list span,
.contact-mini-list a {
  line-height: 1.75;
}

.contact-guide-link {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(247, 242, 234, 0.96);
  border: 1px solid rgba(27, 36, 48, 0.08);
}

.contact-guide-link strong {
  font-size: 1.12rem;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

.field-group label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(27, 36, 48, 0.12);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.field-group textarea {
  min-height: 170px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 0;
  border-color: rgba(167, 85, 45, 0.48);
  box-shadow: 0 0 0 4px rgba(167, 85, 45, 0.08);
}

.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.contact-submit-row .button {
  border: 0;
  cursor: pointer;
}

.contact-support-band {
  background: linear-gradient(180deg, #f7f2ea 0%, #eee3d3 100%);
}

.resource-card {
  padding: 30px 30px 34px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.resource-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.resource-card-soft {
  background: rgba(247, 242, 234, 0.96);
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.about-profile-card,
.about-support-card {
  padding: 28px 28px 32px;
}

.about-profile-card p + p {
  margin-top: 16px;
}

.about-capability-band {
  background: #ded4c4;
}

.about-capability-copy .section-copy {
  margin-top: 18px;
}

.about-milestones-band {
  background: linear-gradient(180deg, #f4efe6 0%, #f8f3eb 100%);
}

.about-milestones-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.about-milestone {
  padding: 24px 20px 26px;
}

.about-milestone strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.about-milestone span {
  color: var(--muted);
  line-height: 1.7;
}

.about-quality-band {
  background: linear-gradient(180deg, #f8f3eb 0%, #f1e7d7 100%);
}

.detail-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-list li + li {
  margin-top: 8px;
}

.products-band {
  background: #ece3d4;
}

.sectors-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(245, 238, 228, 0.92));
}

.insights-band {
  background: #ded4c4;
}

.capability-band {
  background: #ded4c4;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: stretch;
}

.process-band {
  background:
    linear-gradient(135deg, #f3ecdf 0%, #ece2d1 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head.wide {
  align-items: start;
}

.section-head .section-copy {
  max-width: 56ch;
  margin: 0;
  font-size: 1.02rem;
}

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

.product-panel,
.sales-band {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-panel {
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.07);
}

.panel-image {
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fffaf3;
}

.panel-image img,
.capability-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-product-panels .panel-image {
  padding: 12px;
  background: #fff;
}

.home-product-panels .panel-image img {
  object-fit: contain;
}

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

.insight-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 28px 28px 32px;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
  color: inherit;
  text-decoration: none;
}

.insight-card span {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(167, 85, 45, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-card h3 {
  max-width: 14ch;
}

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

.panel-copy {
  padding: 26px 26px 30px;
}

.product-panel .card-label,
.related-product-copy .card-label {
  display: none;
}

.card-label {
  padding: 7px 12px;
  background: rgba(167, 85, 45, 0.1);
  color: var(--accent-deep);
}

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

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

.product-page-grid .sector-card {
  height: 100%;
}

.sector-card {
  min-height: 196px;
  padding: 30px 26px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 14px 32px rgba(20, 28, 37, 0.08);
}

.sector-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.04rem;
}

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

.industry-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 18px 40px rgba(20, 28, 37, 0.08);
}

.industry-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  min-height: 320px;
}

.industry-card-image {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #fffdf8;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.industry-card-copy {
  display: grid;
  align-content: center;
  padding: 30px 30px 32px;
}

.industry-card-copy > span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(167, 85, 45, 0.11);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-card-copy h3 {
  font-size: 1.5rem;
  line-height: 1.18;
}

.industry-card-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.industry-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  width: fit-content;
  margin-top: 20px;
  color: var(--accent-deep);
  font-weight: 800;
  border-bottom: 2px solid rgba(167, 85, 45, 0.28);
}

.industry-capability-visual img {
  object-fit: cover;
}

.capability-visual {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.capability-copy {
  padding: 30px 4px 30px 0;
}

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

.process-list span {
  display: block;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(27, 36, 48, 0.07);
  line-height: 1.6;
}

.process-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.process-panel {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(27, 36, 48, 0.08);
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 18px 38px rgba(20, 28, 37, 0.08);
}

.process-image {
  aspect-ratio: 16 / 9;
  background: #d9cfbf;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-copy {
  padding: 26px 26px 30px;
}

.process-copy h3 {
  margin-bottom: 14px;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.sales-band-wrap {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.42), rgba(244, 239, 230, 0.78));
}

.sales-band-shell {
  width: min(calc(100% - 20px), 1460px);
  padding: 56px 0 68px;
}

.sales-head {
  margin-bottom: 24px;
}

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

.sales-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 30px 32px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 18px 40px rgba(20, 28, 37, 0.08);
}

.sales-card h3 {
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.sales-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.sales-poster-card {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 18px 40px rgba(20, 28, 37, 0.08);
}

.sales-poster-card img {
  width: 100%;
  height: 100%;
  display: block;
}

.sales-pill {
  width: fit-content;
  padding: 8px 15px;
  background: rgba(167, 85, 45, 0.1);
  color: var(--accent-deep);
}

.sales-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: #4f6072;
  line-height: 1.7;
}

.site-footer {
  background: #212a35;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-shell {
  width: min(calc(100% - 32px), 1460px);
  margin: 0 auto;
  padding: 58px 0 54px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: start;
  gap: 34px;
}

.site-footer-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #fffdf8;
}

.site-footer-copy {
  margin-top: 16px;
  color: rgba(233, 238, 245, 0.74);
  line-height: 1.8;
}

.site-footer-column-title {
  margin: 4px 0 20px;
  color: #fffdf8;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-column-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 240px;
  height: 3px;
  margin-top: 12px;
  background: var(--accent);
}

.site-footer-list {
  display: grid;
  gap: 14px;
  color: rgba(233, 238, 245, 0.8);
}

.site-footer-list a,
.site-footer-list span {
  line-height: 1.7;
}

.site-footer-tag {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-detail-hero {
  padding: 74px 0 34px;
  background: linear-gradient(180deg, #f4efe6 0%, #efe5d7 100%);
}

.product-detail-shell {
  width: min(calc(100% - 40px), 1320px);
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-detail-intro {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.98rem;
}

.product-detail-band {
  padding-top: 28px;
  background: linear-gradient(180deg, #efe5d7 0%, #f7f2ea 100%);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.product-detail-main {
  min-width: 0;
}

.product-detail-main h2 {
  margin-top: 42px;
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.product-detail-main h3 {
  margin-top: 28px;
  font-size: 1.38rem;
}

.product-detail-main p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.98rem;
}

.product-detail-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.spec-card {
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.spec-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--ink);
}

.spec-card span {
  color: var(--muted);
  line-height: 1.7;
}

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

.related-product-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.related-product-image {
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #fffdf8;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.related-product-copy {
  padding: 22px 22px 24px;
}

.related-product-copy h3 {
  margin-top: 12px;
  font-size: 1.18rem;
}

.related-product-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.rfq-panel {
  margin-top: 24px;
  padding: 28px 28px 32px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(27, 36, 48, 0.08);
  box-shadow: 0 16px 34px rgba(20, 28, 37, 0.08);
}

.rfq-panel p {
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 12px 0;
  }

  .product-panels,
  .process-panels,
  .sales-grid,
  .sales-poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sector-strip,
  .industry-card-grid,
  .product-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-row {
    grid-template-columns: 260px minmax(0, 1fr);
  }

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

  .nav-links {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-search {
    order: 2;
    flex: 1 1 320px;
    max-width: 420px;
    margin-left: auto;
  }
}

@media (max-width: 920px) {
  .intro-layout,
  .intro-text,
  .about-hero-layout,
  .about-capability-layout,
  .contact-intro-grid,
  .capability-layout,
  .about-profile-grid,
  .about-support-grid,
  .resource-grid,
  .product-panels,
  .process-panels,
  .insights-grid,
  .sales-grid,
  .sales-poster-grid,
  .about-milestones-grid,
  .about-stats-grid,
  .process-list,
  .sector-strip,
  .industry-card-grid,
  .product-page-grid,
  .article-layout,
  .article-gallery-three,
  .product-detail-layout,
  .spec-grid,
  .related-products-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-points {
    grid-template-columns: 1fr;
  }

  .about-hero-photo.small {
    margin-left: 0;
  }

  .industry-card,
  .industry-card-wide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .industry-card-image {
    min-height: 260px;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }

  .blog-row-image {
    min-height: 240px;
  }

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

  .capability-visual {
    min-height: 360px;
  }

  .article-side {
    position: static;
  }

  .product-detail-side {
    position: static;
  }

  .site-footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 38px 0 34px;
  }

  .site-footer-column-title::after {
    max-width: 180px;
  }

  .header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .shell,
  .band-shell {
    width: min(calc(100% - 24px), var(--content));
  }

  .nav-links,
  .hero-actions,
  .process-actions {
    flex-wrap: wrap;
  }

  .hero-showcase,
  .hero-overlay,
  .blog-feature,
  .blog-feature-overlay,
  .blog-feature-shell {
    min-height: 600px;
  }

  .hero-panel-copy {
    padding: 72px 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .band {
    padding: 52px 0;
  }

  .brand {
    margin-left: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
    border-radius: 0;
  }

  .brand-title {
    font-size: 1.65rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .sales-band-shell {
    padding: 52px 0 58px;
  }

  .site-footer-shell {
    grid-template-columns: 1fr;
  }
}

@keyframes heroFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  23% { opacity: 1; }
  28% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroDot {
  0% { background: rgba(255, 253, 248, 0.3); transform: scale(1); }
  5% { background: rgba(255, 253, 248, 0.96); transform: scale(1.05); }
  23% { background: rgba(255, 253, 248, 0.96); transform: scale(1.05); }
  28% { background: rgba(255, 253, 248, 0.3); transform: scale(1); }
  100% { background: rgba(255, 253, 248, 0.3); transform: scale(1); }
}

