:root {
  --color-white: #ffffff;
  --color-ink: #161719;
  --color-graphite: #25282c;
  --color-muted: #676d75;
  --color-line: #d9dde2;
  --color-panel: #f5f6f7;
  --color-soft: #eceff1;
  --color-accent: #7b8b80;
  --color-accent-dark: #536257;
  --color-navy: #10243f;
  --color-navy-soft: #18385f;
  --shadow-soft: 0 18px 48px rgba(22, 23, 25, 0.08);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(16, 36, 63, 0.07), transparent 28%),
    radial-gradient(circle at 94% 4%, rgba(123, 139, 128, 0.08), transparent 26%),
    var(--color-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button {
  -webkit-user-select: auto;
  user-select: auto;
}

body::selection {
  color: var(--color-white);
  background: var(--color-graphite);
}

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

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  max-width: 1180px;
}

.site-main,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 221, 226, 0.78);
  backdrop-filter: blur(36px) saturate(165%);
  -webkit-backdrop-filter: blur(36px) saturate(165%);
  box-shadow: 0 18px 44px rgba(16, 36, 63, 0.11);
}

.site-nav {
  min-height: var(--header-height);
  padding: 10px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
}

.brand-symbol,
.brand-logo-wrap {
  display: inline-grid;
  width: 176px;
  height: 50px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
}

.brand-logo-wrap {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px 6px;
}

.brand-mark strong,
.brand-mark small {
  display: block;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand-mark strong {
  font-size: 1.08rem;
}

.brand-mark small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.site-nav .nav-link {
  color: var(--color-graphite);
  margin-left: 18px;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 550;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--color-navy);
}

.site-nav .nav-cta {
  margin-left: 24px;
  padding: 10px 18px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--color-white);
  background: var(--color-navy);
}

.site-nav .admin-link {
  margin-left: 14px;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.service-menu {
  position: relative;
}

.service-menu-trigger::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 10px;
  z-index: 40;
  display: grid;
  width: min(360px, 86vw);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 221, 226, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(22, 23, 25, 0.14);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.service-menu:hover .service-dropdown,
.service-menu:focus-within .service-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-dropdown a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.service-dropdown a:hover,
.service-dropdown a:focus {
  background: rgba(16, 36, 63, 0.07);
}

.service-dropdown a img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(217,221,226,0.7);
}

.service-dropdown-text {
  display: grid;
  gap: 2px;
}

.service-dropdown strong {
  color: var(--color-ink);
  font-size: 0.95rem;
}

.service-dropdown span {
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.site-toggler {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: #000000;
  border: 1px solid #000000;
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(22, 23, 25, 0.18);
}

.site-toggler .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: none;
}

.site-toggler:focus {
  box-shadow: 0 0 0 4px rgba(22, 23, 25, 0.14);
}

.site-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.morph-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  transform: translateY(calc(var(--line-progress, 0) * -18px));
}

.morph-line path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 560 1180;
  stroke-dashoffset: var(--line-dash, 0);
}

.morph-line-b {
  opacity: 0.24;
  transform: translateY(calc(var(--line-progress, 0) * 22px));
}

.morph-line-b path {
  stroke: var(--color-graphite);
  stroke-width: 1.6;
  stroke-dasharray: 380 960;
}

.section-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.hero-section {
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 88px 0 112px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 84% 18%, rgba(123, 139, 128, 0.24), transparent 26%),
    linear-gradient(135deg, var(--color-navy), #172a45 48%, rgba(22, 23, 25, 0.98));
}

.hero-section::before,
.sub-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section p {
  color: var(--color-white);
}

.hero-section p {
  opacity: 0.76;
}

.hero-section .eyebrow {
  color: #cdd8d0;
}

.hero-section .btn-solid {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
}

.hero-section .btn-ghost {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.sub-hero {
  isolation: isolate;
  padding: 112px 0 80px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-white);
  background:
    radial-gradient(circle at 86% 12%, rgba(123, 139, 128, 0.22), transparent 24%),
    linear-gradient(135deg, var(--color-navy), #172a45 52%, var(--color-graphite));
}

.sub-hero h1,
.sub-hero p {
  color: var(--color-white);
}

.sub-hero p {
  opacity: 0.74;
}

.sub-hero .eyebrow {
  color: #cdd8d0;
}

.muted-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 36, 63, 0.08), transparent 28%),
    rgba(245, 246, 247, 0.86);
  border-top: 1px solid rgba(217, 221, 226, 0.58);
  border-bottom: 1px solid rgba(217, 221, 226, 0.58);
}

.hero-grid,
.split-layout,
.contact-grid,
.product-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 4.05rem;
  font-weight: 720;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: 680;
}

p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero-copy p,
.sub-hero p,
.section-heading p {
  max-width: 760px;
  font-size: 1.15rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-solid,
.btn-ghost,
.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 680;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn-solid {
  padding: 13px 22px;
  color: var(--color-white);
  background: var(--color-ink);
  border: 1px solid var(--color-ink);
}

.btn-solid:hover {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-navy);
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 13px 22px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-line);
}

.btn-ghost:hover {
  color: var(--color-white);
  background: var(--color-graphite);
  border-color: var(--color-graphite);
}

.text-link {
  min-height: 0;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  border-radius: 0;
}

