/* KEYMEN ENERJİ — Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Sora:wght@400;500;600;700&display=swap');

/* ── Tokens (Makelsan-inspired light holding) ── */
:root {
  --bg: #FFFFFF;
  --bg-raised: #F5F6F8;
  --bg-soft: #EEF0F3;
  --bg-light: #F8F9FA;
  --ink: #1A1D21;
  --ink-dim: #5C6370;
  --ink-dark: #101114;
  --red: #E01E2B;
  --red-deep: #C41824;
  --line: rgba(26, 29, 33, 0.1);
  --line-dark: rgba(16, 17, 20, 0.12);
  --radius: 4px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --top-bar-h: 40px;
  --header-h: 132px;
  --header-h-shrink: 96px;
  --chrome-pad: clamp(1.5rem, 5vw, 3rem);
  --chrome-h: calc(var(--top-bar-h) + var(--header-h));
  --hero-home-h: clamp(720px, 92vh, 960px);
  --hero-home-inner: calc(var(--hero-home-h) - var(--chrome-h));
  --container: 1200px;
  --container-wide: 1400px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --dur-fast: 0.22s;
  --dur-med: 0.45s;
  --dur-slow: 0.75s;
  --shadow-card: 0 4px 20px rgba(26, 29, 33, 0.08);
  --shadow-lift: 0 12px 32px rgba(26, 29, 33, 0.12);
  --shadow-header: 0 1px 0 var(--line), 0 4px 16px rgba(26, 29, 33, 0.06);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p + p {
  margin-top: 1rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}

.section-label--dark {
  color: var(--red-deep);
}

.section-label--dark::before {
  background: var(--red-deep);
}

.section-label--center {
  justify-content: center;
}

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-dim);
}

.lead--dark {
  color: #4a4f57;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section--dark {
  background: var(--bg-raised);
  color: var(--ink);
}

.section--raised {
  background: var(--bg-soft);
  color: var(--ink);
}

.section--light {
  background: var(--bg-light);
  color: var(--ink-dark);
}

.grid-2 {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .grid-2--center {
    align-items: center;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform var(--dur-fast) var(--ease-spring);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink-dark);
  border-color: var(--line-dark);
}

.btn--outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Top bar ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--top-bar-h);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--chrome-pad);
}

.top-bar__tagline {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  min-width: 0;
}

.tagline-rotator {
  position: relative;
  display: block;
  height: 1.25rem;
  min-width: clamp(220px, 28vw, 420px);
  overflow: hidden;
}

.tagline-rotator__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tagline-rotator__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.tagline-rotator__item.is-exiting {
  opacity: 0;
  transform: translateY(-100%);
}

