:root {
  --bg: #f4f4f1;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-dark: #0d0d0d;
  --surface-dark-soft: #181818;
  --text: #111111;
  --muted: #5f5f5b;
  --muted-strong: #32322f;
  --border: rgba(17, 17, 17, 0.08);
  --border-strong: rgba(17, 17, 17, 0.16);
  --accent: #981318;
  --accent-dark: #6f0e12;
  --accent-soft: rgba(152, 19, 24, 0.08);
  --success: #16904a;
  --shadow-lg: 0 28px 70px rgba(17, 17, 17, 0.14);
  --shadow-md: 0 20px 44px rgba(17, 17, 17, 0.1);
  --shadow-sm: 0 12px 24px rgba(17, 17, 17, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 17, 17, 0.03), transparent 24%),
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.04), transparent 20%),
    linear-gradient(180deg, #f8f8f5 0%, #f4f4f1 100%);
}

body.has-overlay {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #080808;
  color: rgba(255, 255, 255, 0.9);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}

.topbar__message {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.topbar__link {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 90px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.site-logo strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.site-logo small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-logo__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, #151515, #000 75%);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 30px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav__links a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  background: rgba(23, 23, 23, 0.06);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.45rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #111111, #000000);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  box-shadow: none;
}

.button--ghost:hover {
  box-shadow: none;
  background: rgba(23, 23, 23, 0.04);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button--sm {
  min-height: 46px;
  padding: 0 1.1rem;
}

.button--tiny {
  min-height: 42px;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.button--inline {
  white-space: nowrap;
}

.badge,
.section-kicker,
.pill,
.promo-card__tag,
.quote-panel__tag,
.showcase-panel__eyebrow,
.feature-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  font-weight: 800;
}

.badge,
.section-kicker,
.feature-card__eyebrow {
  background: rgba(17, 17, 17, 0.04);
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.section-kicker--inverse {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pill {
  background: rgba(23, 23, 23, 0.06);
  color: var(--text);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.page-hero--catalog {
  padding: 0.55rem 0 0.45rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(17, 17, 17, 0.05), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(17, 17, 17, 0.04), transparent 18%);
  pointer-events: none;
}

.hero__grid,
.page-hero__grid,
.split-layout,
.contact-grid,
.product-detail,
.story-grid,
.quote-grid,
.cta-strip__inner {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero__grid--minimal {
  min-height: 72vh;
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.story-grid h2,
.quote-panel h2,
.cta-strip h2,
.footer-cta h2 {
  margin: 0.9rem 0 1rem;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero h1,
.section-heading h2,
.story-grid h2,
.quote-panel h2,
.cta-strip h2,
.footer-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.hero p,
.page-hero p,
.section-heading p,
.feature-card p,
.promo-card p,
.quote-panel p,
.testimonial-card blockquote,
.contact-card p,
.contact-form-card p,
.footer-copy,
.process-item p,
.info-panel p,
.category-card p,
.page-hero__card p {
  color: var(--muted);
  line-height: 1.76;
  font-size: 1.02rem;
}

.hero__actions,
.product-detail__actions,
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero__proof {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__proof--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__proof--compact span {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero__proof span,
.product-detail__highlights span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted-strong);
  font-weight: 700;
}

.hero__proof span::before,
.product-detail__highlights span::before,
.quote-checklist li::before,
.check-list li::before,
.contact-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 0 4px rgba(203, 31, 36, 0.1);
}

.hero__visual {
  position: relative;
}

.showcase-panel,
.showcase-tile,
.page-hero__card,
.category-card,
.feature-card,
.product-card,
.promo-card,
.quote-panel,
.testimonial-card,
.contact-card,
.contact-form-card,
.promise-card,
.info-panel,
.timeline__item,
.empty-state,
.cta-strip__inner,
.footer-cta,
.lightbox img {
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow-lg);
}

.showcase-panel,
.showcase-tile,
.page-hero__card,
.category-card,
.feature-card,
.product-card,
.quote-panel,
.testimonial-card,
.contact-card,
.contact-form-card,
.promise-card,
.info-panel,
.timeline__item,
.empty-state {
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.showcase-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.showcase-panel--minimal {
  min-height: 320px;
}

.showcase-panel--primary {
  min-height: 380px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(150deg, rgba(14, 14, 14, 1), rgba(27, 27, 27, 0.98) 68%);
  color: #fff;
}

.showcase-panel--primary p,
.showcase-panel--primary .showcase-panel__eyebrow,
.showcase-panel--primary .showcase-panel__stats span {
  color: rgba(255, 255, 255, 0.82);
}

.showcase-panel__eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.showcase-panel h2 {
  margin: 1rem 0 0.95rem;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.showcase-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.showcase-panel__stats article {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.showcase-panel__stats strong,
.page-hero__card strong,
.product-card__price,
.product-detail__price,
.mini-stats strong,
.category-card strong,
.quote-panel h3,
.promise-card strong {
  display: block;
  font-family: "Archivo", sans-serif;
  letter-spacing: -0.03em;
}

.showcase-panel__stats strong {
  font-size: 1.45rem;
}

.showcase-stack {
  display: grid;
  gap: 1rem;
  margin: -2.3rem 0 0 3.2rem;
}

.showcase-stack--minimal {
  margin: 1.2rem 0 0 2.2rem;
}

.showcase-tile {
  padding: 1.35rem 1.4rem;
}

.showcase-tile strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
}

.showcase-tile--accent {
  background: linear-gradient(135deg, rgba(244, 244, 241, 1), rgba(255, 255, 255, 0.94));
}

.trust-ribbon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 2.2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow-sm);
}

.trust-ribbon > span {
  color: var(--muted-strong);
  font-weight: 800;
  white-space: nowrap;
}

.trust-ribbon__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-ribbon__items strong {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.05);
  font-size: 0.92rem;
}

.page-hero__card {
  padding: 1.6rem;
}

.page-hero--catalog .page-hero__grid {
  gap: 0.45rem;
  align-items: center;
}

.page-hero--catalog h1 {
  margin: 0.12rem 0 0.18rem;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1;
}

.page-hero--catalog p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
}

.page-hero--catalog .page-hero__card {
  padding: 0.55rem 0.7rem;
  border-radius: 22px;
}

.page-hero--catalog .page-hero__card strong {
  font-size: 0.9rem;
}

.page-hero--catalog .section-kicker {
  padding: 0.26rem 0.5rem;
  font-size: 0.58rem;
}

.page-hero--catalog .button--sm {
  min-height: 30px;
  padding: 0 0.7rem;
  font-size: 0.76rem;
}

.page-hero--catalog .container {
  width: min(var(--container), calc(100% - 2.5rem));
}

.page-hero--catalog .page-hero__card p {
  margin: 0.18rem 0 0.4rem;
}

.page-hero--catalog::before {
  opacity: 0.45;
}

.page-hero--compact {
  padding: 1.4rem 0 1rem;
}

.page-hero--compact .page-hero__grid {
  gap: 1rem;
}

.page-hero--compact h1 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.page-hero--compact p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.page-hero--compact .page-hero__card {
  padding: 1rem 1.15rem;
}

.page-hero--compact .page-hero__card strong {
  font-size: 1.05rem;
}

.products-catalog-section {
  padding: 0.02rem 0 3.2rem;
  margin-top: 0;
}

.products-catalog-section .filter-toolbar {
  margin-bottom: 1rem;
}

.page-hero__card strong {
  font-size: 1.55rem;
}

.mini-stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.mini-stats article {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(23, 23, 23, 0.04);
}

.mini-stats span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.section {
  padding: 4.8rem 0;
}

.section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.36));
}