.visual-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 360px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--color-navy), var(--color-graphite));
  background-size: 32px 32px;
  border: 1px solid rgba(16, 36, 63, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.visual-placeholder::before {
  position: absolute;
  inset: auto -12% -24% 28%;
  height: 46%;
  content: "";
  background: radial-gradient(circle, rgba(123, 139, 128, 0.36), transparent 64%);
  pointer-events: none;
}

.visual-placeholder span {
  position: relative;
  max-width: 75%;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: center;
}

.visual-placeholder.tall {
  min-height: 470px;
}

.visual-placeholder.small {
  min-height: 180px;
  margin-bottom: 22px;
  box-shadow: none;
}

.product-image-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(16, 36, 63, 0.18);
  border-radius: var(--radius);
  background: var(--color-navy);
  box-shadow: var(--shadow-soft);
}

.product-image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.product-image-card.tall {
  min-height: 470px;
}

.hero-visual {
  min-height: 540px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.info-card,
.project-card,
.contact-panel,
.form-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 23, 25, 0.045);
}

.info-card::before,
.project-card::before,
.contact-panel::before,
.form-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--color-navy);
}

.info-card {
  min-height: 220px;
  padding: 28px;
}

.info-card.large {
  min-height: 280px;
}

.blog-hero {
  padding-bottom: 96px;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
}

.blog-hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.blog-hero-panel span,
.blog-hero-panel strong,
.blog-hero-panel p {
  display: block;
  color: var(--color-white);
}

.blog-hero-panel span {
  margin-bottom: 12px;
  color: #cdd8d0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.blog-hero-panel p {
  margin: 0;
  opacity: 0.72;
}

.blog-index-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 36, 63, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 246, 247, 0.92));
}

.blog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.blog-toolbar h2 {
  margin-bottom: 0;
}

.blog-count {
  padding: 10px 14px;
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(16, 36, 63, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-height: 300px;
  margin-bottom: 26px;
  padding: 34px;
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 16%, rgba(123, 139, 128, 0.24), transparent 30%),
    linear-gradient(135deg, var(--color-navy), #162f52 54%, var(--color-graphite));
  box-shadow: var(--shadow-soft);
}

.blog-featured-card:hover {
  color: var(--color-white);
  transform: translateY(-4px);
}

.blog-featured-card h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.blog-featured-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.blog-featured-card .eyebrow {
  color: #cdd8d0;
}

.blog-featured-image {
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--color-navy);
  font-weight: 800;
  border-radius: 999px;
  background: var(--color-white);
}

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

.blog-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  min-height: 390px;
  padding: 0;
}

.blog-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card-link:hover {
  color: inherit;
  border-color: rgba(16, 36, 63, 0.28);
  box-shadow: 0 22px 46px rgba(16, 36, 63, 0.12);
  transform: translateY(-4px);
}

.blog-card h2 {
  margin-bottom: 14px;
  font-size: 1.42rem;
}

.blog-card img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.blog-card > div {
  padding: 24px;
}

.blog-card p {
  margin-bottom: 0;
}

.blog-meta {
  margin: 18px 0 10px;
  color: var(--color-accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-content {
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
  font-size: 0.98rem;
}

.blog-content p {
  margin: 0 0 14px;
}

.blog-content p:last-child {
  margin-bottom: 0;
}

.blog-pagination {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 34px;
}

.blog-loading-state {
  min-height: 22px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-lazy-sentinel {
  width: 100%;
  height: 1px;
}

.blog-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  max-width: 1180px;
}

.blog-detail-hero .text-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-white);
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-detail-meta span {
  padding: 8px 12px;
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.blog-detail-cover {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.blog-detail-cover img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

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

.blog-detail-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 26px;
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(22, 23, 25, 0.06);
}

.blog-detail-aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-graphite);
  font-size: 1.2rem;
}

.blog-detail-aside p {
  margin-bottom: 20px;
  font-size: 0.96rem;
}

.blog-detail-content {
  position: relative;
  padding: 54px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-detail-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-navy), var(--color-accent));
}

.blog-detail-content p {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 1.08rem;
  line-height: 1.82;
}

.blog-detail-content p:last-child {
  margin-bottom: 0;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-category-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22, 23, 25, 0.055);
}

.service-category-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--color-navy);
}

.service-category-card.featured {
  background:
    radial-gradient(circle at 86% 10%, rgba(123, 139, 128, 0.28), transparent 24%),
    linear-gradient(135deg, var(--color-navy), var(--color-graphite));
}

.service-category-card.featured h2,
.service-category-card.featured p,
.service-category-card.featured .check-list li {
  color: var(--color-white);
}

.service-category-card.featured p,
.service-category-card.featured .check-list li {
  opacity: 0.76;
}

.service-category-card.featured .eyebrow {
  color: #d6ded8;
}

.service-category-card.featured .btn-solid {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-white);
}

.service-category-card .check-list {
  margin-bottom: 28px;
}

.service-category-card .btn-solid {
  margin-top: auto;
}

.service-category-image {
  width: calc(100% + 60px);
  height: 220px;
  display: block;
  margin: -30px -30px 28px;
  object-fit: cover;
}

.service-category-card.featured .service-category-image {
  opacity: 0.88;
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--color-navy);
  font-weight: 750;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(16, 36, 63, 0.13);
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.service-list span {
  color: var(--color-muted);
}

