:root {
  color-scheme: light;
  --graphite: #20262c;
  --ink: #151a1f;
  --muted: #65717d;
  --line: #dfe5e9;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --navy: #0b376d;
  --teal: #149a8b;
  --teal-dark: #0c7067;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --warm: #c28f4a;
  --shadow: 0 18px 50px rgba(13, 31, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#results {
  scroll-margin-top: 88px;
}

#contact,
#inquiry {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px 44px;
  border-bottom: 1px solid rgba(223, 229, 233, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #eef3f2;
}

.login-shell {
  width: min(100%, 440px);
  padding: 24px;
}

.login-card {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(18, 24, 30, 0.1);
}

.login-card h1 {
  margin-bottom: 0;
  font-size: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #2f3a43;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}

.site-nav a.is-active {
  font-weight: 800;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.header-action,
.button.primary {
  color: #fff;
  background: var(--teal);
}

.header-action:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.icon-action {
  gap: 8px;
}

.icon-action img {
  width: 20px;
  height: 20px;
}

.button.secondary {
  color: var(--graphite);
  border-color: rgba(32, 38, 44, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--graphite);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../assets/gajune-hero.png") center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 23, 35, 0.86) 0%, rgba(11, 23, 35, 0.58) 38%, rgba(11, 23, 35, 0.08) 78%),
    linear-gradient(0deg, rgba(11, 23, 35, 0.18), rgba(11, 23, 35, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(670px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 92px 0 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ce1d7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: 2.4rem;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
}

.page-hero {
  padding: 92px max(20px, calc((100vw - 1180px) / 2)) 70px;
  background:
    linear-gradient(90deg, rgba(11, 55, 109, 0.94), rgba(20, 154, 139, 0.72)),
    url("../assets/gajune-hero.png") center / cover no-repeat;
  color: #fff;
}

.blog-hero {
  padding-bottom: 92px;
}

.media-hero {
  width: 100%;
  min-height: clamp(280px, 32vw, 520px);
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(42px, 6vw, 74px) max(20px, calc((100vw - 1180px) / 2));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-media-hero {
  background-image: url("../assets/blog_header_no_text.jpg");
}

.projects-media-hero {
  background-image: url("../assets/project_header_no_text.png");
}

.product-media-hero {
  background-image: url("../assets/product_header_background_v2.jpg");
}

.about-media-hero {
  background-image:
    linear-gradient(90deg, rgba(12, 18, 24, 0.58) 0%, rgba(12, 18, 24, 0.28) 34%, rgba(12, 18, 24, 0.04) 74%),
    url("../assets/about/hero.webp");
}

.media-hero-copy {
  max-width: 360px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.media-hero-copy h1 {
  margin-bottom: 16px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 4.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.media-hero-tagline {
  margin-bottom: 22px;
  color: inherit;
  font-size: clamp(1.1rem, 1.5vw, 1.48rem);
  line-height: 1.35;
}

.media-hero-line {
  display: block;
  width: 48px;
  height: 2px;
  margin-bottom: 22px;
  background: currentColor;
}

.media-hero-description {
  max-width: 330px;
  margin-bottom: 0;
  color: inherit;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.55;
}

.blog-media-hero .media-hero-copy {
  color: #f8f4ee;
}

.product-hero-copy {
  max-width: 520px;
}

.product-hero-copy .media-hero-tagline {
  max-width: 360px;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 32px;
}

.hero-search input[type="search"] {
  min-height: 52px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 3.2rem;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:last-child,
.compact-heading p:last-child {
  color: var(--muted);
}

.compact-heading {
  display: block;
  max-width: 720px;
}

.product-band {
  background: #fff;
}

.product-catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.product-category-sidebar {
  position: sticky;
  top: 98px;
}

.category-nav {
  border-top: 1px solid rgba(18, 24, 30, 0.14);
}

.category-nav-title {
  margin: 18px 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-nav-all,
.category-nav-parent,
.category-nav-children a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  color: #333d46;
  border-radius: 4px;
}

.category-nav-all {
  margin-bottom: 12px;
  border: 1px solid rgba(18, 24, 30, 0.12);
  font-weight: 900;
}

.category-nav-list {
  display: grid;
  border-top: 1px solid rgba(18, 24, 30, 0.1);
}

.category-nav-group {
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(18, 24, 30, 0.1);
}

.category-nav-parent-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-nav-parent {
  position: relative;
  flex: 1;
  font-weight: 900;
}

.category-nav-toggle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(18, 24, 30, 0.12);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.category-nav-toggle::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-nav-group.is-open .category-nav-toggle::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.category-nav-toggle:hover {
  border-color: rgba(20, 154, 139, 0.35);
  background: rgba(20, 154, 139, 0.08);
}

.category-nav-toggle:hover::before {
  border-color: var(--teal-dark);
}

.category-nav-children {
  display: none;
  gap: 2px;
  margin-top: 4px;
  padding-left: 16px;
}

.category-nav-group.is-open .category-nav-children {
  display: grid;
}

.category-nav-children a {
  min-height: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-nav-all.is-active,
.category-nav-parent.is-active,
.category-nav-children a.is-active,
.category-nav a:hover {
  color: var(--teal-dark);
  background: rgba(20, 154, 139, 0.08);
}

.category-nav-parent.is-active,
.category-nav-children a.is-active {
  box-shadow: inset 3px 0 0 var(--teal);
}

.product-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(18, 24, 30, 0.12);
}

.product-results-head h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.product-results-head p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}

.product-results-head span {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 11px;
  color: #2f3a43;
  border: 1px solid rgba(18, 24, 30, 0.14);
  border-radius: 999px;
  background: #fbfcfc;
  font-size: 0.82rem;
  font-weight: 900;
}

.product-results .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.listing-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 24px;
}

.listing-search input[type="search"] {
  min-height: 46px;
  border-color: rgba(18, 24, 30, 0.14);
  background: #fbfcfc;
}

.listing-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 24, 30, 0.12);
}

.listing-results-head span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.listing-results-head a {
  color: var(--teal-dark);
  font-weight: 900;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.product-page-numbers {
  display: flex;
  gap: 8px;
}

.product-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 24, 30, 0.14);
  border-radius: 4px;
  color: #303943;
  background: #fff;
  font-weight: 900;
}

.product-pagination a:hover,
.product-pagination a.is-active {
  color: var(--teal-dark);
  border-color: rgba(20, 154, 139, 0.35);
  background: rgba(20, 154, 139, 0.08);
}

.product-pagination a.is-disabled {
  pointer-events: none;
  opacity: 0.42;
}

.category-grid,
.product-grid,
.reason-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.product-card,
.reason-grid article,
.blog-card,
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.category-card {
  min-height: 230px;
  padding: 24px;
}

.category-card h3,
.product-card h3,
.blog-card h3,
.project-card h3 {
  margin-bottom: 8px;
}

.category-card p,
.product-card p,
.blog-card p,
.project-card p,
.reason-grid p {
  color: var(--muted);
}

.subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.subcategories span,
.subcategories a,
.solution-list span,
.quality-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(20, 154, 139, 0.22);
  border-radius: 6px;
  color: var(--teal-dark);
  background: rgba(20, 154, 139, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.subcategory-tabs {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.category-tabs a {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--graphite);
  font-weight: 800;
}

.category-tabs a.is-active,
.category-tabs a:hover {
  border-color: rgba(20, 154, 139, 0.35);
  color: var(--teal-dark);
  background: rgba(20, 154, 139, 0.08);
}

.light-section {
  background: var(--mist);
}

.product-card {
  overflow: hidden;
}

.product-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.listing-image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.listing-thumb,
.product-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f3f6f6;
  transition: transform 220ms ease;
}

.listing-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.listing-image-link:hover .listing-thumb,
.product-image-link:hover .listing-thumb,
.product-image-link:hover .product-image {
  transform: scale(1.018);
}

.product-image {
  transition: transform 220ms ease;
}

.product-title-link:hover h3 {
  color: var(--teal-dark);
}

.product-card-body {
  padding: 20px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal-dark);
  font-weight: 800;
}

.solution-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  background: #f9fbfb;
}

.solution-copy p {
  color: var(--muted);
}

.solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-section {
  background: #fff;
}

.reason-grid article {
  min-height: 180px;
  padding: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
  background: #f7f3ec;
}

.split-section p {
  color: #5e554b;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  min-height: 170px;
}

.listing-card-body {
  padding: 20px;
}

.quality-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--graphite);
  color: #fff;
}

.quality-section h2 {
  color: #fff;
}

.quality-section p {
  color: rgba(255, 255, 255, 0.78);
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
}

.about-copy p {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stats-grid div {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.55rem;
}

.stats-grid span {
  color: var(--muted);
}

.blog-card {
  min-height: 190px;
  padding: 24px;
}

.inquiry-band {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
  background: #0b376d;
  color: #fff;
}

.inquiry-band h2 {
  color: #fff;
}

.inquiry-band p {
  color: rgba(255, 255, 255, 0.78);
}

.inquiry-form,
.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-image-field {
  display: grid;
  gap: 10px;
}

.category-image-field p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.category-image-preview {
  display: grid;
  place-items: center;
  min-height: 158px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.category-image-preview img {
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
}

.category-image-preview span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.visually-hidden-file {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

label {
  position: relative;
  display: grid;
  gap: 7px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

label.required-field {
  padding-left: 12px;
}

label.required-field::before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0;
  color: #d83535;
  font-size: 1rem;
  line-height: 1;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #9ee7dd;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 56px max(20px, calc((100vw - 1180px) / 2));
  color: #c8d0d8;
  background: #151a1f;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  color: #fff;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: #c8d0d8;
}

.site-footer a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--whatsapp);
  background: transparent;
  box-shadow: none;
  font-weight: 900;
}

.whatsapp-float img {
  width: 46px;
  height: 46px;
}

.back-to-top-float {
  position: fixed;
  right: 27px;
  bottom: 92px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #172127;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 244, 0.9));
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.back-to-top-float::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.back-to-top-float:hover {
  color: var(--teal-dark);
  border-color: rgba(20, 154, 139, 0.32);
  box-shadow: 0 20px 52px rgba(16, 24, 32, 0.2), 0 0 0 5px rgba(20, 154, 139, 0.08);
}

.back-to-top-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.detail-page {
  padding: 0;
  background: #fff;
}

.detail-hero {
  padding: 86px max(20px, calc((100vw - 1180px) / 2)) 52px;
  background: var(--mist);
}

.detail-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: 3.1rem;
}

.detail-hero p {
  max-width: 720px;
  color: var(--muted);
}

.product-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-search-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.product-search-primary input[type="search"] {
  min-height: 46px;
  border-color: rgba(18, 24, 30, 0.14);
  background: #fbfcfc;
}

.advanced-product-search {
  border-top: 1px solid rgba(18, 24, 30, 0.1);
}

.advanced-product-search summary {
  width: max-content;
  padding: 12px 0 4px;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.advanced-product-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(18, 24, 30, 0.12);
  border-radius: 8px;
  background: #f7f9f9;
}

.advanced-product-search-grid label {
  display: grid;
  gap: 7px;
  color: #4a5760;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.advanced-product-search-grid select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(18, 24, 30, 0.14);
  border-radius: 4px;
  background: #fff;
  color: var(--graphite);
  font: inherit;
  text-transform: none;
}

.product-filter-flags,
.product-filter-actions {
  display: flex;
  align-items: start;
  gap: 16px;
}

.product-filter-flags label {
  display: flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 7px;
  text-transform: none;
}

.product-filter-actions {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 24, 30, 0.1);
}

.product-filter-actions .button { min-width: 132px; }
.product-filter-reset { color: var(--graphite); }

.article-hero {
  display: grid;
  justify-items: center;
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(36px, 4vw, 58px);
  text-align: center;
}

.article-hero.has-hero-image {
  padding-bottom: clamp(22px, 3vw, 38px);
}

.article-hero.no-hero-image {
  padding-bottom: clamp(44px, 5vw, 72px);
}

.article-hero h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.article-hero > p:not(.eyebrow) {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-hero-image {
  width: min(920px, 100%);
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  margin-top: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(18, 24, 30, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(18, 24, 30, 0.12);
}

.article-hero + .article-body {
  padding-top: clamp(26px, 4vw, 48px);
}

.article-hero.has-hero-image + .article-body {
  padding-top: clamp(18px, 2.5vw, 34px);
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  padding: 68px max(20px, calc((100vw - 1180px) / 2));
}

.detail-gallery {
  position: relative;
  align-self: start;
  display: grid;
  gap: 12px;
}

.product-gallery {
  align-self: start;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-areas: "thumbs main";
  gap: 14px;
}

.gallery-main {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-main-wrap {
  grid-area: main;
  position: relative;
}

.gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.gallery-thumbs-wrap {
  grid-area: thumbs;
  display: grid;
  min-height: 0;
}

.gallery-thumbs-wrap.has-controls {
  grid-template-rows: 26px minmax(0, 1fr) 26px;
  gap: 7px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  min-height: 0;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumbs-nav {
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--teal-dark);
  background: #fff;
  cursor: pointer;
  font-size: 0.72rem;
}

.gallery-thumbs-nav:hover {
  border-color: var(--teal);
  background: #eef7f6;
}

.gallery-thumbs button {
  flex: 0 0 50px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumbs button.is-active {
  border-color: var(--teal);
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-breadcrumb a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

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

.product-detail-summary {
  position: relative;
}

.product-detail-summary.is-collapsed {
  max-height: 360px;
  overflow: hidden;
}

.product-detail-summary.is-collapsed::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 82%);
}

.product-detail-more {
  margin-top: 6px;
}

.product-gallery-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-gallery-badges span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 4px;
  background: rgba(16, 92, 85, 0.9);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(18, 24, 30, 0.16);
}

.product-gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-left: 64px;
}

.product-gallery-tags a {
  border: 1px solid rgba(16, 92, 85, 0.32);
  border-radius: 999px;
  background: #f3f8f7;
  color: #0f665f;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  text-decoration: none;
}

.product-gallery-tags a:hover { background: #e2f1ef; }

@media (max-width: 720px) {
  .product-gallery-tags { padding-left: 0; }
}

.product-card-badges {
  top: 12px;
  left: 12px;
}

.product-card-badges span {
  padding: 6px 9px;
  font-size: 0.68rem;
}

.product-specification {
  margin-top: 30px;
}

.product-specification h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.customization-note {
  display: grid;
  gap: 5px;
  margin: 22px 0;
  padding: 16px;
  border-left: 3px solid var(--teal);
  background: #f4f7f7;
}

.customization-note span {
  color: var(--muted);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4, 7, 10, 0.86);
  cursor: default;
}

.image-lightbox img {
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 72px);
  object-fit: contain;
  background: #fff;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

body.is-lightbox-open {
  overflow: hidden;
}

.article-detail {
  background: var(--mist);
}

.article-body {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 84px;
  color: #3d4852;
  font-size: 1.08rem;
  background: transparent;
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 28px;
  border-radius: 8px;
}

.article-kicker {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-lead {
  margin-bottom: 28px;
  color: #25313a;
  font-size: clamp(1.15rem, 1.6vw, 1.38rem);
  line-height: 1.68;
}

.article-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 46px;
  padding: 18px;
  border: 1px solid rgba(18, 24, 30, 0.1);
  border-radius: 8px;
  background: #fff;
}

.article-toc a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  color: #25313a;
  background: #f3f7f7;
  font-weight: 800;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--teal-dark);
  background: rgba(20, 154, 139, 0.12);
}