@media (min-width: 900px) {
  .top-bar__tagline {
    display: flex;
  }
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.top-bar__link:hover {
  color: #fff;
}

.top-bar__link--emph {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.icon-16 {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.top-bar__tagline .icon-16 {
  fill: currentColor;
  stroke: none;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: var(--top-bar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-header);
  transition: height 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-shrunk {
  height: var(--header-h-shrink);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  height: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--chrome-pad);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo img {
  height: 64px;
  width: auto;
  max-width: min(280px, 42vw);
  object-fit: contain;
  object-position: left center;
  transition: height 0.3s var(--ease);
}

@media (min-width: 768px) {
  .site-header__logo img {
    height: 120px;
    max-width: 320px;
  }
}

.site-header__cluster {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

@media (min-width: 1024px) {
  .site-header__cluster {
    display: flex;
  }

  .site-header__cluster .site-nav {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    flex-wrap: nowrap;
    min-width: 0;
  }
}

@media (max-width: 1280px) {
  .site-nav__link--aux {
    display: none;
  }
}

@media (max-width: 1199px) {
  .site-header__tools {
    display: none;
  }

  .site-nav__link {
    padding: 0.5rem 0.65rem;
    font-size: 0.8125rem;
  }
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-left: 0.75rem;
  border-left: 1px solid var(--line);
}

.header-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.header-tool-btn:hover {
  color: var(--red);
  border-color: var(--red);
}

.header-tool-btn--login {
  background: var(--ink-dark);
  border-color: var(--ink-dark);
  color: #fff;
}

.header-tool-btn--login:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.site-nav__dropdown--tools {
  right: 0;
  left: auto;
  min-width: 200px;
}

.site-nav__dropdown--tools .share-action {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink-dim);
  cursor: pointer;
}

.site-nav__dropdown--tools .share-action:hover {
  color: var(--ink);
  background: var(--bg-raised);
}

.site-nav__dropdown--mega {
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: min(720px, 92vw);
  padding: 1.25rem 1.5rem;
}

.site-nav__item.is-open > .site-nav__dropdown--mega,
.site-nav__item--mega:focus-within > .site-nav__dropdown--mega {
  transform: translateX(-50%) translateY(0);
}

.site-nav__mega-grid {
  display: grid;
  gap: 1.5rem 2rem;
}

@media (min-width: 640px) {
  .site-nav__mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-nav__mega-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.site-nav__dropdown--mega a {
  font-size: 0.8125rem;
}

.site-nav__item.is-open > .header-tool-btn svg {
  transform: rotate(0);
}

.site-header.is-shrunk .site-header__logo img {
  height: 72px;
}

/* Nav hidden on mobile; shown inside cluster on desktop */
.site-nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__inner .site-nav {
    margin-left: 0;
  }
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-dark);
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav__link:hover {
  color: var(--red);
}

.site-nav__link.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.site-nav__link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}

/* Dropdown */
.site-nav__item {
  position: relative;
}

.site-nav__item.is-open > .site-nav__link svg {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition:
    opacity var(--dur-fast) var(--ease),
    visibility var(--dur-fast) var(--ease),
    transform var(--dur-med) var(--ease-out);
}

.site-nav__item.is-open > .site-nav__dropdown,
.site-nav__item:focus-within > .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.site-nav__dropdown a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--ink-dim);
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus-visible {
  color: var(--ink);
  background: var(--bg-raised);
  border-left-color: var(--red);
}

/* Mobile toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.menu-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.is-active .menu-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: var(--chrome-h) 0 0 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--line);
  overflow-y: auto;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav__link {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-nav__accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.mobile-nav__accordion-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.mobile-nav__accordion.is-open .mobile-nav__accordion-btn svg {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
}

.mobile-nav__accordion.is-open .mobile-nav__sub {
  display: block;
}

.mobile-nav__sub a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--ink-dim);
}

.mobile-nav__sub a:hover {
  color: var(--red);
}

.mobile-nav__utility {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.mobile-nav__utility a:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

/* ── Side CTA tabs (Makelsan-style) ── */
.side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 850;
  display: none;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 1200px) {
  .side-cta {
    display: flex;
  }
}

.side-cta__tab {
  position: relative;
  overflow: hidden;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 1rem 0.625rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.side-cta__tab::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.12) 65%,
    transparent 100%
  );
  transform: skewX(-18deg) rotate(180deg);
  pointer-events: none;
}

.side-cta__tab--alt::after {
  animation: side-cta-shimmer 5.5s ease-in-out infinite;
}

.side-cta__tab:not(.side-cta__tab--alt)::after {
  animation: side-cta-shimmer 5.5s ease-in-out 2.75s infinite;
}

@keyframes side-cta-shimmer {
  0%, 72% { left: -120%; opacity: 0; }
  78% { opacity: 1; }
  100% { left: 180%; opacity: 0; }
}

.side-cta__tab:hover {
  background: var(--red-deep);
  transform: rotate(180deg) translateX(-2px);
}

.side-cta__tab--alt {
  background: #E67E22;
}

.side-cta__tab--alt:hover {
  background: #D35400;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--chrome-h);
  overflow: hidden;
}

.hero--inner {
  min-height: 50vh;
  align-items: center;
}

.hero--light {
  min-height: auto;
  align-items: stretch;
  background: linear-gradient(135deg, #fff 0%, var(--bg-light) 55%, var(--bg-soft) 100%);
  padding-bottom: 0;
}

.hero--light .hero__overlay {
  display: none;
}

.hero__split {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr 1.05fr;
  }
}

.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 72% 45%;
}

.hero--light .hero__title {
  color: var(--ink-dark);
}