.product-highlight {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.product-preview {
  min-height: 460px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-graphite);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  content: "";
  border: 2px solid var(--color-navy);
  border-radius: 50%;
}

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

.reference-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 58px;
}

.reference-metrics div {
  min-height: 132px;
  padding: 24px;
  background: linear-gradient(145deg, var(--color-navy), var(--color-graphite));
  border-radius: var(--radius);
}

.reference-metrics strong,
.reference-metrics span {
  display: block;
}

.reference-metrics strong {
  color: var(--color-white);
  font-size: 2.4rem;
  line-height: 1;
}

.reference-metrics span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 650;
}

.reference-item {
  min-height: 110px;
  display: flex;
  align-items: end;
  padding: 20px;
  color: var(--color-ink);
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-navy), var(--color-graphite));
  border: 1px solid rgba(16, 36, 63, 0.2);
  border-radius: var(--radius);
  font-weight: 680;
}

.cta-panel {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 42px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-graphite));
  border-radius: var(--radius);
}

.cta-panel h2,
.cta-panel p {
  color: var(--color-white);
}

.cta-panel p {
  opacity: 0.72;
}

.cta-panel .eyebrow {
  color: #c9d4cc;
}

.cta-panel .btn-solid {
  flex: 0 0 auto;
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-white);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric-row div {
  padding: 18px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--color-navy);
  font-size: 1.4rem;
}

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

.process-timeline article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.process-timeline span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
  font-weight: 700;
}

.spec-table {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.spec-table div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-line);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table strong {
  color: var(--color-navy);
}

.spec-table span {
  color: var(--color-muted);
}

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

.gallery-grid .visual-placeholder {
  min-height: 310px;
}

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

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

.product-album-grid figure {
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(22, 23, 25, 0.055);
}

.product-album-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-album-grid figure:hover img {
  transform: scale(1.035);
}

.kartela-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.kartela-link img {
  transition: transform 220ms ease, filter 220ms ease;
}

.kartela-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 36, 63, 0.42);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 740;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 12px;
  opacity: 1;
  transition: background 200ms ease;
  border-radius: var(--radius);
}

.kartela-link:hover .kartela-overlay {
  background: rgba(16, 36, 63, 0.72);
}

.kartela-link:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

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

.aluminum-profile-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(0, 1fr);
  min-height: 260px;
  background: var(--color-white);
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 23, 25, 0.045);
}

.aluminum-profile-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: #f3f4f5;
}

.aluminum-profile-card > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px;
}

.aluminum-profile-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.aluminum-profile-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.aluminum-profile-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(217, 221, 226, 0.82);
}

.aluminum-profile-card dt,
.aluminum-profile-card dd {
  margin: 0;
  font-size: 0.9rem;
}

.aluminum-profile-card dt {
  color: var(--color-muted);
  font-weight: 680;
}

.aluminum-profile-card dd {
  color: var(--color-ink);
  font-weight: 720;
  text-align: right;
}

.project-card {
  padding: 18px;
}

.project-card .visual-placeholder {
  min-height: 280px;
  margin-bottom: 22px;
  box-shadow: none;
}

.project-card h2 {
  font-size: 1.45rem;
}

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

.reference-card {
  background: rgba(255, 255, 255, 0.92);
}

.reference-card > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.reference-logo-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.reference-logo-gallery figure {
  min-height: 126px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 221, 226, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 23, 25, 0.045);
}

.reference-logo-gallery img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.reference-logo-gallery figure:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--color-ink);
  font-weight: 680;
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact-grid {
  align-items: start;
}

.contact-grid-single {
  grid-template-columns: 1fr;
}

.contact-panel,
.form-panel {
  padding: 30px;
}

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

.contact-panel a,
.contact-panel span {
  color: var(--color-muted);
}

.refined-contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 246, 247, 0.92));
}

.refined-contact::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--color-ink), var(--color-accent), var(--color-line));
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-grid-single .contact-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-method,
.address-panel {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 221, 226, 0.9);
  border-radius: var(--radius);
}

.contact-method:hover {
  border-color: rgba(83, 98, 87, 0.42);
  box-shadow: 0 12px 26px rgba(22, 23, 25, 0.06);
}

.contact-method span,
.address-panel span {
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-method strong,
.address-panel strong {
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.map-placeholder {
  min-height: 260px;
  margin-top: 24px;
  box-shadow: none;
}

.contact-location-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: grid;
  align-items: end;
  margin-top: 10px;
  padding: 24px;
  color: var(--color-white);
  border-radius: var(--radius);
  isolation: isolate;
}

.contact-location-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(16, 36, 63, 0.08), rgba(22, 23, 25, 0.72));
}

.contact-location-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-location-visual span {
  max-width: 520px;
  margin: 0;
  color: var(--color-white);
  font-size: 1.16rem;
  font-weight: 720;
  line-height: 1.36;
}

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

.form-panel label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-graphite);
  font-size: 0.92rem;
  font-weight: 680;
}

.form-panel .file-upload-field {
  display: grid;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--color-ink);
  background: var(--color-panel);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  background: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(16, 36, 63, 0.12);
}

.contact-form-visual {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  display: grid;
  align-items: end;
  margin: -30px -30px 4px;
  padding: 22px;
  color: var(--color-white);
  isolation: isolate;
}

