@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --ink: #101114;
  --graphite: #25282d;
  --muted: #626a73;
  --line: #d8dde3;
  --surface: #f4f6f8;
  --surface-strong: #e8edf2;
  --white: #ffffff;
  --red: #d62828;
  --red-dark: #a91f1f;
  --green: #1f9d58;
  --shadow: 0 18px 60px rgba(16, 17, 20, 0.16);
  --hero-desktop-poster: image-set(
    url("assets/hero-desktop-poster.avif") type("image/avif"),
    url("assets/hero-desktop-poster.webp") type("image/webp"),
    url("assets/hero-desktop-poster.jpg") type("image/jpeg")
  );
  --hero-mobile-poster: image-set(
    url("assets/hero-mobile-poster.avif") type("image/avif"),
    url("assets/hero-mobile-poster.webp") type("image/webp"),
    url("assets/hero-mobile-poster.jpg") type("image/jpeg")
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 76px;
  padding: 12px 42px;
  color: var(--white);
  background: rgba(16, 17, 20, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

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

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(16, 17, 20, 0.94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo-picture {
  display: block;
  line-height: 0;
}

.brand-lockup img,
.brand-logo-image {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.brand-lockup span {
  white-space: nowrap;
}

.media-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 18px;
  content: "";
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-chevron {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(520px, calc(100vw - 48px));
  padding: 12px;
  background: rgba(16, 17, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(210, 50, 45, 0.18);
  border-color: rgba(210, 50, 45, 0.42);
}

.nav-dropdown-menu strong {
  font-size: 14px;
  line-height: 1.2;
}

.nav-dropdown-menu span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-cta,
.button,
.contact-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-search-toggle svg {
  width: 21px;
  height: 21px;
}

.header-search-toggle:hover,
.header-search-toggle:focus-visible,
.header-search-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.header-search-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16), 0 0 0 5px rgba(210, 50, 45, 0.54);
}

.header-search-toggle:active {
  transform: translateY(1px);
}

.header-cta {
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
}

.header-cta svg,
.button svg,
.contact-panel svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  cursor: pointer;
  outline: none;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.menu-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16), 0 0 0 5px rgba(210, 50, 45, 0.54);
}

.site-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 42px;
  display: grid;
  gap: 12px;
  width: min(520px, calc(100vw - 48px));
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.site-search-form input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(16, 17, 20, 0.14);
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.site-search-form input:focus {
  border-color: rgba(210, 50, 45, 0.6);
  box-shadow: 0 0 0 3px rgba(210, 50, 45, 0.12);
}

.site-search-form button {
  min-width: 70px;
  height: 46px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-search-suggestions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(16, 17, 20, 0.05);
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

.search-page-form input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  outline: none;
}

.search-page-form input:focus {
  border-color: rgba(214, 40, 40, 0.6);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.16);
}

.search-page-form button {
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.search-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.search-chip-list a {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--line);
}

.search-chip-list a:hover,
.search-chip-list a:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  overflow: hidden;
  background: var(--ink) var(--hero-desktop-poster) center / cover;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.92) 0%, rgba(16, 17, 20, 0.62) 45%, rgba(16, 17, 20, 0.32) 100%),
    linear-gradient(0deg, rgba(16, 17, 20, 0.72) 0%, rgba(16, 17, 20, 0.06) 42%);
}