.hero--light .hero__text {
  color: var(--ink-dim);
}

/* Feature cards below hero */
.feature-cards {
  padding-block: 0 clamp(2rem, 4vw, 3rem);
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.feature-cards__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .feature-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(224, 30, 43, 0.08);
  color: var(--red);
  border-radius: var(--radius);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-dark);
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--ink-dim);
  line-height: 1.55;
  flex: 1;
}

.feature-card__arrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ana sayfa hero görselindeki gömülü yazıları (logo + slogan) kadraj dışına iter */
.hero--home .hero__bg img {
  transform: scale(1.35);
  transform-origin: 72% 45%;
  object-position: 72% 45%;
  filter: saturate(0.9);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 249, 250, 0.75) 50%, rgba(224, 30, 43, 0.08) 100%),
    linear-gradient(to top, var(--bg) 5%, rgba(255, 255, 255, 0.5) 50%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero__inner {
  max-width: 820px;
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__text {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Power line motif */
.power-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.power-line--hero-h {
  bottom: 28%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 15%, var(--line) 85%, transparent 100%);
}

.power-line--hero-v {
  top: 20%;
  right: 12%;
  width: 1px;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
}

.power-line__pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red), 0 0 24px rgba(224, 30, 43, 0.4);
}

.power-line--hero-h .power-line__pulse {
  top: 50%;
  transform: translate(-50%, -50%);
  animation: power-flow-h 6s linear infinite;
}

.power-line--hero-v .power-line__pulse {
  left: 50%;
  transform: translate(-50%, -50%);
  animation: power-flow-v 5s linear infinite;
}

.power-line__glow {
  position: absolute;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
}

.power-line--hero-h .power-line__glow {
  top: -0.5px;
  animation: power-glow-h 6s linear infinite;
}

@keyframes power-flow-h {
  0% { left: 5%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 95%; opacity: 0; }
}

@keyframes power-flow-v {
  0% { top: 10%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

@keyframes power-glow-h {
  0% { left: 5%; }
  100% { left: 95%; }
}

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  border-left-color: var(--red);
  border-left-width: 2px;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.card--light {
  background: #fff;
  border-color: var(--line-dark);
}

.card--light:hover {
  border-left-color: var(--red);
}

.card__link {
  display: block;
  padding: 1.5rem;
  height: 100%;
}

.card__title {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s var(--ease);
}

.card:hover .card__title {
  color: var(--red);
}

.card__text {
  font-size: 0.875rem;
  color: var(--ink-dim);
  line-height: 1.6;
}

.card--light .card__text {
  color: #4a4f57;
}

.card__arrow {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--red);
}

/* Service card variants */
.service-card--featured {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .service-card--featured {
    grid-column: span 2;
  }

  .service-card--featured .card__link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.service-card--featured .card__text {
  font-size: 0.9375rem;
}

/* Service compact row */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-row:hover {
  border-left: 2px solid var(--red);
  transform: translateX(4px);
}

.service-row__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
}

.service-row__arrow {
  flex-shrink: 0;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.service-row:hover .service-row__arrow {
  color: var(--red);
  transform: translateX(4px);
}

/* Quick link cards */
.quick-links {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.quick-link:hover {
  border-left: 2px solid var(--red);
  transform: translateY(-2px);
}

.quick-link__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  color: var(--red);
}

.quick-link__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-dark);
}

/* Product category */
.product-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-row {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
}

@media (min-width: 768px) {
  .product-row {
    grid-template-columns: 220px 1fr auto;
    gap: 2rem;
  }
}

.product-row:first-child {
  border-top: 1px solid var(--line-dark);
}

.product-row__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-dark);
}

.product-row__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dark);
  background: var(--bg-light);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.badge--accent {
  color: var(--red-deep);
  border-color: rgba(224, 30, 43, 0.25);
  background: rgba(224, 30, 43, 0.06);
}

.product-visual {
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}