.contact-form-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(16, 36, 63, 0.08), rgba(22, 23, 25, 0.72));
}

.contact-form-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-visual span,
.contact-form-visual strong {
  display: block;
}

.contact-form-visual span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-form-visual strong {
  max-width: 430px;
  color: var(--color-white);
  font-size: 1.18rem;
  line-height: 1.32;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 14px;
  background: rgba(245, 246, 247, 0.78);
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: var(--radius);
}

.form-panel .consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--color-navy);
}

.consent-field span {
  color: var(--color-graphite);
  font-size: 0.9rem;
  line-height: 1.45;
}

.admin-shell {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, rgba(245, 246, 247, 0.88), rgba(255, 255, 255, 0.94));
}

.admin-card,
.admin-topbar,
.admin-hero,
.admin-list,
.admin-blog-row,
.admin-stat {
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(22, 23, 25, 0.055);
}

.admin-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 34px;
}

.admin-card h1,
.admin-hero h1 {
  font-size: 2.1rem;
}

.admin-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-weight: 750;
}

.admin-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  padding: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.admin-alert {
  margin: 18px 0;
  padding: 13px 15px;
  color: var(--color-accent-dark);
  background: rgba(123, 139, 128, 0.1);
  border: 1px solid rgba(123, 139, 128, 0.22);
  border-radius: var(--radius);
  font-weight: 650;
}

.admin-dashboard {
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 36, 63, 0.18), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(123, 139, 128, 0.16), transparent 30%),
    linear-gradient(180deg, #f7f8f9, #eef1f3);
}

.admin-topbar,
.admin-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
}

.admin-topbar {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 250, 0.92));
}

.admin-topbar::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--color-navy);
}

.admin-topbar-status {
  display: inline-grid;
  gap: 2px;
  margin-left: auto;
  padding: 10px 14px;
  background: rgba(16, 36, 63, 0.07);
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: var(--radius);
}

.admin-topbar-status span {
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.admin-topbar-status strong {
  color: var(--color-navy);
  font-size: 0.94rem;
}

.admin-hero {
  align-items: stretch;
}

.admin-hero-rich {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(123, 139, 128, 0.28), transparent 24%),
    linear-gradient(135deg, var(--color-navy), #172a45 48%, rgba(22, 23, 25, 0.98));
}

.admin-hero-rich::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.admin-hero-copy,
.admin-visual-card {
  position: relative;
  z-index: 1;
}

.admin-hero-rich h1,
.admin-hero-rich p {
  color: var(--color-white);
}

.admin-hero-rich p {
  max-width: 660px;
  opacity: 0.72;
}

.admin-hero-rich .eyebrow {
  color: #cdd8d0;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.admin-hero-rich .btn-solid {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-white);
}

.admin-hero-rich .btn-ghost {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.admin-visual-card {
  width: min(330px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 34px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.admin-visual-card img {
  width: 210px;
  max-width: 100%;
  padding: 12px;
  background: var(--color-white);
  border-radius: var(--radius);
}

.admin-visual-card strong {
  margin-top: 10px;
  font-size: 1.2rem;
}

.admin-visual-card span {
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.admin-visual-card small {
  color: rgba(255, 255, 255, 0.54);
}

.admin-visual-meter {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.45fr;
  gap: 8px;
  margin-top: 8px;
}

.admin-visual-meter span {
  height: 6px;
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 99px;
}

.admin-visual-meter span:nth-child(2) {
  background: rgba(123, 139, 128, 0.95);
}

.admin-visual-meter span:nth-child(3) {
  background: rgba(255, 255, 255, 0.36);
}

.admin-stat {
  display: grid;
  min-width: 180px;
  place-items: center;
  padding: 22px;
  background: var(--color-graphite);
  color: var(--color-white);
}

.admin-stat strong {
  font-size: 3rem;
  line-height: 1;
}

.admin-stat span {
  color: rgba(255, 255, 255, 0.74);
}

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

.admin-stat-grid article,
.admin-guide-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22, 23, 25, 0.055);
}

.admin-stat-grid article {
  position: relative;
  overflow: hidden;
}

.admin-stat-grid article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--color-navy);
}

.admin-stat-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  display: block;
  color: var(--color-navy);
  font-size: 2.1rem;
  line-height: 1.05;
}

.admin-stat-grid p {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

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

.admin-panel-heading h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.admin-panel-heading p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.admin-create-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.admin-guide-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.admin-guide-card li {
  position: relative;
  padding-left: 28px;
  color: var(--color-graphite);
}

.admin-guide-card li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--color-accent-dark);
  border-radius: 50%;
}

.admin-form h2,
.admin-list h2 {
  font-size: 1.34rem;
}

.admin-list {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.admin-blog-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  box-shadow: none;
}