.rich-content h2 {
  margin: 52px 0 16px;
  color: var(--graphite);
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}

.image-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 1;
  width: 54px;
  height: 84px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.image-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.image-lightbox-previous {
  left: 18px;
  border-radius: 0 8px 8px 0;
}

.image-lightbox-next {
  right: 18px;
  border-radius: 8px 0 0 8px;
}

.image-lightbox-status {
  position: fixed;
  bottom: 20px;
  left: 50%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.86rem;
  transform: translateX(-50%);
}

.rich-content > :first-child {
  margin-top: 0;
}

.rich-content h3 {
  color: var(--graphite);
}

.rich-content .rich-lead,
.rich-area .rich-lead {
  color: #26333c;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.75;
}

.rich-content .rich-note,
.rich-area .rich-note {
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  color: #35424b;
  background: rgba(20, 154, 139, 0.08);
}

.article-card-grid,
.article-number-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 30px;
}

.article-info-card,
.article-number-grid article {
  padding: 22px;
  border: 1px solid rgba(18, 24, 30, 0.1);
  border-radius: 8px;
  background: #fff;
}

.article-info-card span,
.article-number-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-info-card p,
.article-number-grid p {
  margin-bottom: 0;
}

.article-image {
  margin: 30px 0 38px;
}

.article-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.article-image figcaption {
  margin-top: 10px;
  color: #6a747c;
  font-size: 0.9rem;
}