/* Sector band */
.sectors {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .sectors {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sectors {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sector-item {
  padding: 2rem 1.5rem;
  background: var(--bg-raised);
  text-align: center;
  transition: background 0.25s var(--ease);
}

.sector-item:hover {
  background: #fff;
}

.sector-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--red);
}

.sector-item__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ISO certificates */
.iso-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .iso-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iso-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.iso-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.iso-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.iso-card__label {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dark);
  text-align: center;
  border-top: 1px solid var(--line-dark);
}

/* ── Check list ── */
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E01E2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.check-list--dark li {
  color: var(--ink-dark);
}

/* ── Two-column sticky image ── */
.content-split {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 768px) {
  .content-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .content-split__media {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

.content-split__media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.content-split--light .content-split__media img {
  border-color: var(--line-dark);
}

/* ── CTA Band ── */
.cta-band {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--bg-raised);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.cta-band__power {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-band__phone {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.cta-band__phone:hover {
  color: var(--red);
}

.cta-band__email {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}

.cta-band__email:hover {
  color: var(--red);
}

.cta-band__lead {
  max-width: 520px;
  margin-inline: auto;
}

/* ── Contact form ── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink-dark);
  transition: border-color 0.2s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 2rem;
  text-align: center;
  background: rgba(224, 30, 43, 0.08);
  border: 1px solid rgba(224, 30, 43, 0.25);
  border-radius: var(--radius);
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--red);
  border-radius: var(--radius);
  color: #fff;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ink-dark);
}

.form-success__text {
  color: #4a4f57;
}

.contact-info-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--ink-dim);
}

.contact-info-list svg {
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--red);
}

.contact-info-list a:hover {
  color: var(--red);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  padding-block: 0;
}

.site-footer > .container {
  padding-top: 0;
}

.site-footer__strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--red);
  color: #fff;
  margin-bottom: 0;
}

.site-footer__strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) var(--chrome-pad);
  max-width: none;
}

.site-footer__strip-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.site-footer__strip-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__strip-link {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s var(--ease);
}

.site-footer__strip-link:hover {
  color: #fff;
}

.site-footer__strip-link--primary {
  font-weight: 700;
  font-size: 1.0625rem;
}

.site-footer__strip-link--phone {
  font-weight: 700;
  font-size: 1.125rem;
}

.site-footer__main {
  width: 100%;
  padding: clamp(4rem, 7vw, 6rem) var(--chrome-pad) clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
  max-width: var(--container-wide);
  margin-inline: auto;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  }
}

.site-footer__logo img {
  height: 96px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.site-footer__blurb {
  font-size: 1rem;
  color: var(--ink-dim);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 1.25rem;
}

.site-footer__address {
  font-size: 0.9375rem;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 360px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.site-footer__social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.site-footer__links a {
  display: block;
  padding: 0.4375rem 0;
  font-size: 0.9375rem;
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}

.site-footer__links a:hover {
  color: var(--red);
}

.site-footer__contact li {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

.site-footer__contact svg {
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--red);
}

.site-footer__contact a:hover {
  color: var(--ink);
}

.site-footer__bottom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 1.25rem var(--chrome-pad);
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-dim);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer__legal a:hover {
  color: var(--red);
}

.site-footer__cta {
  margin-top: 1.25rem;
}

/* ── WhatsApp float ── */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 840;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ── Scroll reveal & motion ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--lift {
  transform: translateY(36px) scale(0.98);
}

.reveal--lift.is-visible {
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Hero entrance (page load) */
.hero-enter {
  opacity: 0;
  transform: translateY(20px);
}

.hero-slider.is-ready .hero-enter {
  animation: hero-panel-in var(--dur-slow) var(--ease-out) forwards;
}

.hero-slider.is-ready .hero-enter .section-label {
  animation: hero-stagger-in var(--dur-med) var(--ease-out) 0.1s forwards;
  opacity: 0;
}

.hero-slider.is-ready .hero-enter .hero-slider__title {
  animation: hero-stagger-in var(--dur-med) var(--ease-out) 0.2s forwards;
  opacity: 0;
}

.hero-slider.is-ready .hero-enter .hero-slider__text {
  animation: hero-stagger-in var(--dur-med) var(--ease-out) 0.32s forwards;
  opacity: 0;
}

.hero-slider.is-ready .hero-enter .btn-group {
  animation: hero-stagger-in var(--dur-med) var(--ease-out) 0.44s forwards;
  opacity: 0;
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-stagger-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider__panel.is-replaying .section-label,
.hero-slider__panel.is-replaying .hero-slider__title,
.hero-slider__panel.is-replaying .hero-slider__text,
.hero-slider__panel.is-replaying .btn-group {
  animation: hero-stagger-in var(--dur-med) var(--ease-out) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide.is-active img,
  .hero-enter,
  .hero-slider.is-ready .hero-enter *,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--ink-dim);
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb__sep {
  color: var(--line);
}

/* ── Services grid (asymmetric) ── */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ── Quote block ── */
.quote-block {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--red);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: #4a4f57;
}

/* ── 404 ── */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: var(--chrome-h);
}

.error-page__code {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page__title {
  margin-bottom: 1rem;
}

.error-page__text {
  color: var(--ink-dim);
  max-width: 420px;
  margin-bottom: 2rem;
}

/* ── Hero slider (homepage) ── */
.hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: var(--hero-home-h);
  padding-top: var(--chrome-h);
  overflow: hidden;
  background: var(--ink-dark);
}

.hero-slider__track {
  display: flex;
  height: 100%;
  min-height: var(--hero-home-inner);
  transition: transform 0.85s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    transition: none;
  }
}

.hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: var(--hero-home-inner);
  overflow: hidden;
}

.hero-slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1);
}