.admin-blog-row span {
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.admin-blog-row h3 {
  margin: 6px 0;
  font-size: 1.05rem;
}

.admin-blog-row p {
  margin: 0;
  font-size: 0.94rem;
}

.danger-button {
  min-height: 40px;
  padding: 9px 14px;
  color: #8d1f1f;
  background: #fff3f3;
  border: 1px solid #f1c4c4;
  border-radius: var(--radius);
  font-weight: 700;
}

.danger-button:hover {
  color: var(--color-white);
  background: #8d1f1f;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 0.95rem;
  font-weight: 650;
}

.form-status.success {
  color: #1f6b45;
}

.form-status.error {
  color: #9f2f2f;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-upload-field {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin: 0;
  padding: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(245, 246, 247, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px dashed rgba(83, 98, 87, 0.46);
  border-radius: var(--radius);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.file-upload-field:hover {
  border-color: var(--color-navy);
  transform: translateY(-1px);
}

.file-upload-field input {
  position: absolute;
  left: -9999px;
}

.file-upload-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 760;
}

.file-upload-field strong,
.file-upload-field small {
  display: block;
}

.file-upload-field strong {
  color: var(--color-ink);
  font-size: 0.98rem;
}

.file-upload-field small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.pre-footer-contact {
  position: relative;
  z-index: 2;
  padding: 76px 0;
  background:
    linear-gradient(180deg, rgba(245, 246, 247, 0.96), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(217, 221, 226, 0.72);
}

.pre-footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.pre-footer-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.pre-footer-copy p {
  max-width: 560px;
}

.pre-footer-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  margin-top: 28px;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(22, 23, 25, 0.1);
}

.pre-footer-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.pre-footer-mail-form {
  display: grid;
  gap: 18px;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(22, 23, 25, 0.08);
  overflow: hidden;
}

.form-header {
  padding: 18px 26px 16px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
  color: #fff;
}

.form-header h3 {
  margin: 0 0 3px;
  font-size: 1.05rem;
  font-weight: 740;
  color: #fff;
}

.form-header p {
  margin: 0;
  font-size: 0.84rem;
  opacity: 0.75;
  color: #fff;
}

.form-body {
  display: grid;
  gap: 18px;
  padding: 22px 26px 26px;
}

.form-divider {
  height: 1px;
  background: rgba(217, 221, 226, 0.8);
  margin: 2px 0;
}

.product-choice-title {
  color: var(--color-graphite);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pre-footer-mail-form .btn-solid {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.pre-footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-choice-group {
  display: grid;
  gap: 10px;
}

.product-choice-title {
  color: var(--color-graphite);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.product-choice-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 126px;
  align-items: end;
  cursor: pointer;
  background: var(--color-panel);
  border: 2px solid transparent;
  border-radius: var(--radius);
  isolation: isolate;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-choice-card:hover,
.product-choice-card:has(input:checked) {
  border-color: var(--color-navy);
  box-shadow: 0 12px 26px rgba(22, 23, 25, 0.1);
  transform: translateY(-1px);
}

.product-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-choice-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-choice-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(16, 36, 63, 0.02), rgba(22, 23, 25, 0.72));
}

.product-choice-card span {
  margin: 0;
  padding: 12px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 760;
}

.product-choice-card:has(input:checked)::before {
  position: absolute;
  top: 9px;
  right: 9px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  background: var(--color-white);
  border-radius: 999px;
  content: "✓";
  font-size: 0.9rem;
  font-weight: 800;
}

.pre-footer-mail-form label:not(.file-upload-field):not(.pre-footer-consent-field):not(.product-choice-card) {
  display: block;
  margin-bottom: 7px;
  color: var(--color-graphite);
  font-size: 0.9rem;
  font-weight: 680;
}

.pre-footer-mail-form input:not([type="radio"]),
.pre-footer-mail-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--color-ink);
  background: var(--color-panel);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
}

.pre-footer-mail-form input:not([type="radio"]):focus,
.pre-footer-mail-form textarea:focus {
  background: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(16, 36, 63, 0.12);
}

.pre-footer-mail-form .file-upload-field {
  background: rgba(245, 246, 247, 0.78);
}

.pre-footer-consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 13px;
  background: rgba(245, 246, 247, 0.76);
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: var(--radius);
}

.pre-footer-mail-form .pre-footer-consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--color-navy);
}

.pre-footer-consent-field span {
  color: var(--color-graphite);
  font-size: 0.88rem;
  line-height: 1.42;
}

/* ───── DUVAR KORUMA — KARTELA KARTI ───── */

.dk-kartela-card {
  cursor: pointer;
  border: 2px dashed rgba(16, 36, 63, 0.22) !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dk-kartela-card:hover {
  border-color: var(--color-navy) !important;
  border-style: solid !important;
  box-shadow: 0 10px 28px rgba(16, 36, 63, 0.14);
  transform: translateY(-2px);
}

.dk-kartela-card:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 2px;
}

.dk-kartela-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--color-panel);
}

.dk-kartela-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  background: none !important;
  transition: transform 360ms ease;
}

.dk-kartela-card:hover .dk-kartela-img-wrap img {
  transform: scale(1.06);
}

.dk-kartela-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 36, 63, 0.52);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 200ms ease;
}

.dk-kartela-card:hover .dk-kartela-zoom-hint {
  opacity: 1;
}