.hero-content {
  align-self: end;
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 148px 0 112px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 68px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

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

.button {
  min-width: 170px;
  padding: 0 20px;
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-strip {
  position: absolute;
  right: 42px;
  bottom: 28px;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.hero-strip span {
  min-height: 58px;
  padding: 18px 20px;
  background: rgba(16, 17, 20, 0.55);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 88px 0;
}

#markalar,
#motor-kodlari,
#markalar,
#hizmetler,
#hakkimizda,
#iletisim {
  scroll-margin-top: 88px;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band {
  padding: 44px 0;
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.proof-layout h2,
.contact-layout h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-heading p,
.proof-layout p,
.contact-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

#markalar .section-heading {
  margin-bottom: 38px;
}

#markalar .section-heading h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

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

.brand-card,
.process-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brand-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(16, 17, 20, 0.11);
  background:
    radial-gradient(circle at 88% 14%, rgba(213, 39, 39, 0.08), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-card::before {
  position: absolute;
  right: 22px;
  bottom: -18px;
  z-index: -1;
  color: rgba(16, 17, 20, 0.035);
  content: attr(data-brand);
  font-size: 116px;
  font-weight: 900;
  line-height: 1;
}

.brand-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(213, 39, 39, 0.08));
  content: "";
}

.brand-card:hover,
.brand-card:focus-within {
  border-color: rgba(213, 39, 39, 0.22);
  box-shadow: 0 26px 60px rgba(16, 17, 20, 0.12);
  transform: translateY(-3px);
}

.brand-card__code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: #bd2525;
  background: linear-gradient(180deg, #fff7f7, #fff0f0);
  border: 1px solid rgba(213, 39, 39, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.brand-card h3,
.process-item h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-card p,
.process-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.brand-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(180deg, #17191d, #090a0d);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.brand-card a::after {
  margin-left: 8px;
  content: ">";
}

.brand-card a:hover,
.brand-card a:focus-visible {
  background: linear-gradient(180deg, #d92f2f, #b91f1f);
  transform: translateY(-1px);
}

.process-section {
  background: var(--surface);
}

.keyword-section {
  background: var(--surface);
}

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

.keyword-card,
.faq-grid article,
.subpage-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.keyword-card {
  padding: 24px;
}

.keyword-card h3,
.faq-grid h3,
.subpage-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.keyword-card p,
.faq-grid p,
.subpage-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.keyword-tags span,
.keyword-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--graphite);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.keyword-tags a:hover,
.keyword-tags a:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.faq-section {
  background: var(--white);
}

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

.faq-grid article {
  padding: 24px;
}

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

.process-item {
  min-height: 230px;
  padding: 26px;
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.proof-section {
  background: var(--graphite);
  color: var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.proof-layout p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.proof-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-list div {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list strong {
  font-size: 18px;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.contact-section {
  background: var(--surface-strong);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: start;
}

.contact-layout p {
  margin-top: 22px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-panel a {
  justify-content: flex-start;
  min-height: 50px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel a:nth-of-type(2) {
  background: var(--green);
}

.contact-panel a:last-child {
  color: var(--red);
  background: transparent;
  border: 1px solid var(--line);
}

.contact-panel span {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  padding: 34px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 42%),
    #0b0c0f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 32px;
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-inner > span:first-child {
  grid-column: 1;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.footer-inner > span:nth-child(2) {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.5;
}

.footer-address {
  grid-column: 1;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer-address::before {
  content: "Adres: ";
  color: rgba(255, 255, 255, 0.42);
  font-weight: 900;
}

.footer-address:hover,
.footer-address:focus-visible {
  color: var(--white);
}

.footer-service-area {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-links {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-social-link::after {
  content: attr(aria-label);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1;
}

.footer-social-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.footer-social-monogram {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.footer-social-link--sahibinden {
  background: linear-gradient(180deg, #ffea3d, #ffd400);
  border-color: rgba(255, 224, 0, 0.86);
  color: #000;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.52), 0 14px 28px rgba(255, 212, 0, 0.16);
}

.footer-social-link--sahibinden .footer-social-monogram {
  color: #000 !important;
}

.footer-social-link--sahibinden:hover,
.footer-social-link--sahibinden:focus-visible {
  background: linear-gradient(180deg, #fff173, #ffe000);
  border-color: #ffe000;
  color: #000;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 24px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-inner::before {
    top: -24px;
  }

  .footer-links {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 4px;
  }

  .footer-social-link {
    height: 40px;
  }
}

.subpage-main {
  padding-top: 76px;
}

.subpage-hero {
  padding: 92px 0 66px;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.92), rgba(16, 17, 20, 0.72)),
    var(--hero-desktop-poster) center / cover;
  color: var(--white);
}

.subpage-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
}

.subpage-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.75;
}

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

.subpage-content {
  padding: 70px 0;
}

.shop-section {
  padding: 76px 0 86px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 246, 249, 0.88)),
    var(--surface);
}

.shop-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 22px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.06);
}

.sidebar-group {
  display: grid;
  gap: 0;
}

.sidebar-group h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.sidebar-group a {
  display: flex;
  align-items: center;
  min-height: 42px;
  color: var(--graphite);
  border-bottom: 1px dashed #b8c0ca;
  font-weight: 750;
  text-decoration: none;
}

.sidebar-group a:hover,
.sidebar-group a:focus-visible {
  color: var(--red);
}

.sidebar-note {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.sidebar-note strong {
  font-size: 17px;
}

.sidebar-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

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

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.1);
}

.shop-toolbar h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}

.shop-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--white), #f4f6f8);
  border: 1px solid rgba(16, 17, 20, 0.11);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06);
  white-space: nowrap;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 452px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(16, 17, 20, 0.18);
  box-shadow: 0 24px 58px rgba(16, 17, 20, 0.14);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 174px;
  padding: 18px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(16, 17, 20, 0.05), rgba(16, 17, 20, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 44%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.product-card:nth-child(3n + 2) .product-media {
  background-position: 56% center;
}

.product-card:nth-child(3n) .product-media {
  background-position: 42% center;
}

.product-media span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(10, 11, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.14), 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-status {
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: #b82424;
  background: linear-gradient(180deg, #fff7f7, #fff0f0);
  border: 1px solid rgba(213, 39, 39, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.product-card h3 {
  margin: 18px 0 0;
  font-size: 23px;
  line-height: 1.2;
}

.product-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.64;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 20px;
  align-content: flex-start;
}

.product-meta span,
.model-tags span,
.product-guide-terms span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #323842;
  background: linear-gradient(180deg, #eef2f5, #e6ebf0);
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.model-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--white);
  background: linear-gradient(180deg, #d92f2f, #b91f1f);
  border: 1px solid rgba(214, 40, 40, 0.74);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.model-tags a:hover,
.model-tags a:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.product-media-link,
.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--red);
}

.product-actions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.product-actions .detail-link {
  background: linear-gradient(180deg, #17191d, #090a0d);
}

.product-actions .quote-link {
  background: linear-gradient(180deg, #22ad64, #159452);
  box-shadow: 0 12px 24px rgba(21, 148, 82, 0.18);
}

.product-actions a:hover,
.product-actions a:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.model-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 34px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.model-strip h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.model-strip p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.brand-seo-grid {
  margin-top: 18px;
}

.brand-faq-section {
  margin-top: 48px;
}

.detail-section {
  padding: 54px 0 76px;
  background: var(--surface);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--graphite);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--red);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.detail-media-panel,
.detail-summary,
.detail-info-card,
.product-guide-card,
.related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.06);
}

.detail-media-panel {
  position: relative;
  overflow: hidden;
}

.detail-media {
  position: relative;
  display: flex;
  align-items: end;
  width: 100%;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  text-align: left;
}

.detail-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.08), rgba(16, 17, 20, 0.82));
  content: "";
  pointer-events: none;
}

.detail-media-button {
  cursor: zoom-in;
}

.detail-media-button:focus-visible {
  outline: 3px solid rgba(214, 40, 40, 0.55);
  outline-offset: -6px;
}

.detail-media span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(16, 17, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 28px;
  font-weight: 900;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.detail-thumbs span {
  min-height: 58px;
  padding: 18px 12px;
  background: var(--white);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.detail-gallery-control {
  position: absolute;
  top: 190px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(10, 11, 14, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.detail-gallery-control:hover,
.detail-gallery-control:focus-visible {
  background: rgba(10, 11, 14, 0.88);
  transform: translateY(-1px);
}

.detail-gallery-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-gallery-control-prev {
  left: 18px;
}

.detail-gallery-control-next {
  right: 18px;
}

.detail-gallery-thumbs {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  padding: 8px;
  gap: 8px;
  background: #f1f4f8;
}

.detail-thumb-button {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 86px;
  padding: 0;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}

.detail-thumb-button span {
  display: block;
  width: 100%;
  min-height: 86px;
  padding: 0;
  background-position: center;
  background-size: cover;
}

.detail-thumb-button.is-active {
  border-color: var(--red);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 7, 0.9);
  border: 0;
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1120px, 100%);
  max-height: calc(100svh - 44px);
}

.product-lightbox-image-frame {
  position: relative;
  display: inline-grid;
  place-items: center;
  max-width: 100%;
  max-height: calc(100svh - 44px);
}

.product-lightbox-dialog img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100svh - 44px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.46);
}

.product-lightbox-close,
.product-lightbox-control {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(10, 11, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.product-lightbox-close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
}

.product-lightbox-control {
  top: 50%;
  width: 48px;
  height: 58px;
  transform: translateY(-50%);
}

.product-lightbox-prev {
  left: 12px;
}

.product-lightbox-next {
  right: 12px;
}

.product-lightbox-close svg,
.product-lightbox-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.lightbox-open {
  overflow: hidden;
}

.detail-summary {
  padding: 28px;
}

.detail-summary h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
}

.detail-summary p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.detail-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--graphite);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.quote-box {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.quote-box strong {
  font-size: 20px;
}

.quote-box span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.quote-actions a:first-child {
  background: var(--green);
  color: var(--white);
}

.quote-actions a:last-child {
  background: var(--white);
  color: var(--ink);
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.detail-info-card {
  padding: 24px;
}

.detail-info-card h2,
.related-products h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.detail-info-card p,
.detail-info-card li {
  color: var(--muted);
  line-height: 1.68;
}

.detail-info-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.product-guide-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
  margin-top: 44px;
  padding: 34px 0;
  border-top: 1px solid rgba(16, 17, 20, 0.1);
  border-bottom: 1px solid rgba(16, 17, 20, 0.1);
}

.product-guide-copy h2,
.product-process-copy h2,
.product-faq-section .section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.product-guide-copy p:last-child,
.product-process-copy p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.product-guide-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  justify-content: flex-end;
}

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

.product-guide-card {
  padding: 24px;
}

.product-guide-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.product-guide-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.product-process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  margin-top: 44px;
}