.hero-slider__slide.is-active img {
  animation: hero-ken-burns 9s var(--ease-out) forwards;
}

@keyframes hero-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.22) 0%, transparent 34%),
    linear-gradient(180deg, transparent 78%, rgba(16, 17, 20, 0.14) 100%);
  pointer-events: none;
}

.hero-slider__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-slider__content-inner {
  display: flex;
  align-items: center;
  min-height: var(--hero-home-inner);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.hero-slider__panel {
  pointer-events: auto;
  max-width: min(500px, 90vw);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(16, 17, 20, 0.14);
  backdrop-filter: blur(8px);
}

.hero-slider__content h1,
.hero-slider__title {
  margin-bottom: 1rem;
  color: var(--ink-dark);
  font-size: clamp(2rem, 4.5vw, 3.125rem);
  line-height: 1.12;
}

.hero-slider__content p,
.hero-slider__text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--ink-dim);
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.hero-slider__dots {
  position: absolute;
  z-index: 3;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: var(--chrome-pad);
  display: flex;
  gap: 0.5rem;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 29, 33, 0.25);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero-slider__dot:hover {
  background: rgba(224, 30, 43, 0.5);
}

.hero-slider__dot.is-active {
  background: var(--red);
  transform: scale(1.15);
}

.hero-slider__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.hero-slider__nav:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
}

.hero-slider__nav--prev {
  left: var(--chrome-pad);
}

.hero-slider__nav--next {
  right: var(--chrome-pad);
}

.hero-slider__nav svg {
  width: 20px;
  height: 20px;
}

/* ── Home concept cards ── */
.home-concept {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
  padding-block: 0 clamp(4rem, 8vw, 6rem);
}

.home-concept__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .home-concept__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-concept__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: left;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  transition:
    border-color var(--dur-med) var(--ease),
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease);
}

.home-concept__item:hover {
  border-color: rgba(224, 30, 43, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 29, 33, 0.14);
}

.home-concept__visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 22vw, 168px);
  height: clamp(120px, 22vw, 168px);
  padding: 0.75rem;
  background: linear-gradient(145deg, #fff 0%, var(--bg-soft) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease);
}

.home-concept__item:hover .home-concept__visual {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(224, 30, 43, 0.12);
}

@media (max-width: 767px) {
  .home-concept {
    margin-top: -2rem;
  }

  .home-concept__item {
    flex-direction: column;
    text-align: center;
  }

  .home-concept__visual {
    width: 140px;
    height: 140px;
  }
}

.home-concept__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-concept__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.home-concept__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--ink-dark);
}

.home-concept__item:hover .home-concept__title {
  color: var(--red);
}