.dk-kartela-sub {
  margin: 3px 0 0;
  font-size: 0.79rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* ───── KARTELA LIGHTBOX ───── */

.dk-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(16, 36, 63, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.dk-lightbox-overlay.lb-visible {
  opacity: 1;
}

.dk-lightbox {
  position: relative;
  max-width: min(900px, 92vw);
  transform: scale(0.93);
  transition: transform 270ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dk-lightbox-overlay.lb-visible .dk-lightbox {
  transform: scale(1);
}

.dk-lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.dk-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: background 150ms ease, transform 150ms ease;
  line-height: 1;
}

.dk-lightbox-close:hover {
  background: var(--color-panel);
  transform: scale(1.1);
}

/* ───── FORM POPUP OVERLAY ───── */

.form-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(16, 36, 63, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 220ms ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.form-popup-overlay.fp-visible {
  opacity: 1;
}

.form-popup {
  background: #fff;
  border-radius: 18px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 32px 90px rgba(16, 36, 63, 0.22);
  transform: translateY(24px) scale(0.97);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  opacity: 0;
}

.form-popup-overlay.fp-visible .form-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.form-popup-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 900;
}

.form-popup-icon.fp-success {
  background: rgba(34, 162, 90, 0.1);
  color: #22a25a;
}

.form-popup-icon.fp-error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.form-popup h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 760;
  color: var(--color-ink);
}

.form-popup p {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-popup .btn-solid {
  min-width: 120px;
}

/* ───── SERVICES PAGE — SHOWCASE LAYOUT ───── */

.services-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.services-anchor-nav a {
  padding: 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.services-anchor-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.svc-showcase-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.svc-showcase {
  display: flex;
  align-items: stretch;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22, 23, 25, 0.07);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.svc-showcase:hover {
  box-shadow: 0 20px 52px rgba(22, 23, 25, 0.12);
  transform: translateY(-2px);
}

.svc-showcase.reverse {
  flex-direction: row-reverse;
}

.svc-showcase.featured {
  background: linear-gradient(135deg, var(--color-navy) 0%, #172a45 55%, var(--color-graphite) 100%);
}

.svc-showcase.featured .svc-showcase-body h2,
.svc-showcase.featured .svc-showcase-body .check-list li {
  color: var(--color-white);
}

.svc-showcase.featured .svc-showcase-body p {
  color: rgba(255, 255, 255, 0.72);
}

.svc-showcase.featured .svc-showcase-body .eyebrow {
  color: #cdd8d0;
}

.svc-showcase.featured .btn-solid {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}

.svc-showcase.featured .btn-solid:hover {
  background: rgba(255, 255, 255, 0.9);
}

.svc-showcase-img {
  flex: 0 0 380px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.svc-showcase-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.svc-showcase:hover .svc-showcase-img img {
  transform: scale(1.04);
}

.svc-showcase.featured .svc-showcase-img img {
  opacity: 0.82;
}

.svc-showcase-body {
  flex: 1;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-showcase-body h2 {
  margin: 0;
}

.svc-showcase-body p {
  margin: 0;
  max-width: 560px;
}

.svc-showcase-body .check-list {
  flex: 1;
  margin: 0;
}

.svc-showcase-body .btn-solid {
  align-self: flex-start;
}

/* ───── PRE-FOOTER FORM — HORIZONTAL LAYOUT ───── */

.pre-footer-contact-wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pre-footer-contact-intro {
  text-align: center;
  max-width: 600px;
}

.pre-footer-contact-intro h2 {
  margin-bottom: 10px;
}

.pre-footer-contact-intro p {
  color: var(--color-muted);
}

.pre-footer-mail-form {
  width: 100%;
  max-width: 940px;
}

.form-body-h {
  grid-template-columns: 200px 1px 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.form-product-col {
  padding: 20px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(247, 248, 249, 0.7);
}

.form-product-col .product-choice-grid {
  grid-template-columns: 1fr;
  gap: 7px;
}

.form-product-col .product-choice-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  min-height: auto;
  padding: 8px 10px;
  align-items: center;
  gap: 10px;
}

.form-product-col .product-choice-card img {
  position: static;
  width: 50px;
  height: 38px;
  z-index: auto;
  object-fit: cover;
  border-radius: 4px;
}

.form-product-col .product-choice-card::after {
  content: none;
}

.form-product-col .product-choice-card span {
  padding: 0;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-product-col .product-choice-card:has(input:checked) span {
  color: var(--color-navy);
}

.form-product-col .product-choice-card:has(input:checked)::before {
  display: none;
}

.form-col-sep {
  width: 1px;
  background: rgba(217, 221, 226, 0.8);
  align-self: stretch;
}

.form-fields-col {
  padding: 20px 24px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer {
  padding: 34px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-ink);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding: 28px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy), var(--color-graphite));
  border-radius: var(--radius);
}

.footer-cta span,
.footer-cta strong {
  display: block;
}

.footer-cta span {
  margin-bottom: 6px;
  color: #cdd8d0;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-cta strong {
  max-width: 720px;
  font-size: 1.4rem;
  line-height: 1.25;
}

.footer-whatsapp {
  flex: 0 0 auto;
  padding: 13px 18px;
  color: var(--color-navy);
  background: var(--color-white);
  border-radius: var(--radius);
  font-weight: 750;
}

.footer-whatsapp:hover {
  color: var(--color-white);
  background: var(--color-accent-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.68fr) minmax(170px, 0.62fr) minmax(250px, 0.9fr);
  gap: 38px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-company p {
  max-width: 420px;
  margin: 22px 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  margin: 0;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(16, 36, 63, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.84rem;
}

.footer-brand,
.footer-brand:hover {
  color: var(--color-white);
}

.footer-brand .brand-symbol,
.footer-brand .brand-logo-wrap {
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: var(--radius);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span,
.site-footer small {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer a:hover {
  color: var(--color-white);
}

.site-footer .footer-whatsapp {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--color-navy);
  background: var(--color-white);
}

.site-footer .footer-whatsapp:hover {
  color: var(--color-white);
  background: var(--color-accent-dark);
}

.footer-mail-form {
  display: grid;
  gap: 9px;
}

.footer-form-visual {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  display: grid;
  align-items: end;
  margin-bottom: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  isolation: isolate;
}

.footer-form-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(16, 36, 63, 0.04), rgba(22, 23, 25, 0.78));
}

.footer-form-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-form-visual span {
  max-width: 220px;
  margin: 0;
  color: var(--color-white);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.28;
}

.footer-mail-form label {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 680;
}

.footer-mail-form input,
.footer-mail-form textarea {
  width: 100%;
  padding: 10px 11px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: none;
}

.footer-mail-form input:focus,
.footer-mail-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.footer-consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 2px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.footer-mail-form .footer-consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--color-white);
}

.footer-consent-field span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.38;
}

.footer-mail-form .form-status {
  min-height: auto;
  color: #d9eadf;
  font-size: 0.88rem;
}

.footer-mail-form .form-status.error {
  color: #f1b8b8;
}

.footer-submit {
  min-height: 42px;
  margin-top: 4px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 0;
  border-radius: var(--radius);
  font-weight: 750;
}

.footer-submit:hover {
  color: var(--color-white);
  background: var(--color-accent-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 0.92rem;
}

.gardenya-product-section {
  background: var(--color-white);
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 23, 25, 0.045);
  overflow: hidden;
}

.gardenya-product-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 220px;
}

.gardenya-product-head img {
  width: 200px;
  min-height: 220px;
  object-fit: contain;
  background: #f3f4f5;
  display: block;
}

.gardenya-product-meta {
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.gardenya-product-meta h3 {
  margin: 0;
  font-size: 1.1rem;
}

.gardenya-product-meta dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.gardenya-product-meta dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(217, 221, 226, 0.7);
}

.gardenya-product-meta dt,
.gardenya-product-meta dd {
  margin: 0;
  font-size: 0.88rem;
}

.gardenya-product-meta dt {
  color: var(--color-muted);
  font-weight: 680;
}

.gardenya-product-meta dd {
  color: var(--color-ink);
  font-weight: 720;
  text-align: right;
}

.gardenya-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  margin-top: 4px;
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
  border: 1px solid var(--color-navy);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.gardenya-doc-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 23, 25, 0.16);
}