.section--dark {
  background:
    linear-gradient(155deg, rgba(12, 12, 12, 1), rgba(24, 24, 24, 0.98)),
    var(--surface-dark);
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading--tight {
  max-width: 560px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.section-heading--split > div {
  max-width: 760px;
}

.section-heading--inverse h2,
.section-heading--inverse p {
  color: #fff;
}

.category-grid,
.benefits-grid,
.product-grid,
.promo-grid,
.testimonials-grid,
.gallery-grid,
.promise-grid,
.footer-grid {
  display: grid;
  gap: 1.4rem;
}

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

.hero-category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

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

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

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

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

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

.promo-grid--stacked {
  align-self: start;
}

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

.category-card,
.feature-card,
.quote-panel,
.testimonial-card,
.contact-card,
.contact-form-card,
.promise-card {
  padding: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 250px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.category-card--visual {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  border-radius: 28px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.category-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.6rem;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.92) 100%);
}

.category-card--visual .category-card__index {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.category-card--visual strong,
.category-card--visual p {
  color: #fff;
}

.category-card--visual p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.74);
}

.category-card:hover,
.product-card:hover,
.gallery-card:hover,
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(17, 17, 17, 0.14);
}

.category-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(23, 23, 23, 0.05);
  color: var(--accent);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}