.product-process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: product-process;
}

.product-process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-process-list span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.product-process-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.product-process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-faq-section {
  margin-top: 46px;
}

.related-products {
  margin-top: 34px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 126px;
  padding: 12px;
  text-decoration: none;
}

.related-card-media {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 102px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 7px;
}

.related-card-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.04), rgba(16, 17, 20, 0.72));
  content: "";
  pointer-events: none;
}

.related-card-media em {
  position: relative;
  z-index: 2;
  margin: 8px;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(10, 11, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.related-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.related-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.related-card-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.related-card:hover strong,
.related-card:focus-visible strong {
  color: var(--red);
}

.blog-related {
  margin-top: 42px;
}

.blog-related-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.blog-related-heading .section-kicker {
  margin: 0;
}

.blog-related-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.05;
}

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

.blog-related-card {
  display: grid;
  grid-template-rows: 178px minmax(0, 1fr);
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 17, 20, 0.08);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-related-card:hover,
.blog-related-card:focus-visible {
  border-color: rgba(211, 50, 44, 0.26);
  box-shadow: 0 22px 54px rgba(16, 17, 20, 0.12);
  transform: translateY(-2px);
}

.blog-related-media {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  min-height: 178px;
  padding: 14px;
  overflow: hidden;
  background: var(--ink);
}

.blog-related-media:not(.blog-related-media-placeholder)::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.06), rgba(16, 17, 20, 0.74));
  content: "";
  pointer-events: none;
}