.gardenya-doc-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gardenya-colors-section {
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(217, 221, 226, 0.7);
  background: rgba(245, 246, 247, 0.54);
}

.gardenya-colors-title {
  display: block;
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.color-swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 8px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.color-swatch img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  border: 1px solid rgba(217, 221, 226, 0.9);
  object-fit: cover;
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.color-swatch:hover img {
  transform: scale(1.9);
  box-shadow: 0 18px 44px rgba(22, 23, 25, 0.32);
  border-color: var(--color-accent);
  position: relative;
  z-index: 10;
}

.color-swatch-code {
  display: block;
  font-size: 0.68rem;
  font-weight: 760;
  color: var(--color-navy);
  line-height: 1.2;
}

.color-swatch-name {
  display: block;
  font-size: 0.62rem;
  color: var(--color-muted);
  line-height: 1.2;
}

.gardenya-product-grid {
  display: grid;
  gap: 22px;
}

/* Duvar Koruma Bariyeri */
.dk-category {
  display: grid;
  gap: 18px;
}

.dk-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-line);
}

.dk-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.dk-category-header h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--color-navy);
}

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

.dk-product-card {
  background: var(--color-white);
  border: 1px solid rgba(217, 221, 226, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(22, 23, 25, 0.04);
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.dk-product-card:hover {
  box-shadow: 0 14px 36px rgba(22, 23, 25, 0.09);
  border-color: var(--color-accent);
}

.dk-product-code {
  display: inline-block;
  background: var(--color-panel);
  color: var(--color-navy);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--color-line);
}

.dk-product-card h4 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-ink);
  line-height: 1.35;
}

.dk-product-specs {
  display: grid;
  gap: 0;
  margin: 0;
}

.dk-product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(217, 221, 226, 0.7);
  font-size: 0.85rem;
}

.dk-product-specs div:last-child {
  border-bottom: none;
}

.dk-product-specs dt {
  color: var(--color-muted);
  font-weight: 640;
  flex-shrink: 0;
}

.dk-product-specs dd {
  color: var(--color-ink);
  font-weight: 700;
  text-align: right;
  margin: 0;
}

.dk-product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--color-panel);
  border-radius: calc(var(--radius) - 2px);
  display: block;
  transition: transform 220ms ease;
}

.dk-product-card:hover img {
  transform: scale(1.04);
}