.home-concept__text {
  font-size: 0.9375rem;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ── Product catalog (homepage) ── */
.product-catalog {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-catalog {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.product-catalog__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-catalog__card:hover {
  border-color: rgba(224, 30, 43, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.product-catalog__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-catalog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.product-catalog__card:hover .product-catalog__img img {
  transform: scale(1.04);
}

.product-catalog__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
}

.product-catalog__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-dark);
}

.product-catalog__card:hover .product-catalog__title {
  color: var(--red);
}

.product-catalog__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-catalog__link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.product-catalog__header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* ── Home projects showcase ── */
.home-projects {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--bg-light);
}

.home-projects__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .home-projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-projects__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-dark);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.home-projects__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.home-projects__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.home-projects__card:hover img {
  transform: scale(1.05);
}

.home-projects__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(16, 17, 20, 0.85) 0%, transparent 100%);
  color: #fff;
}

.home-projects__caption h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.home-projects__caption p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Inner page hero ── */
.page-hero {
  padding-top: var(--chrome-h);
  min-height: 280px;
  max-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 55%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--ink-dark);
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb {
  margin-bottom: 0.75rem;
}

.page-hero .lead,
.page-hero__lead {
  max-width: 640px;
}

.page-hero--has-visual {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 320px;
  max-height: none;
}

@media (min-width: 900px) {
  .page-hero--has-visual {
    grid-template-columns: 1fr min(42vw, 520px);
  }
}

.page-hero__visual {
  position: relative;
  margin: 0;
  min-height: 220px;
  overflow: hidden;
}

.page-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .page-hero__visual {
    min-height: 100%;
  }

  .page-hero__visual img {
    min-height: 320px;
  }
}

/* Service card / row thumbnails (homepage) */
.card__link--has-media {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .service-card--featured .card__link--has-media {
    grid-template-columns: 240px 1fr;
  }
}

.card__media {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

@media (min-width: 768px) {
  .service-card--featured .card__media {
    border-radius: var(--radius) 0 0 var(--radius);
  }
}

.card__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .service-card--featured .card__link:has(.card__media) {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    padding: 0;
  }

  .service-card--featured .card__link:has(.card__media) > div {
    padding: 2rem;
  }
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1rem;
}

.service-row__thumb {
  display: block;
  width: 72px;
  height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.service-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-link__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.quick-link__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.icon-24 {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Main offset for fixed header */
main {
  padding-top: 0;
}

.page-hero-offset {
  padding-top: var(--chrome-h);
}

/* ── Services showcase (homepage) ── */
.services-showcase__lead {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .services-showcase__lead {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-feature {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease);
}

.service-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.service-feature__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-feature:hover .service-feature__media img {
  transform: scale(1.06);
}

.service-feature__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
}

.service-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
}

.service-feature__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink-dark);
}

.service-feature__text {
  font-size: 0.9375rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

.service-feature__link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.services-showcase__tiles {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .services-showcase__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-showcase__tiles {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.service-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease);
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.service-tile__img {
  position: absolute;
  inset: 0;
}

.service-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.service-tile:hover .service-tile__img img {
  transform: scale(1.08);
}

.service-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(16, 17, 20, 0.82) 100%);
}

.service-tile__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.service-tile__arrow {
  position: absolute;
  right: 0.75rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Testimonials marquee ── */
.testimonials {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--ink-dark);
  color: #fff;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  padding-inline: var(--chrome-pad);
}

.testimonials__header .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials__header .section-label::before {
  background: var(--red);
}

.testimonials__header h2 {
  color: #fff;
}

.testimonials__header p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.75rem;
}

.testimonials__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonials-marquee 45s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes testimonials-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 min(360px, 82vw);
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.testimonial-card__quote::before {
  content: '"';
  color: var(--red);
  font-size: 1.5rem;
  line-height: 0;
  margin-right: 0.15rem;
}

.testimonial-card__author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* ── Home news ── */
.home-news {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--bg-light);
}

.home-news__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-news__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .home-news__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 30, 43, 0.35);
}

.news-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
}

.news-card__date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-dark);
  line-height: 1.35;
}

.news-card:hover .news-card__title {
  color: var(--red);
}

.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--ink-dim);
  line-height: 1.6;
  flex: 1;
}