.blog-related-media-placeholder {
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.94), rgba(39, 43, 48, 0.88)),
    var(--hero-desktop-poster) center / cover;
}

.blog-related-media em,
.blog-related-media small {
  position: relative;
  z-index: 2;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(10, 11, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.blog-related-media small {
  margin-left: auto;
}

.blog-related-copy {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 18px;
}

.blog-related-copy strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.blog-related-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-related-copy b {
  margin-top: 2px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.blog-related-card:hover .blog-related-copy strong,
.blog-related-card:focus-visible .blog-related-copy strong {
  color: var(--red);
}

.catalog-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.catalog-heading-spaced {
  margin-top: 48px;
}

.catalog-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
}

.catalog-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.catalog-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.catalog-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.search-hero .section-inner {
  display: grid;
  gap: 18px;
}

.search-hero .search-page-form {
  max-width: 720px;
  margin-top: 8px;
}

.search-empty-panel {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(16, 17, 20, 0.07);
}

.search-empty-panel h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.search-empty-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.search-empty-panel .button {
  width: fit-content;
  margin-top: 6px;
}

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

.search-result-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.06);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.search-result-card span {
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: #bd2525;
  background: #fff2f2;
  border: 1px solid rgba(213, 39, 39, 0.18);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.search-result-card strong {
  font-size: 22px;
  line-height: 1.22;
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.search-result-card em {
  align-self: end;
  color: var(--graphite);
  font-style: normal;
  font-weight: 900;
}

.search-result-card:hover,
.search-result-card:focus-visible {
  border-color: rgba(213, 39, 39, 0.24);
  box-shadow: 0 22px 52px rgba(16, 17, 20, 0.1);
  transform: translateY(-2px);
}

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

.subpage-card {
  padding: 24px;
}

.subpage-copy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
  margin-top: 46px;
}

.subpage-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.subpage-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.blog-section {
  background: var(--white);
}

.keyword-section + .blog-section {
  background: var(--white);
}

.blog-heading {
  margin-top: 44px;
}

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

.blog-card,
.featured-blog-card,
.blog-article,
.blog-quote-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.06);
}