.article-image.compact {
  margin: 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0 30px;
  border: 1px solid rgba(18, 24, 30, 0.1);
  border-radius: 8px;
  background: #fff;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.article-table th,
.article-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(18, 24, 30, 0.08);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--graphite);
  background: #eef3f2;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 26px;
  align-items: start;
  margin: 24px 0 32px;
}

.article-checklist {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.article-checklist li {
  padding: 16px 18px;
  border-left: 3px solid var(--teal);
  border-radius: 6px;
  background: #fff;
}

.article-cta {
  margin-top: 54px;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background: #101418;
}

.article-cta h3 {
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.article-cta-label {
  margin-bottom: 10px;
  color: #9de8df;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--navy);
}

.footer-cta h2 {
  margin-bottom: 8px;
  color: #fff;
}

.footer-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 20, 0.62);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 14, 20, 0.28);
}

.admin-preview-modal .modal-card {
  width: min(860px, 100%);
}

.admin-preview-content {
  padding: 34px;
}

.admin-preview-content h1 {
  margin-bottom: 14px;
  color: var(--graphite);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-preview-excerpt {
  color: var(--muted);
  font-size: 1.08rem;
}

.admin-preview-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 22px 0;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f8f8;
  color: var(--graphite);
  font-weight: 800;
  cursor: pointer;
}