.category-card strong {
  font-size: 1.3rem;
}

.category-card__link {
  margin-top: auto;
  color: var(--text);
  font-weight: 800;
}

.feature-card h3,
.promo-card h3,
.product-card h3,
.testimonial-card strong,
.contact-card h2,
.contact-form-card h2,
.timeline__item h3,
.info-panel h3,
.quote-box h3,
.process-item h3 {
  margin: 0 0 0.7rem;
  font-family: "Archivo", sans-serif;
  letter-spacing: -0.03em;
}

.feature-card h3,
.promo-card h3,
.contact-card h2,
.contact-form-card h2,
.quote-box h3,
.process-item h3 {
  font-size: 1.45rem;
}

.feature-card {
  min-height: 230px;
}

.feature-card--mono {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-card--mono h3,
.feature-card--mono p {
  color: #fff;
}

.feature-card--mono .feature-card__eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.product-card__image img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img,
.gallery-card:hover img {
  transform: scale(1.04);
}

.product-card__body {
  display: grid;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem 0.8rem;
}

.product-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-card__title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 70%;
}

.product-card__price {
  font-size: 1.25rem;
  white-space: nowrap;
}

.product-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-card:hover {
  border-color: rgba(17, 17, 17, 0.12);
}

.story-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.brand-section__intro p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
}

.story-grid__intro p {
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-item span {
  display: grid;
  place-items: center;
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
}

.process-item p {
  margin: 0;
}

.promo-card {
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card__tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.74);
}

.quote-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.quote-panel {
  position: relative;
}

.quote-panel--accent {
  background:
    linear-gradient(145deg, rgba(10, 10, 10, 1), rgba(24, 24, 24, 0.96));
  color: #fff;
}

.quote-panel--accent p,
.quote-panel--accent h3 {
  color: #fff;
}

.quote-panel__tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.quote-checklist,
.check-list,
.contact-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.quote-checklist li,
.check-list li,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-strong);
  line-height: 1.65;
  font-weight: 700;
}

.quote-checklist--compact {
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.testimonials-grid img {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  object-fit: cover;
}

.testimonial-card {
  display: grid;
  gap: 0.95rem;
}

.testimonial-card--minimal {
  align-content: start;
}

.testimonial-card__rating {
  color: #efad00;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card span {
  color: var(--muted);
}

.filter-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.filter-summary strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.filter-summary p {
  margin: 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--muted-strong);
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-pill:hover {
  transform: translateY(-2px);
}

.filter-pill.is-active {
  background: var(--surface-dark);
  color: #fff;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.gallery-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--muted-strong);
  font-weight: 800;
}

.gallery-grid--editorial {
  grid-auto-rows: 220px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card--editorial:nth-child(4n + 1) {
  grid-row: span 2;
}

.gallery-card--editorial:nth-child(5n + 3) {
  grid-column: span 2;
}

.gallery-card__trigger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.gallery-card__trigger img {
  flex: 1 1 auto;
}

.gallery-card__trigger span,
.gallery-card__trigger small {
  padding: 0 1.15rem;
  text-align: left;
}

.gallery-card__trigger span {
  padding-top: 1rem;
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
}

.gallery-card__trigger small {
  padding-bottom: 1rem;
  color: var(--text);
  font-weight: 800;
}

.split-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.info-panel {
  padding: 1.8rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
}

.timeline__item span {
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--surface-dark);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
}

.product-detail {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.product-detail__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.product-detail__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-detail__card {
  display: grid;
  align-content: start;
  grid-template-rows: auto;
  padding: 1.48rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow-lg);
}

.product-detail__price {
  margin: 0.74rem 0;
  font-size: 2.2rem;
}

.product-specs {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.62rem;
}

.product-specs--primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
}

.product-specs--secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
  margin-bottom: 0.55rem;
  padding-top: 0.15rem;
}

.product-specs__item {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.product-specs__item span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-specs__item strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.product-specs__item--compact strong {
  font-size: 0.92rem;
  line-height: 1.28;
}

.product-detail__highlights {
  display: grid;
  gap: 0.56rem;
  margin: 0.86rem 0 0;
}

.quote-box {
  margin-top: 0.88rem;
  padding: 0.66rem 0.8rem;
  border-radius: 20px;
  background: rgba(23, 23, 23, 0.04);
}

.quote-box h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.contact-card__panel {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(23, 23, 23, 0.04);
}

.contact-card__panel strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.contact-form,
.admin-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label,
.admin-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(203, 31, 36, 0.4);
  box-shadow: 0 0 0 4px rgba(203, 31, 36, 0.1);
  background: #fff;
}

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