.blog-card {
  overflow: hidden;
}

.blog-card-media,
.featured-blog-media,
.blog-article-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
  justify-content: end;
  min-height: 190px;
  padding: 16px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.blog-card-media:not(.blog-media-placeholder)::before,
.featured-blog-media:not(.blog-media-placeholder)::before,
.blog-article-media:not(.blog-media-placeholder)::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.04), rgba(16, 17, 20, 0.72));
  content: "";
  pointer-events: none;
}

.blog-card-media span,
.featured-blog-media span,
.blog-article-media span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  background: rgba(16, 17, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.blog-card-media strong,
.featured-blog-media strong {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.blog-card-media em,
.featured-blog-media em,
.blog-article-media em {
  position: relative;
  z-index: 2;
  max-width: 78%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
}

.blog-media-placeholder {
  position: relative;
  overflow: hidden;
  padding-top: 54px;
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.96), rgba(37, 40, 45, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 34px);
  align-items: flex-start;
  justify-content: space-between;
}

.blog-media-placeholder::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

.blog-media-placeholder::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.16);
  content: "ES-EY";
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
}

.blog-media-placeholder > * {
  position: relative;
  z-index: 1;
}

.blog-media-placeholder span,
.blog-media-placeholder strong {
  align-self: flex-start;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 20px;
}

.blog-card h3,
.featured-blog-body h2 {
  margin: 0;
  line-height: 1.18;
}

.blog-card h3 {
  font-size: 23px;
}

.blog-card h3 a,
.featured-blog-body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible,
.featured-blog-body h2 a:hover,
.featured-blog-body h2 a:focus-visible {
  color: var(--red);
}

.blog-card p,
.featured-blog-body p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.blog-read-link::after {
  margin-left: 8px;
  content: ">";
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 44px;
}

.featured-blog-media {
  min-height: 360px;
}

.featured-blog-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.featured-blog-body time,
.blog-article-header time {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.featured-blog-body h2 {
  margin-top: 12px;
  font-size: 38px;
}

.blog-section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.blog-detail-section {
  padding: 54px 0 76px;
  background: var(--surface);
}

.blog-article {
  overflow: hidden;
}

.blog-article-header {
  padding: 34px 34px 28px;
}

.blog-article-header h1 {
  max-width: 920px;
  margin: 0;
  font-size: 50px;
  line-height: 1.04;
}

.blog-article-header p {
  max-width: 820px;
  margin: 18px 0 16px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.blog-article-media {
  min-height: 430px;
}

.blog-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 34px 0;
}

.blog-topic-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  background: #f4f6f8;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.blog-topic-links a:hover,
.blog-topic-links a:focus-visible,
.blog-topic-links a[aria-current="page"] {
  border-color: rgba(211, 50, 44, 0.28);
  background: #fff0ef;
  color: var(--red);
  transform: translateY(-1px);
}

.blog-article-content {
  max-width: 850px;
  padding: 34px;
}

.blog-article-content p {
  margin: 0 0 20px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.85;
}

.blog-article-content .blog-internal-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(211, 50, 44, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.blog-article-content .blog-internal-link:hover,
.blog-article-content .blog-internal-link:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--red);
}

.blog-quote-panel {
  display: grid;
  gap: 10px;
  margin: 0 34px 34px;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
}

.blog-quote-panel strong {
  font-size: 21px;
}

.blog-quote-panel span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.blog-quote-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 15px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

/* Premium dark visual layer */
:root {
  --graphite: #e7edf5;
  --muted: #aab4c2;
  --line: rgba(232, 238, 247, 0.13);
  --surface: #0d1117;
  --surface-strong: #161d26;
  --red: #ef3d3d;
  --red-dark: #b72828;
  --green: #20b767;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --premium-bg: #080a0e;
  --premium-bg-soft: #0d1117;
  --premium-panel: #151a22;
  --premium-panel-strong: #1b232e;
  --premium-panel-soft: #10151c;
  --premium-text: #f2f5f9;
  --premium-muted: #aab4c2;
  --premium-subtle: #7f8998;
  --premium-border: rgba(232, 238, 247, 0.13);
  --premium-border-strong: rgba(232, 238, 247, 0.22);
  --premium-glow: 0 22px 64px rgba(0, 0, 0, 0.44);
}

html {
  background: var(--premium-bg);
}