.modal-close:hover { border-color: var(--teal); background: #e6f3f1; color: #075f58; }

.modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px;
}

.modal-images {
  display: grid;
  gap: 10px;
}

.modal-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--graphite);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.admin-body {
  background: var(--mist);
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  padding: 30px max(20px, calc((100vw - 1180px) / 2));
}

.admin-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.admin-nav a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.admin-content {
  display: grid;
  gap: 24px;
}

.admin-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-panel-heading {
  margin-bottom: 22px;
}

.admin-panel-heading h1,
.admin-panel-heading h2 {
  margin-bottom: 0;
}

.product-admin-form {
  margin-bottom: 28px;
}

.admin-tag-modal .modal-card {
  width: min(620px, 100%);
  overflow: hidden;
}

.admin-tag-manager {
  display: grid;
  gap: 20px;
  padding: 36px;
}

.admin-tag-manager h2,
.admin-tag-manager p { margin: 0; }

.admin-tag-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-height: 252px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7faf9;
}

.admin-tag-choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--graphite);
  font-weight: 700;
  cursor: pointer;
}

.admin-tag-choice:has(input:checked) { border-color: var(--teal); background: #e5f3f1; color: #075f58; box-shadow: inset 0 0 0 1px rgba(20, 154, 139, 0.12); }
.admin-tag-choice input { width: 15px; height: 15px; margin: 0; }
.admin-new-tag-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 10px; }
.admin-new-tag-row label { margin: 0; }
.admin-tag-actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 2px; }

@media (max-width: 560px) {
  .admin-tag-manager { padding: 28px 20px; }
  .admin-tag-options { grid-template-columns: 1fr; }
  .admin-new-tag-row { grid-template-columns: 1fr; }
}

.admin-form-section {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-form-section h2 {
  margin: 2px 0 5px;
  font-size: 1.35rem;
}

.admin-form-section p:last-child {
  margin: 0;
  color: var(--muted);
}

.admin-panel-heading.compact {
  margin-bottom: 4px;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.admin-image-preview h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.admin-image-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-image-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-image-preview-item {
  position: relative;
}

.admin-image-preview-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.admin-image-preview-item button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 11, 15, 0.72);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.admin-image-preview-item button:hover {
  background: rgba(8, 11, 15, 0.92);
}

.admin-image-actions {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  gap: 4px;
}

.admin-image-preview-item .admin-image-actions button {
  position: static;
}

[data-inquiries-table] textarea {
  display: block;
  width: 220px;
  max-width: 100%;
  margin: 8px 0;
  resize: vertical;
}

.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.toggle-row label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-row input {
  width: auto;
  min-height: auto;
}

.form-hint {
  display: block;
  margin-top: 6px;
  color: #68737b;
  font-size: 0.82rem;
  font-weight: 600;
}

.admin-file-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-file-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.admin-file-title {
  font-size: 0.9rem;
  font-weight: 800;
}

.file-picker-input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-picker-button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid #0f635e;
  border-radius: 6px;
  padding: 8px 14px;
  color: #0f635e;
  background: #eef8f6;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.file-picker-button:hover {
  background: #dff3ef;
}

.import-form textarea[data-import-content] {
  min-height: 460px;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.55;
}