.dk-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 720;
  color: var(--color-accent-dark);
  background: rgba(83, 98, 87, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.dk-section-divider {
  display: grid;
  gap: 32px;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 3.7rem;
  }

  .site-nav .nav-link {
    margin-left: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 74px;
  }

  .site-nav .navbar-collapse {
    padding: 18px 0 8px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .site-nav .nav-link,
  .site-nav .nav-cta {
    margin-left: 0;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  .site-nav .admin-link {
    margin-left: 0;
  }

  .service-dropdown {
    position: static;
    width: 100%;
    margin: 2px 0 10px;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    background: rgba(245, 246, 247, 0.82);
    box-shadow: none;
    transform: none;
  }

  .service-dropdown a {
    padding: 12px;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .product-highlight,
  .feature-grid.two,
  .feature-grid.three,
  .feature-grid.four,
  .service-category-grid,
  .admin-grid,
  .admin-content-grid,
  .admin-stat-grid,
  .reference-grid,
  .process-timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding: 72px 0 88px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-visual,
  .visual-placeholder.tall {
    min-height: 380px;
  }

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

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

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

  .footer-cta {
    align-items: start;
    flex-direction: column;
  }

  .cta-panel {
    align-items: start;
    flex-direction: column;
  }

  .blog-hero-grid,
  .blog-featured-card,
  .blog-detail-heading,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero-panel,
  .blog-detail-aside {
    max-width: 640px;
  }

  .pre-footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-grid-single .contact-methods {
    grid-template-columns: 1fr;
  }

  .blog-featured-image,
  .blog-detail-cover {
    min-height: auto;
  }

  .blog-read-more {
    justify-self: start;
  }

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

  .product-album-grid,
  .product-album-grid.compact,
  .aluminum-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-detail-aside {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 0.98rem;
  }

  .brand-logo-wrap {
    width: 146px;
    height: 42px;
  }

  .section-band,
  .sub-hero {
    padding: 64px 0;
  }

  .hero-section {
    padding: 58px 0 70px;
  }

  h1 {
    font-size: 2.36rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  p,
  .hero-copy p,
  .sub-hero p,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .product-highlight {
    gap: 34px;
  }

  .info-card,
  .contact-panel,
  .form-panel,
  .cta-panel,
  .service-category-card,
  .admin-card,
  .admin-topbar,
  .admin-hero,
  .admin-list {
    padding: 22px;
  }

  .blog-hero {
    padding-bottom: 72px;
  }

  .blog-hero-grid {
    gap: 28px;
  }

  .blog-hero-panel,
  .blog-featured-card,
  .blog-detail-content,
  .blog-detail-aside {
    padding: 24px;
  }

  .blog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .blog-featured-card {
    min-height: auto;
    gap: 24px;
  }

  .blog-featured-card h2 {
    font-size: 2rem;
  }

  .blog-featured-image,
  .blog-detail-cover {
    width: 100%;
    min-height: 230px;
  }

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

  .pre-footer-contact {
    padding: 58px 0;
  }

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

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

  .pre-footer-mail-form {
    padding: 22px;
  }

  .pre-footer-visual,
  .pre-footer-visual img {
    min-height: 220px;
  }

  .blog-card {
    min-height: 220px;
  }

  .blog-card {
    grid-template-rows: 190px 1fr;
  }

  .blog-card img {
    height: 190px;
  }

  .product-album-grid,
  .product-album-grid.compact,
  .aluminum-profile-grid {
    grid-template-columns: 1fr;
  }

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

  .gardenya-product-head {
    grid-template-columns: 1fr;
  }

  .gardenya-product-head img {
    width: 100%;
    min-height: 200px;
  }

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

  .color-swatch-grid {
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  }

  .color-swatch img {
    width: 46px;
    height: 46px;
  }

  .service-category-image {
    width: calc(100% + 44px);
    margin: -22px -22px 24px;
  }

  .svc-showcase {
    flex-direction: column;
  }

  .svc-showcase.reverse {
    flex-direction: column;
  }

  .svc-showcase-img {
    flex: none;
    min-height: 240px;
    width: 100%;
  }

  .svc-showcase-body {
    padding: 28px 26px 32px;
  }

  .services-anchor-nav {
    gap: 8px;
  }

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

  .form-col-sep {
    width: auto;
    height: 1px;
  }

  .form-product-col .product-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .form-product-col .product-choice-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 110px;
    padding: 0;
    align-items: end;
  }

  .form-product-col .product-choice-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .form-product-col .product-choice-card::after {
    content: "";
  }

  .form-product-col .product-choice-card span {
    padding: 10px;
    color: var(--color-white);
  }

  .form-product-col .product-choice-card:has(input:checked)::before {
    display: inline-flex;
  }

  .blog-detail-content p {
    font-size: 1rem;
    line-height: 1.74;
  }

  .hero-visual,
  .product-image-card,
  .visual-placeholder,
  .gallery-grid .visual-placeholder,
  .project-card .visual-placeholder {
    min-height: 260px;
  }

  .reference-strip,
  .reference-metrics,
  .reference-logo-gallery,
  .gallery-grid,
  .project-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .admin-topbar,
  .admin-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-topbar-status {
    width: 100%;
    margin-left: 0;
  }

  .admin-create-panel {
    position: static;
  }

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

  .morph-line {
    opacity: 0.22;
  }

  .morph-line-b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .morph-line {
    transform: none;
  }
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--color-line);
}

.lang-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}

.lang-btn:hover {
  color: var(--color-navy);
  background: rgba(16, 36, 63, 0.06);
}

.lang-btn.active {
  color: var(--color-navy);
  background: rgba(16, 36, 63, 0.08);
}

.lang-sep {
  font-size: 11px;
  color: var(--color-line);
  user-select: none;
}

@media (max-width: 991px) {
  .lang-switcher {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    padding: 6px 0;
  }
}