body {
  color: var(--premium-text);
  background:
    linear-gradient(180deg, #090b0f 0%, #0d1117 38%, #080a0e 100%);
  color-scheme: dark;
}

::selection {
  color: var(--white);
  background: rgba(239, 61, 61, 0.72);
}

.site-header,
.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.86);
  border-bottom-color: rgba(232, 238, 247, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.nav-dropdown-menu,
.site-search-panel {
  color: var(--premium-text);
  background: rgba(17, 22, 30, 0.96);
  border-color: var(--premium-border);
  box-shadow: var(--premium-glow);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(239, 61, 61, 0.14);
}

.site-search-form input,
.search-page-form input {
  color: var(--premium-text);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--premium-border);
}

.site-search-form input::placeholder,
.search-page-form input::placeholder {
  color: var(--premium-subtle);
}

.site-search-form button {
  color: var(--white);
  background: linear-gradient(180deg, #ef3d3d, #b72828);
}

.site-search-suggestions a {
  color: var(--premium-muted);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--premium-border);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(8, 10, 14, 0.74) 45%, rgba(8, 10, 14, 0.32) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.12) 48%);
}

.hero-strip {
  background: rgba(232, 238, 247, 0.16);
  border-color: rgba(232, 238, 247, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-strip span {
  background: rgba(12, 16, 22, 0.72);
}

.section,
.blog-section,
.keyword-section + .blog-section {
  background: transparent;
}

.process-section,
.keyword-section,
.faq-section,
.contact-section,
.subpage-main,
.subpage-content,
.shop-section,
.detail-section,
.blog-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0) 38%),
    var(--premium-bg);
}

.shop-section,
.detail-section,
.blog-detail-section {
  background:
    linear-gradient(180deg, #111720 0%, #0b0f15 54%, #080a0e 100%);
}

.intro-band,
.proof-section {
  background: #0a0d12;
  border-top: 1px solid var(--premium-border);
  border-bottom: 1px solid var(--premium-border);
}

.section-heading p,
.intro-grid p:last-child,
.proof-layout p,
.contact-layout p,
.brand-card p,
.process-item p,
.keyword-card p,
.faq-grid p,
.subpage-card p,
.product-card p,
.model-strip p:last-child,
.detail-summary p,
.detail-info-card p,
.detail-info-card li,
.product-guide-copy p:last-child,
.product-process-copy p:last-child,
.product-guide-card p,
.product-process-list p,
.related-card-copy span,
.catalog-heading p:last-child,
.catalog-list p,
.search-empty-panel p,
.search-result-card p,
.subpage-copy p,
.blog-card p,
.featured-blog-body p,
.blog-article-header p,
.blog-article-content p,
.blog-related-copy span {
  color: var(--premium-muted);
}

.brand-card,
.process-item,
.keyword-card,
.faq-grid article,
.subpage-card,
.shop-sidebar,
.product-card,
.model-strip,
.detail-media-panel,
.detail-summary,
.detail-info-card,
.product-guide-card,
.product-process-list li,
.related-card,
.blog-related-card,
.catalog-list li,
.search-empty-panel,
.search-result-card,
.blog-card,
.featured-blog-card,
.blog-article,
.contact-panel {
  color: var(--premium-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    var(--premium-panel);
  border-color: var(--premium-border);
  box-shadow: var(--premium-glow);
}

.brand-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    var(--premium-panel);
}

.brand-card::before {
  color: rgba(255, 255, 255, 0.045);
}

.brand-card:hover,
.brand-card:focus-within,
.product-card:hover,
.product-card:focus-within,
.blog-related-card:hover,
.blog-related-card:focus-visible,
.search-result-card:hover,
.search-result-card:focus-visible {
  border-color: rgba(239, 61, 61, 0.34);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.5);
}

.brand-card__code,
.product-status,
.search-result-card span {
  color: #ffb4b4;
  background: rgba(239, 61, 61, 0.12);
  border-color: rgba(239, 61, 61, 0.28);
}