.import-form > * {
  align-self: start;
}

.import-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.import-preview-panel {
  margin-top: 22px;
}

.import-preview-card {
  display: grid;
  gap: 16px;
}

.import-preview-card > img {
  width: min(100%, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #eef3f2;
}

.import-preview-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
}

.import-preview-card dt {
  color: #68737b;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.import-preview-card dd {
  margin: 2px 0 0;
  color: #172127;
  overflow-wrap: anywhere;
}

.import-preview-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  max-width: 640px;
}

.import-preview-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #eef3f2;
}

.import-selected-images {
  margin-top: 10px;
}

.import-selected-images p {
  margin: 0;
  color: #68737b;
  font-size: 0.86rem;
}

.import-selected-gallery {
  max-width: 520px;
}

.import-selected-image {
  position: relative;
}

.import-selected-image span {
  position: absolute;
  left: 6px;
  bottom: 6px;
  max-width: calc(100% - 12px);
  border-radius: 4px;
  padding: 3px 6px;
  color: #fff;
  background: rgba(15, 25, 32, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
}

.import-selected-image button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 25, 32, 0.74);
  cursor: pointer;
  font-weight: 900;
}

.import-form .form-hint {
  min-width: 0;
  overflow-wrap: anywhere;
}

.import-selected-image-actions {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  gap: 4px;
}

.import-selected-image .import-selected-image-actions button {
  position: static;
}

.import-selected-image-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-list-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 14px;
}

.admin-list-toolbar label {
  flex: 1;
  max-width: 520px;
}

.admin-list-toolbar span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.admin-pagination button {
  min-width: 36px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--graphite);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.admin-pagination button.is-active,
.admin-pagination button:hover:not(:disabled) {
  color: var(--teal-dark);
  border-color: rgba(20, 154, 139, 0.35);
  background: rgba(20, 154, 139, 0.08);
}

.admin-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--graphite);
  background: #f8fafb;
  font-size: 0.88rem;
}

td {
  color: #404a53;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.row-actions-compact {
  flex-wrap: nowrap;
}

.small-button.row-action-primary {
  color: #fff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.small-button.row-action-primary:hover {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.small-button.row-action-danger {
  color: #9f2431;
}

.small-button.row-action-danger:hover {
  color: #9f2431;
  border-color: #d69aa2;
  background: #fff5f6;
}

.admin-image-viewer[hidden] {
  display: none;
}

.admin-image-viewer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 20, 0.62);
  backdrop-filter: blur(4px);
}

.admin-image-viewer-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 14, 20, 0.28);
}

.admin-image-viewer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-image-viewer-heading h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.admin-image-viewer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.admin-image-viewer-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f6f8f8;
}

.admin-image-viewer-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.small-button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.small-button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

@media (max-width: 980px) {
  .site-header,
  .admin-header {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading,
  .solution-section,
  .split-section,
  .quality-section,
  .about-section,
  .inquiry-band,
  .detail-layout,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "thumbs";
    aspect-ratio: auto;
  }

  .gallery-thumbs-wrap,
  .gallery-thumbs-wrap.has-controls {
    grid-template-rows: 1fr;
  }

  .gallery-thumbs-wrap.has-controls .gallery-thumbs-nav {
    display: none;
  }

  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .gallery-thumbs button {
    flex-basis: 76px;
  }

  .category-grid,
  .product-grid,
  .reason-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-catalog-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-category-sidebar {
    position: static;
  }

  .category-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 116px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 80px 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section,
  .inquiry-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .page-hero h1,
  .detail-hero h1 {
    font-size: 2.2rem;
  }

  .media-hero {
    min-height: 330px;
    align-items: flex-end;
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .media-hero-copy {
    max-width: 300px;
  }

  .media-hero-copy h1 {
    font-size: 3rem;
  }

  .media-hero-description {
    font-size: 0.94rem;
  }

  .category-grid,
  .product-grid,
  .reason-grid,
  .project-grid,
  .listing-grid,
  .quality-points,
  .stats-grid,
  .blog-grid,
  .inquiry-form,
  .admin-form,
  .modal-layout,
  .site-footer,
  .admin-nav {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .category-nav-list,
  .product-results .product-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    width: min(100% - 32px, 820px);
    padding-top: 44px;
  }

  .article-toc,
  .article-card-grid,
  .article-number-grid,
  .article-split {
    grid-template-columns: 1fr;
  }

  .article-toc {
    padding: 12px;
  }

  .article-info-card,
  .article-number-grid article,
  .article-cta {
    padding: 18px;
  }

  .product-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-search {
    grid-template-columns: 1fr;
  }

  .advanced-product-search-grid {
    grid-template-columns: 1fr;
  }

  .product-filter-actions {
    justify-content: flex-start;
  }

  .hero-search,
  .admin-list-toolbar {
    grid-template-columns: 1fr;
  }

  .hero-search,
  .admin-list-toolbar {
    display: grid;
  }

  .admin-list-toolbar {
    align-items: stretch;
  }

  .admin-image-preview {
    grid-template-columns: 1fr;
  }

  .admin-image-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Modern public site refresh */
.modern-home {
  background: #fbfcfc;
}

.modern-header {
  min-height: 68px;
  border-bottom-color: rgba(18, 24, 30, 0.08);
  background: rgba(251, 252, 252, 0.9);
}

.modern-header .brand img {
  width: 124px;
}

.modern-header .site-nav {
  gap: 26px;
  color: #303943;
  font-size: 0.9rem;
}

.modern-header .site-nav a:hover {
  color: #0f1419;
  border-bottom-color: #0f1419;
}

.modern-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0f1419;
}

.modern-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.78) 0%, rgba(9, 12, 16, 0.58) 34%, rgba(9, 12, 16, 0.14) 72%),
    linear-gradient(0deg, rgba(9, 12, 16, 0.52) 0%, rgba(9, 12, 16, 0.08) 42%),
    url("../assets/gajune-home-hero.jpg") center / cover no-repeat;
}