.promise-card {
  min-height: 180px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promise-card strong {
  font-size: 1.35rem;
}

.alert {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-weight: 800;
}

.alert--success {
  background: rgba(22, 144, 74, 0.12);
  color: #116639;
}

.alert--error {
  background: rgba(203, 31, 36, 0.12);
  color: #8a1216;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

.empty-state--large {
  max-width: 720px;
  margin: 3rem auto 0;
}

.cta-strip {
  padding-top: 0;
}

.cta-strip__inner,
.footer-cta {
  align-items: center;
  grid-template-columns: 1fr auto;
  padding: 2rem;
  background:
    linear-gradient(125deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.02)),
    rgba(255, 255, 255, 0.88);
  border-radius: 34px;
}

.site-footer {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(180deg, #171212 0%, #0f0c0c 100%);
  color: rgba(255, 255, 255, 0.86);
}

.footer-cta {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(145deg, rgba(10, 10, 10, 1), rgba(23, 23, 23, 0.98) 72%);
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.75fr 0.95fr;
  align-items: start;
}

.site-logo--footer small,
.footer-copy,
.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  min-height: 64px;
  padding: 0.9rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #14a44d, #0a7a36);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(10, 122, 54, 0.3);
}

.whatsapp-float small {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.88;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 86vh;
  border-radius: 28px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal--delay {
  transition-delay: 0.14s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .benefits-grid--wide,
  .benefits-grid--compact,
  .product-grid,
  .gallery-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .page-hero__grid,
  .story-grid,
  .brand-section,
  .quote-grid,
  .split-layout,
  .contact-grid,
  .product-detail,
  .cta-strip__inner,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    margin: 1rem 0 0;
  }

  .benefits-grid,
  .benefits-grid--wide,
  .benefits-grid--compact,
  .product-grid,
  .promo-grid,
  .testimonials-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid--editorial {
    grid-auto-rows: 220px;
  }

  .gallery-card--editorial:nth-child(5n + 3) {
    grid-column: span 1;
  }

  .trust-ribbon {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

}

@media (max-width: 860px) {
  .topbar__inner,
  .section-heading--split,
  .filter-summary,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(17, 17, 17, 0.06);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a,
  .site-nav__actions .button {
    justify-content: center;
  }

  .topbar__items {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(17, 17, 17, 0.02), transparent 22%),
      linear-gradient(180deg, #f8f8f5 0%, #f1f0eb 100%);
  }

  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .category-grid,
  .hero-category-strip,
  .benefits-grid,
  .benefits-grid--wide,
  .benefits-grid--compact,
  .promo-grid,
  .testimonials-grid,
  .gallery-grid,
  .promise-grid,
  .contact-form__row,
  .showcase-panel__stats {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .page-hero,
  .section {
    padding: 2.2rem 0;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .story-grid h2,
  .quote-panel h2,
  .cta-strip h2,
  .footer-cta h2 {
    font-size: clamp(2.05rem, 8vw, 3rem);
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 0.35rem;
    width: calc(100% - 1rem);
    margin: 0 auto;
    border-radius: 26px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  }

  .site-header__inner {
    min-height: 66px;
    padding: 0 0.8rem;
  }

  .site-logo {
    gap: 0.7rem;
  }

  .site-logo strong {
    font-size: 0.92rem;
  }

  .site-logo small {
    font-size: 0.72rem;
  }

  .site-logo__mark,
  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .page-hero,
  .hero {
    padding-top: 1rem;
  }

  .page-hero--catalog,
  .page-hero--compact {
    padding-top: 0.8rem;
  }

  .hero__grid,
  .page-hero__grid,
  .split-layout,
  .product-detail,
  .contact-grid,
  .story-grid,
  .quote-grid,
  .cta-strip__inner,
  .footer-cta {
    gap: 1rem;
  }

  .hero__grid--minimal {
    min-height: auto;
  }

  .page-hero__card,
  .showcase-panel,
  .showcase-tile,
  .info-panel,
  .contact-card,
  .contact-form-card,
  .quote-panel,
  .testimonial-card,
  .promise-card,
  .empty-state,
  .timeline__item {
    padding: 1rem;
    border-radius: 24px;
  }

  .showcase-panel h2 {
    font-size: 1.5rem;
  }

  .hero p,
  .page-hero p,
  .section-heading p,
  .feature-card p,
  .promo-card p,
  .quote-panel p,
  .testimonial-card blockquote,
  .contact-card p,
  .contact-form-card p,
  .footer-copy,
  .process-item p,
  .info-panel p,
  .category-card p,
  .page-hero__card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero__proof {
    margin-top: 1rem;
  }

  .hero__proof--compact {
    gap: 0.45rem;
  }

  .hero__proof--compact span {
    min-height: 38px;
    padding: 0 0.8rem;
    font-size: 0.8rem;
  }

  .section-heading {
    margin-bottom: 1.3rem;
  }

  .page-hero--catalog {
    padding-bottom: 0.2rem;
  }

  .page-hero--catalog .page-hero__grid {
    gap: 0.35rem;
  }

  .page-hero--catalog .section-kicker {
    padding: 0.2rem 0.45rem;
    font-size: 0.54rem;
  }

  .page-hero--catalog h1 {
    font-size: clamp(1rem, 5.4vw, 1.45rem);
    line-height: 1.02;
    margin: 0.12rem 0 0.14rem;
  }

  .page-hero--catalog p {
    font-size: 0.74rem;
    line-height: 1.18;
  }

  .page-hero--catalog .page-hero__card {
    padding: 0.5rem 0.65rem;
    border-radius: 18px;
  }

  .page-hero--catalog .page-hero__card strong {
    font-size: 0.82rem;
  }

  .page-hero--catalog .page-hero__card p {
    margin: 0.1rem 0 0.28rem;
    font-size: 0.72rem;
  }

  .page-hero--catalog .button--sm {
    min-height: 28px;
    padding: 0 0.6rem;
    font-size: 0.72rem;
  }

  .page-hero--compact {
    padding-bottom: 0.2rem;
  }

  .page-hero--compact .page-hero__grid {
    gap: 0.4rem;
  }

  .page-hero--compact .section-kicker {
    padding: 0.18rem 0.42rem;
    font-size: 0.52rem;
  }

  .page-hero--compact h1 {
    margin: 0.1rem 0 0.16rem;
    font-size: clamp(1.2rem, 6vw, 1.7rem);
    line-height: 1;
  }

  .page-hero--compact p {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .page-hero--compact .page-hero__card {
    padding: 0.65rem 0.75rem;
    border-radius: 18px;
  }

  .page-hero--compact .page-hero__card strong {
    font-size: 0.86rem;
  }

  .page-hero--compact .page-hero__card p {
    margin-top: 0.15rem;
    font-size: 0.72rem;
  }

  .button,
  .button--ghost,
  .button--sm {
    width: 100%;
  }

  .hero__actions,
  .product-detail__actions,
  .footer-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-stack--minimal {
    margin: 1rem 0 0;
  }

  .product-card__image {
    aspect-ratio: 1 / 1;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-card__body {
    gap: 0.4rem;
    padding: 0.6rem 0.65rem 0.7rem;
  }

  .product-card__topline {
    display: grid;
    gap: 0.2rem;
  }

  .product-card__title {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.08;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .product-card__footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .product-card .button--tiny {
    min-height: 36px;
    padding: 0 0.65rem;
    font-size: 0.8rem;
  }

  .filter-toolbar {
    gap: 0.7rem;
    margin-bottom: 1.15rem;
  }

  .products-catalog-section {
    padding-bottom: 2rem;
  }

  .filter-summary strong {
    font-size: 1.45rem;
  }

  .filter-bar {
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    min-height: 40px;
    padding: 0 0.85rem;
    white-space: nowrap;
    font-size: 0.86rem;
  }

  .product-detail__card {
    padding: 1.15rem;
  }

  .product-detail__badge {
    display: none;
  }

  .product-detail__actions .button {
    width: 100%;
  }

  .gallery-grid--editorial {
    grid-auto-rows: 260px;
  }

  .product-specs--primary,
  .product-specs--secondary {
    grid-template-columns: 1fr;
  }

  .gallery-card--editorial:nth-child(4n + 1) {
    grid-row: span 1;
  }

  .whatsapp-float {
    left: auto;
    right: 0.8rem;
    bottom: 0.8rem;
    align-items: center;
    min-height: 56px;
    padding: 0.75rem 0.95rem;
    border-radius: 20px;
  }

  .whatsapp-float small {
    font-size: 0.72rem;
  }
}