.brand-card a,
.button-dark,
.product-actions .detail-link,
.seo-links a {
  color: var(--white);
  background: linear-gradient(180deg, #222a36, #0d1117);
  border: 1px solid var(--premium-border);
}

.button-primary,
.header-cta,
.product-actions .quote-link,
.quote-actions a:first-child,
.blog-quote-panel a,
.search-page-form button,
.contact-panel a:nth-of-type(2) {
  background: linear-gradient(180deg, #27c978, #168c50);
  box-shadow: 0 16px 34px rgba(32, 183, 103, 0.24);
}

.button-secondary,
.header-search-toggle,
.menu-toggle {
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--premium-border);
}

.shop-toolbar {
  border-bottom-color: var(--premium-border);
}

.shop-toolbar span,
.product-meta span,
.model-tags span,
.product-guide-terms span,
.keyword-tags span,
.keyword-tags a,
.detail-badges span,
.detail-thumbs span,
.search-chip-list a,
.blog-topic-links a {
  color: var(--premium-text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.046));
  border-color: var(--premium-border);
}

.model-tags a,
.keyword-tags a:hover,
.keyword-tags a:focus-visible,
.blog-topic-links a:hover,
.blog-topic-links a:focus-visible,
.blog-topic-links a[aria-current="page"],
.search-chip-list a:hover,
.search-chip-list a:focus-visible {
  color: var(--white);
  background: linear-gradient(180deg, #ef3d3d, #b72828);
  border-color: rgba(239, 61, 61, 0.68);
}

.model-tags a:hover,
.model-tags a:focus-visible {
  color: var(--white);
  background: linear-gradient(180deg, #262f3c, #151b24);
  border-color: var(--premium-border-strong);
}

.sidebar-group a {
  color: var(--premium-muted);
  border-bottom-color: rgba(232, 238, 247, 0.14);
}

.sidebar-note,
.quote-box,
.blog-quote-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #090d13;
  border: 1px solid var(--premium-border);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.detail-thumbs,
.detail-gallery-thumbs {
  background: rgba(232, 238, 247, 0.1);
}

.detail-thumb-button {
  background: var(--premium-panel-strong);
  border-color: rgba(232, 238, 247, 0.08);
}

.product-process-list span {
  color: var(--white);
  background: linear-gradient(180deg, #ef3d3d, #b72828);
}

.product-guide-section {
  border-top-color: var(--premium-border);
  border-bottom-color: var(--premium-border);
}

.breadcrumbs {
  color: var(--premium-subtle);
}

.breadcrumbs a,
.product-process-list strong,
.related-card strong,
.blog-related-heading h2,
.blog-related-copy strong,
.search-result-card,
.search-result-card em,
.blog-article-content .blog-internal-link:hover,
.blog-article-content .blog-internal-link:focus-visible {
  color: var(--premium-text);
}

.blog-article-content .blog-internal-link {
  color: #ff6969;
  text-decoration-color: rgba(255, 105, 105, 0.42);
}

.blog-card-media:not(.blog-media-placeholder)::before,
.featured-blog-media:not(.blog-media-placeholder)::before,
.blog-article-media:not(.blog-media-placeholder)::before,
.blog-related-media:not(.blog-related-media-placeholder)::before,
.detail-media::before,
.related-card-media::before,
.product-media::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.05), rgba(5, 7, 10, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 48%, rgba(0, 0, 0, 0.18));
}

.contact-panel a:last-child,
.quote-actions a:last-child {
  color: var(--premium-text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--premium-border);
}

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

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 46%),
    #05070a;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 22px;
  }

  .header-actions {
    gap: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 10px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open .nav-dropdown {
    display: grid;
    gap: 6px;
  }

  .site-nav.is-open .nav-dropdown::after {
    display: none;
  }

  .site-nav.is-open .nav-trigger {
    justify-content: space-between;
  }

  .site-nav.is-open .nav-chevron {
    transform: rotate(180deg);
  }

  .site-nav.is-open .nav-dropdown-menu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav.is-open .nav-dropdown-menu a {
    min-height: 54px;
    padding: 10px 12px;
  }

  .site-search-panel {
    right: 22px;
    width: min(520px, calc(100vw - 44px));
  }

  .site-nav.is-open a {
    min-height: 48px;
    padding: 14px;
  }

  .site-nav.is-open a::after {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    padding: 124px 0 160px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-strip {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 44px;
    padding: 12px 14px;
    text-align: left;
  }

  .intro-grid,
  .section-heading,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker {
    margin-bottom: -12px;
  }

  .brand-grid,
  .process-grid,
  .subpage-grid,
  .product-grid,
  .blog-grid,
  .catalog-list,
  .search-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .keyword-grid,
  .faq-grid,
  .subpage-copy,
  .shop-layout,
  .model-strip,
  .detail-layout,
  .product-guide-section,
  .product-process-section,
  .featured-blog-card {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .proof-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-info-grid,
  .product-guide-grid,
  .related-grid,
  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-guide-terms {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-search-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-search-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .site-search-form {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

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

  .brand-lockup img {
    width: 128px;
    height: auto;
  }

  .brand-logo-image {
    width: 128px;
  }

  .brand-lockup span {
    max-width: 156px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section {
    padding: 62px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    display: block;
    min-height: 100svh;
    background: var(--ink) var(--hero-mobile-poster) center / cover no-repeat;
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    height: calc(100svh - 66px);
    margin-top: 66px;
    background: var(--ink);
    object-fit: cover;
    object-position: center;
    filter: none;
  }

  .hero-shade,
  .hero-content,
  .hero-strip {
    display: none;
  }

  .intro-grid h2,
  .section-heading h2,
  .proof-layout h2,
  .contact-layout h2 {
    font-size: 31px;
  }

  .brand-grid,
  .process-grid,
  .keyword-grid,
  .faq-grid,
  .subpage-grid,
  .product-grid,
  .blog-grid,
  .product-actions,
  .detail-info-grid,
  .product-guide-grid,
  .related-grid,
  .detail-thumbs,
  .catalog-list,
  .search-result-grid {
    grid-template-columns: 1fr;
  }

  .brand-card,
  .process-item,
  .contact-panel,
  .keyword-card,
  .faq-grid article,
  .subpage-card,
  .product-guide-card,
  .catalog-list li {
    padding: 20px;
  }

  .catalog-heading h2 {
    font-size: 31px;
  }

  .search-empty-panel {
    padding: 24px;
  }

  .search-empty-panel h2 {
    font-size: 28px;
  }

  .subpage-main {
    padding-top: 66px;
  }

  .subpage-hero {
    padding: 58px 0;
  }

  .subpage-hero h1 {
    font-size: 38px;
  }

  .subpage-content {
    padding: 54px 0;
  }

  .shop-section {
    padding: 56px 0 66px;
  }

  .shop-sidebar,
  .model-strip {
    padding: 18px;
  }

  .shop-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .shop-toolbar h2 {
    font-size: 36px;
  }

  .product-card {
    min-height: 0;
  }

  .product-media {
    min-height: 158px;
  }

  .product-body {
    padding: 20px;
  }

  .detail-section {
    padding: 36px 0 58px;
  }

  .detail-media {
    min-height: 300px;
  }

  .detail-gallery-control {
    top: 126px;
    width: 40px;
    height: 40px;
  }

  .detail-gallery-control-prev {
    left: 12px;
  }

  .detail-gallery-control-next {
    right: 12px;
  }

  .detail-gallery-thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .detail-thumb-button {
    flex: 0 0 88px;
  }

  .detail-thumb-button span {
    min-height: 66px;
  }

  .related-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding: 10px;
  }

  .blog-related-heading {
    display: grid;
    gap: 6px;
  }

  .blog-related-heading h2 {
    font-size: 30px;
  }

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

  .blog-related-card {
    grid-template-rows: 164px minmax(0, 1fr);
  }

  .blog-related-media {
    min-height: 164px;
  }

  .blog-related-copy {
    padding: 16px;
  }

  .blog-related-copy strong {
    font-size: 21px;
  }

  .related-card-media {
    min-height: 88px;
  }

  .related-card-media em {
    margin: 7px;
    padding: 4px 7px;
    font-size: 12px;
  }

  .related-card strong {
    font-size: 17px;
  }

  .related-card-copy span {
    font-size: 14px;
  }

  .detail-summary {
    padding: 22px;
  }

  .detail-summary h1 {
    font-size: 36px;
  }

  .featured-blog-media,
  .blog-article-media {
    min-height: 260px;
  }

  .featured-blog-body,
  .blog-article-header,
  .blog-article-content {
    padding: 24px;
  }

  .blog-topic-links {
    padding: 20px 24px 0;
  }

  .blog-topic-links a {
    min-height: 36px;
    font-size: 13px;
  }

  .featured-blog-body h2,
  .blog-article-header h1 {
    font-size: 34px;
  }

  .blog-card-body {
    min-height: 0;
  }

  .blog-quote-panel {
    margin: 0 24px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media {
    display: none;
  }

  .hero {
    background: linear-gradient(rgba(16, 17, 20, 0.74), rgba(16, 17, 20, 0.82)), var(--hero-desktop-poster) center / cover;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 640px) {
  .hero {
    background: var(--ink) var(--hero-mobile-poster) center / cover no-repeat;
  }
}