.modern-hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 72px 0;
}

.modern-hero h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 5.4vw, 5.35rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.modern-hero .hero-subtitle {
  max-width: 650px;
  margin-bottom: 0;
  border-left: 3px solid #9de8df;
  padding-left: 12px;
  color: #9de8df;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.modern-hero .eyebrow,
.contact-footer .eyebrow {
  color: #9de8df;
}

.glass-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.glass-button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 32px;
  padding-top: 0;
  border-top: 0;
}

.hero-proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: #9de8df;
  vertical-align: 0.1em;
}

.modern-section {
  padding: 108px max(20px, calc((100vw - 1180px) / 2));
}

.modern-section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.modern-section-title h2,
.custom-system h2,
.proof-intro h2,
.quality-minimal h2,
.contact-footer h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.minimal-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.minimal-category-grid .category-card {
  min-height: 430px;
  display: grid;
  flex-direction: column;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 24, 30, 0.08);
}

.category-image-link {
  display: block;
  overflow: hidden;
  background: #e9eef0;
}

.category-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.category-image-card:hover .category-image-link img {
  transform: scale(1.04);
}

.category-card-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.category-title-link:hover h3 {
  color: var(--teal-dark);
}

.minimal-category-grid .category-card p {
  max-width: none;
  font-size: 0.92rem;
}

.minimal-category-grid .subcategories {
  margin-top: auto;
  padding-top: 18px;
}

.minimal-category-grid .subcategories a {
  min-height: 28px;
  padding: 5px 8px;
  font-size: 0.78rem;
}

.custom-system,
.proof-section,
.quality-minimal,
.contact-footer {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.custom-system {
  background: #101418;
  color: #fff;
}

.custom-system h2 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid span {
  display: block;
  margin-bottom: 68px;
  color: #9de8df;
  font-weight: 900;
}

.process-grid h3 {
  color: #fff;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.visual-band {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 108px;
  background: #101418;
  color: #fff;
}

.visual-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-band h2 {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.04;
}

.visual-band p {
  color: rgba(255, 255, 255, 0.7);
}

.quality-line {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(18, 24, 30, 0.13);
}

.minimal-points span,
.quality-line span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 24, 30, 0.13);
  color: #222a31;
  font-weight: 800;
}