.news-card__link {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Parallax page hero ── */
.page-hero--parallax {
  position: relative;
  min-height: clamp(320px, 44vh, 440px);
  max-height: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: none;
  background: var(--ink-dark);
}

.page-hero--parallax .page-hero__bg {
  position: absolute;
  inset: -12% 0 0;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-hero--parallax .page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.88) 0%, rgba(16, 17, 20, 0.55) 45%, rgba(16, 17, 20, 0.35) 100%),
    linear-gradient(180deg, transparent 60%, rgba(16, 17, 20, 0.5) 100%);
  z-index: 1;
}

.page-hero--parallax .page-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero--parallax h1 {
  color: #fff;
}

.page-hero--parallax .breadcrumb,
.page-hero--parallax .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero--parallax .breadcrumb a:hover {
  color: #fff;
}

.page-hero--parallax .section-label,
.page-hero--parallax .section-label--dark {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--parallax .section-label::before,
.page-hero--parallax .section-label--dark::before {
  background: var(--red);
}

.page-hero--parallax.hero--inner .hero__visual {
  display: none;
}

.page-hero--parallax.hero--inner .hero__split {
  width: 100%;
}

.page-hero--parallax.hero--inner .hero__text {
  color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .page-hero--parallax .page-hero__bg {
    inset: 0;
  }
}

/* ── Mobile polish ── */
@media (max-width: 767px) {
  :root {
    --header-h: 92px;
    --header-h-shrink: 72px;
    --hero-home-h: clamp(580px, 88svh, 760px);
    --chrome-pad: clamp(1rem, 4vw, 1.5rem);
  }

  .site-header__logo img {
    height: 52px;
    max-width: min(200px, 48vw);
  }

  .site-header.is-shrunk .site-header__logo img {
    height: 46px;
  }

  .top-bar__actions {
    gap: 0.5rem;
    font-size: 0.6875rem;
  }

  .top-bar__link span:not(.icon-16) {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section {
    padding-block: clamp(3.25rem, 9vw, 5rem);
  }

  .hero-slider__slide img {
    object-position: center 35%;
  }

  .hero-slider__scrim {
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.08) 0%, rgba(16, 17, 20, 0.35) 55%, rgba(16, 17, 20, 0.72) 100%),
      linear-gradient(90deg, rgba(16, 17, 20, 0.18) 0%, transparent 50%);
  }

  .hero-slider__content {
    align-items: flex-end;
  }

  .hero-slider__content-inner {
    align-items: flex-end;
    padding-top: 1.5rem;
    padding-bottom: clamp(3.25rem, 10vw, 4.5rem);
  }

  .hero-slider__panel {
    max-width: 100%;
    width: 100%;
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .hero-slider__content h1,
  .hero-slider__title {
    font-size: clamp(1.625rem, 7vw, 2.125rem);
    margin-bottom: 0.75rem;
  }

  .hero-slider__content p,
  .hero-slider__text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .hero-slider__panel .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }

  .hero-slider__panel .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider__nav {
    display: none;
  }

  .hero-slider__dots {
    left: 50%;
    right: auto;
    bottom: 1.25rem;
    transform: translateX(-50%);
    justify-content: center;
    width: max-content;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    backdrop-filter: blur(6px);
  }

  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }

  .home-concept {
    margin-top: -1.25rem;
    padding-block: 0 clamp(3rem, 8vw, 4.5rem);
  }

  .services-showcase__tiles {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-tile {
    aspect-ratio: 16 / 10;
  }

  .product-catalog {
    gap: 1.25rem;
  }

  .page-hero--parallax {
    min-height: clamp(260px, 46svh, 360px);
  }

  .page-hero--parallax .page-hero__inner {
    padding-block: clamp(2rem, 6vw, 2.75rem);
  }

  .page-hero--parallax h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .page-hero {
    min-height: 240px;
    max-height: none;
  }

  .testimonials__header {
    text-align: left;
  }

  .testimonials__viewport {
    margin-inline: calc(-1 * var(--chrome-pad));
    padding-inline: var(--chrome-pad);
  }

  .home-news__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 399px) {
  .top-bar__link--emph {
    display: none;
  }
}