.row-title {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.clean-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-product-grid .product-card,
.clean-project-grid .project-card,
.modern-home .blog-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.clean-product-grid .product-image {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.clean-product-grid .product-card-body {
  padding: 18px 0 0;
}

.clean-product-grid .button.secondary {
  background: #fff;
}

.proof-section {
  background: #fff;
  border-top: 1px solid rgba(18, 24, 30, 0.08);
}

.proof-intro {
  position: sticky;
  top: 96px;
}

.proof-intro p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 26px;
  color: #5f6b73;
  font-size: 1.02rem;
  line-height: 1.72;
}

.clean-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.clean-project-grid .project-card {
  min-height: 100%;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(18, 24, 30, 0.12);
}

.clean-project-grid .listing-image-link {
  margin-bottom: 18px;
}

.clean-project-grid .listing-thumb {
  aspect-ratio: 16 / 10;
}

.clean-project-grid .listing-card-body {
  padding: 0;
}

.quality-minimal {
  color: #101418;
  background: #eef3f2;
}

.quality-minimal > div:first-child p {
  max-width: 520px;
  color: #5f6b73;
  font-size: 1.05rem;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-cards article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(18, 24, 30, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.quality-cards span {
  color: var(--teal-dark);
  font-weight: 900;
}

.quality-cards h3 {
  margin-top: auto;
}

.quality-cards p {
  margin-bottom: 0;
  color: #68737b;
}

.contact-footer,
.inquiry-band,
.footer-cta {
  color: #fff;
  background: #080b0f;
}

.contact-footer {
  padding: 108px max(20px, calc((100vw - 1180px) / 2));
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5.4vw, 76px);
}

.contact-footer h2,
.inquiry-band h2,
.footer-cta h2 {
  color: #fff;
}

.contact-footer h2 {
  max-width: 560px;
  font-size: clamp(2.05rem, 3.2vw, 3.55rem);
  line-height: 1.05;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1rem;
  line-height: 1.72;
}

.contact-footer p,
.inquiry-band p,
.footer-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 12px;
  margin-top: 34px;
}

.contact-method {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-method > span:last-child {
  min-width: 0;
}

.contact-method:hover {
  border-color: rgba(157, 232, 223, 0.46);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-2px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-method-icon img {
  width: 28px;
  height: 28px;
}

.contact-method-whatsapp .contact-method-icon {
  background: rgba(37, 211, 102, 0.12);
}

.contact-email-icon {
  color: #9de8df;
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-method-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong,
.contact-email-stack a {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-email-stack {
  display: grid;
  gap: 3px;
}

.contact-email-stack a:hover {
  color: #9de8df;
}

.contact-form {
  padding: 0;
}

.contact-form input,
.contact-form textarea,
.inquiry-band input,
.inquiry-band textarea {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input:focus,
.contact-form textarea:focus,
.inquiry-band input:focus,
.inquiry-band textarea:focus {
  outline: 1px solid rgba(157, 232, 223, 0.8);
}

.modern-home .form-status {
  color: #9de8df;
}

.whatsapp-float {
  box-shadow: none;
}

.header-action.icon-action {
  width: max-content;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.36);
  background: #fff;
}

.header-action.icon-action:hover {
  color: var(--whatsapp-dark);
  border-color: var(--whatsapp);
  background: rgba(37, 211, 102, 0.08);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 78px;
  align-items: center;
  padding: 104px max(20px, calc((100vw - 1180px) / 2)) 70px;
  background: #fbfcfc;
}

.about-hero h1,
.about-hero h2 {
  max-width: 740px;
  color: var(--graphite);
  font-size: clamp(3.1rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-hero-copy {
  display: grid;
  gap: 24px;
  align-self: center;
}

.about-hero-copy p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.78;
}

.about-hero-points {
  display: grid;
  gap: 10px;
  max-width: 440px;
}

.about-hero-points span {
  border-left: 3px solid var(--teal);
  padding: 11px 14px;
  color: #24313a;
  background: #eef5f4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-image-section {
  position: relative;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 92px;
  background: #fbfcfc;
}

.about-image-section img {
  width: 100%;
  aspect-ratio: 16 / 6.4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 24, 30, 0.1);
}

.about-image-note {
  position: absolute;
  right: max(34px, calc((100vw - 1180px) / 2 + 26px));
  bottom: 124px;
  width: min(360px, calc(100% - 68px));
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 25, 32, 0.76);
  backdrop-filter: blur(14px);
}

.about-image-note span {
  display: block;
  margin-bottom: 8px;
  color: #9de8df;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-image-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.modern-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
  background: #f2f5f5;
}

.modern-split h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.large-copy p {
  margin-bottom: 30px;
  color: #4f5962;
  font-size: 1.2rem;
}

.minimal-points {
  display: grid;
  border-top: 1px solid rgba(18, 24, 30, 0.13);
}

.about-position-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
  background: #f2f5f5;
}

.about-position-section h2,
.about-process-section h2,
.about-responsibility-band h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-position-copy p {
  max-width: 740px;
  margin-bottom: 30px;
  color: #4f5962;
  font-size: 1.14rem;
  line-height: 1.76;
}

.about-category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-category-cloud span {
  border: 1px solid rgba(18, 24, 30, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  color: #25313a;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.about-advantage-section {
  background: #fff;
}

.about-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-advantage-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(18, 24, 30, 0.1);
  border-radius: 8px;
  background: #fbfcfc;
}

.about-advantage-grid span,
.about-process-list span {
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.about-advantage-grid h3,
.about-process-list h3 {
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 1.08rem;
}

.about-advantage-grid p,
.about-process-list p {
  margin-bottom: 0;
  color: #5a6670;
}

.about-process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 70px;
  align-items: start;
  background: #111820;
  color: #fff;
}

.about-process-section h2 {
  color: #fff;
}

.about-process-section .eyebrow {
  color: #9de8df;
}

.about-process-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-process-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-process-list h3 {
  color: #fff;
}

.about-process-list p {
  color: rgba(255, 255, 255, 0.74);
}

.about-responsibility-band {
  padding: 86px max(20px, calc((100vw - 980px) / 2));
  text-align: center;
  background: #eef3f2;
}

.about-responsibility-band h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: var(--graphite);
}

.about-responsibility-band p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #53616b;
  font-size: 1.05rem;
}

.about-company-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  grid-template-areas:
    "heading primary"
    "secondary copy";
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fbfcfc;
}

.about-company-section h2,
.about-capability-section h2,
.about-quality-section h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-company-section h2 {
  max-width: 620px;
  font-size: clamp(2.5rem, 3.5vw, 3.6rem);
}

.about-company-heading {
  grid-area: heading;
}

.about-company-copy {
  grid-area: copy;
}

.about-company-section p,
.about-capability-section .row-title > p,
.about-quality-section > div > p {
  color: #53616b;
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-company-section figure,
.about-process-section img,
.about-quality-section figure {
  margin: 0;
}

.about-company-section img,
.about-process-section img,
.about-quality-section img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 24, 30, 0.1);
}

.about-company-primary-image {
  grid-area: primary;
}

.about-company-primary-image img {
  display: block;
  aspect-ratio: 16 / 10;
}

.about-company-secondary-image {
  grid-area: secondary;
}

.about-company-secondary-image img {
  display: block;
  aspect-ratio: 1.24 / 1;
}

.about-company-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.about-company-points span {
  border-left: 3px solid var(--teal);
  padding: 10px 14px;
  color: #24313a;
  background: #eef5f4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-capability-section {
  padding-top: 104px;
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, #f7f9f9 0%, #eef3f2 100%);
}

.about-capability-section .row-title {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: end;
  max-width: none;
  margin-bottom: 46px;
}

.about-capability-section .row-title > p {
  margin-bottom: 0;
}

.about-capability-showcase {
  display: grid;
  gap: 22px;
}

.about-capability-showcase figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #e7eeee;
  box-shadow: 0 24px 58px rgba(18, 24, 30, 0.12);
}

.about-capability-showcase figure img {
  width: 100%;
  height: auto;
  display: block;
}

.about-capability-panel {
  border: 1px solid rgba(18, 24, 30, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(18, 24, 30, 0.08);
}

.about-capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
}

.about-capability-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px 0 16px;
  border-top: 1px solid rgba(18, 24, 30, 0.1);
}

.about-capability-list span {
  grid-row: span 2;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.about-capability-list h3 {
  margin-bottom: 4px;
  color: var(--graphite);
  font-size: 1.02rem;
}

.about-capability-list p {
  margin-bottom: 0;
  color: #5b6872;
  font-size: 0.94rem;
  line-height: 1.62;
}

.about-process-section img {
  margin-top: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.about-quality-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "primary intro"
    "points secondary";
  gap: 58px;
  align-items: start;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #fbfcfc;
}

.about-quality-primary-image {
  grid-area: primary;
}

.about-quality-primary-image img {
  display: block;
  aspect-ratio: 16 / 10;
}

.about-quality-intro {
  grid-area: intro;
}

.about-quality-points {
  grid-area: points;
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.about-quality-secondary-image {
  grid-area: secondary;
}

.about-quality-secondary-image img {
  display: block;
  aspect-ratio: 1.24 / 1;
}

.about-quality-points article {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(18, 24, 30, 0.12);
}

.about-quality-points span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-quality-points h3 {
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 1.02rem;
}

.about-quality-points p {
  margin-bottom: 0;
  color: #596671;
}

.rich-editor {
  display: grid;
  gap: 0;
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #f8fafb;
}

.rich-toolbar button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--graphite);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.rich-area {
  min-height: 170px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0 0 6px 6px;
  background: #fff;
  color: var(--ink);
}

.rich-area:focus {
  outline: 1px solid rgba(20, 154, 139, 0.55);
}

.rich-editor textarea {
  display: none;
}

.rich-editor.is-source-mode .rich-area {
  display: none;
}

.rich-editor.is-source-mode textarea {
  width: 100%;
  min-height: 420px;
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0 0 6px 6px;
  color: #172026;
  background: #f8fafb;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  resize: vertical;
}

.rich-content {
  color: var(--muted);
}

.rich-area h2 {
  margin: 24px 0 12px;
  color: var(--graphite);
  font-size: 1.75rem;
  line-height: 1.16;
}

.rich-content h3 {
  margin: 18px 0 8px;
}

.rich-area h3 {
  margin: 18px 0 8px;
  color: var(--graphite);
}

.rich-content ul {
  padding-left: 20px;
}

.rich-content blockquote,
.rich-area blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--teal);
  background: rgba(20, 154, 139, 0.08);
}

.rich-content a,
.rich-area a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.rich-content img,
.rich-area img {
  max-width: 100%;
  height: auto;
  margin: 14px 0;
}

@media (max-width: 1180px) {
  .minimal-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 980px) {
  .modern-hero-content {
    width: min(680px, calc(100% - 40px));
    padding: 72px 0;
  }

  .custom-system,
  .visual-band,
  .modern-split,
  .proof-section,
  .quality-minimal,
  .contact-footer,
  .about-hero,
  .about-position-section,
  .about-process-section,
  .about-company-section,
  .about-capability-showcase,
  .about-capability-section .row-title,
  .about-quality-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-company-section {
    grid-template-areas:
      "heading"
      "primary"
      "copy"
      "secondary";
    background: #fbfcfc;
  }

  .about-quality-section {
    grid-template-areas:
      "primary"
      "intro"
      "points"
      "secondary";
  }

  .about-company-section img,
  .about-process-section img {
    height: auto;
  }

  .about-capability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-image-note {
    position: static;
    width: auto;
    margin: 16px 20px 0;
    color: var(--graphite);
    background: #fff;
    border-color: rgba(18, 24, 30, 0.1);
  }

  .about-image-note p {
    color: #56636d;
  }

  .proof-intro {
    position: static;
  }
}

@media (max-width: 1120px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .modern-section,
  .contact-footer,
  .about-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-hero h1 {
    font-size: 2.7rem;
  }

  .about-hero-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .visual-band,
  .about-image-section {
    padding-bottom: 72px;
  }

  .about-advantage-grid,
  .about-process-list article,
  .about-quality-points article {
    grid-template-columns: 1fr;
  }

  .about-capability-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .about-capability-showcase figure,
  .about-capability-showcase figure img {
    min-height: 0;
  }

  .about-capability-panel {
    padding: 22px;
  }

  .about-capability-list {
    grid-template-columns: 1fr;
  }

  .about-capability-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 15px 0;
  }

  .about-advantage-grid article {
    min-height: auto;
  }

  .about-process-list article {
    gap: 8px;
  }

  .about-responsibility-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .modern-hero {
    min-height: 760px;
    align-items: center;
  }

  .modern-hero-content {
    padding: 56px 0;
  }

  .modern-hero h1 {
    font-size: 2.72rem;
    line-height: 1.03;
  }

  .modern-hero .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .minimal-category-grid,
  .process-grid,
  .clean-product-grid,
  .clean-project-grid,
  .quality-cards,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .minimal-category-grid .category-card {
    min-height: auto;
    grid-template-rows: 190px 1fr;
  }

  .row-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .modern-hero .eyebrow {
    font-size: 0.54rem;
  }
}

@media (max-width: 360px) {
  .modern-hero .eyebrow {
    font-size: 0.47rem;
  }
}
