:root {
  --ink: #111111;
  --ink-soft: #292929;
  --paper: #f5f3ef;
  --white: #ffffff;
  --line: #dedbd5;
  --muted: #6c6a66;
  --accent: #e33a2d;
  --accent-dark: #bd241a;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
summary {
  font-family: var(--font-display);
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.announcement {
  background: var(--ink);
  color: var(--white);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement a {
  color: #d8d5cf;
  transition: color 180ms ease;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 239, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
}

.brand-link {
  justify-self: start;
}

.brand {
  display: inline-flex;
  align-items: stretch;
  height: 43px;
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 1;
}

.brand-primary,
.brand-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
}

.brand-uploaded {
  width: auto;
  max-width: 220px;
  height: 52px;
  letter-spacing: normal;
}

.brand-uploaded img {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-primary {
  background: var(--ink);
  color: var(--white);
  font-size: 1.45rem;
}

.brand-secondary {
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.9rem;
  font-weight: 620;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.nav-catalog-menu {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
}

.nav-catalog-menu > a::after {
  content: "⌄";
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-category-dropdown {
  position: absolute;
  top: calc(100% - 3px);
  left: -22px;
  z-index: 80;
  width: 300px;
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(17, 17, 17, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.nav-category-dropdown a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 9px;
}

.nav-category-dropdown a:hover {
  background: #f5f2ed;
}

.nav-category-dropdown strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.nav-category-dropdown span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.header-phone {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 0.91rem;
  font-weight: 750;
}

.header-phone span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 62px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 66px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 31px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(3.25rem, 5.3vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.072em;
  font-weight: 780;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-description {
  max-width: 590px;
  margin-top: 30px;
  color: #52504c;
  font-size: 1rem;
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: #c4c0b8;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-note span {
  margin-right: 6px;
  color: #31a05b;
  font-size: 0.68rem;
}

.product-stage {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  background: #dedbd4;
  isolation: isolate;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(17, 17, 17, 0.09) 50%),
    linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px);
  background-size: 100% 100%, 100% 58px;
}

.product-stage::after {
  content: "";
  position: absolute;
  top: 84px;
  right: -77px;
  z-index: -2;
  width: 305px;
  height: 305px;
  border: 82px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.stage-topline {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 24px 27px;
  color: #595651;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-stage-with-media::before {
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.38));
}

.product-stage-with-media .stage-topline {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.product-stage-with-media .stage-wordmark {
  opacity: 0.38;
}

.stage-wordmark {
  position: absolute;
  top: 83px;
  left: -10px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(8rem, 14vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.82;
}

.stage-cards {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: end;
  padding: 0 28px 28px;
  gap: 13px;
}

.stage-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.stage-card > span {
  position: absolute;
  top: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.stage-card strong {
  font-size: 1.72rem;
  letter-spacing: -0.045em;
}

.stage-card p {
  max-width: 185px;
  margin-top: 10px;
  font-size: 0.79rem;
  line-height: 1.55;
}

.stage-card-dark {
  position: relative;
  min-height: 300px;
  background: var(--ink);
  color: var(--white);
}

.stage-card-dark p,
.stage-card-dark > span {
  color: #aaa7a1;
}

.stage-card-light {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
}

.stage-card-light p,
.stage-card-light > span {
  color: var(--muted);
}

.stage-accent {
  position: absolute;
  top: 46%;
  left: 48%;
  width: 66px;
  height: 66px;
  z-index: 3;
  border: 17px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.highlights {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 34px;
  border-left: 1px solid var(--line);
}

.highlight:last-child {
  border-right: 1px solid var(--line);
}

.highlight strong {
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.highlight span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 116px 0;
  scroll-margin-top: 30px;
}

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

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.064em;
}

.section-heading > p,
.about-copy > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 60px;
}

.category-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.category-card-with-media {
  grid-template-rows: 180px auto 1fr auto;
  gap: 16px;
}

.category-media {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: contain;
  padding: 8px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 42%, #fff 0%, #eee9e1 76%);
  filter: saturate(0.95);
  transition: filter 220ms ease, transform 220ms ease;
}

.category-card:hover .category-media {
  filter: saturate(1);
  transform: scale(1.045);
}

.category-card-with-media h3 {
  margin-top: 0;
}

.category-card:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.14);
}

.category-number {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

.category-card h3 {
  margin-top: 38px;
  font-size: 1.75rem;
  letter-spacing: -0.055em;
}

.category-card p {
  max-width: 390px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  transition: color 220ms ease;
}

.category-card:hover p {
  color: #b9b6af;
}

.category-card a {
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 720;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 92px;
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.about-panel::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 88px solid var(--accent);
  border-radius: 50%;
}

.about-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-panel-with-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.82));
}

.about-panel-with-media::after {
  z-index: 2;
  opacity: 0.74;
}

.about-panel-with-media .about-monogram {
  display: none;
}

.about-monogram {
  position: absolute;
  bottom: -135px;
  left: -28px;
  color: #242424;
  font-size: 34rem;
  font-weight: 900;
  line-height: 1;
}

.about-panel-copy {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  left: 38px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #424242;
  padding-top: 24px;
}

.about-panel-copy span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.about-panel-copy p {
  max-width: 235px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.about-copy > p {
  max-width: 590px;
  margin-top: 26px;
}

.about-copy > .eyebrow {
  margin-top: 0;
}

.feature-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 19px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list li > span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
}

.feature-list strong {
  font-size: 0.96rem;
}

.feature-list p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.contact {
  background: var(--paper);
}

.contact-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
}

.contact-intro {
  position: relative;
  z-index: 2;
  padding: 70px;
  background: rgba(227, 58, 45, 0.9);
  transition: opacity 260ms ease, transform 260ms ease;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-light > span {
  background: var(--white);
}

.contact-intro > p:last-of-type {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.contact-details {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  background: rgba(17, 17, 17, 0.91);
  font-style: normal;
  transition: opacity 260ms ease, transform 260ms ease;
}

.contact-map-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.contact-map-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.2);
  pointer-events: none;
  transition: opacity 300ms ease;
}

.contact-map-layer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.9);
  transition: filter 300ms ease;
}

.contact-map-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.contact-map-open {
  width: fit-content;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.contact-map-open:hover,
.contact-map-open:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card.map-active .contact-intro,
.contact-card.map-active .contact-details {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
}

.contact-card.map-active .contact-map-layer {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
}

.contact-card.map-active .contact-map-layer::after {
  opacity: 0;
}

.contact-card.map-active .contact-map-layer iframe {
  filter: none;
}

.contact-card.map-active .contact-map-controls {
  opacity: 1;
  transform: none;
}

.contact-details-with-media {
  grid-template-rows: 210px 1fr 1fr;
}

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

.contact-details > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 48px;
  border-bottom: 1px solid #363636;
}

.contact-details span {
  margin-bottom: 16px;
  color: #8e8b85;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details p {
  font-size: 0.91rem;
  line-height: 1.6;
}

.contact-details a {
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: end;
}

.footer-grid > div > p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.73rem;
}

.site-footer nav {
  display: flex;
  gap: 27px;
  font-size: 0.78rem;
  font-weight: 650;
}

.copyright {
  justify-self: end;
  color: var(--muted);
  font-size: 0.7rem;
}

.mobile-contact-bar {
  display: none;
}

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

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    border: 1px solid var(--line);
    padding: 11px 16px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 230px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.13);
  }

  .mobile-menu nav a {
    padding: 12px;
    font-size: 0.82rem;
    font-weight: 650;
  }

  .mobile-menu nav .mobile-category-link {
    padding-left: 26px;
    color: var(--muted);
    font-size: 0.76rem;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .product-stage {
    min-height: 520px;
  }

  .about-grid {
    gap: 62px;
  }

  .about-panel {
    min-height: 510px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .announcement-inner {
    min-height: 34px;
  }

  .announcement p {
    display: none;
  }

  .announcement a {
    margin-left: auto;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    height: 38px;
  }

  .brand-primary {
    font-size: 1.25rem;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.05rem, 14.2vw, 4.5rem);
  }

  .hero-description {
    margin-top: 24px;
    font-size: 0.92rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .stage-wordmark {
    top: 85px;
    font-size: 8.5rem;
  }

  .stage-cards {
    grid-template-columns: 1fr 1fr;
    padding: 0 14px 14px;
  }

  .stage-card {
    min-height: 220px;
    padding: 17px;
  }

  .stage-card-dark {
    min-height: 260px;
  }

  .stage-card strong {
    font-size: 1.2rem;
  }

  .stage-card p {
    font-size: 0.7rem;
  }

  .stage-accent {
    width: 48px;
    height: 48px;
    border-width: 12px;
  }

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

  .highlight {
    min-height: 98px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
  }

  .highlight:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-card h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.2rem);
  }

  .category-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .category-card {
    min-height: 280px;
    padding: 26px;
  }

  .contact-map-controls {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .contact-map-controls .button {
    flex: 1 1 180px;
    justify-content: center;
  }

  .about-panel {
    min-height: 430px;
  }

  .about-panel-copy {
    right: 24px;
    bottom: 28px;
    left: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .about-monogram {
    bottom: -82px;
    font-size: 25rem;
  }

  .feature-list li {
    grid-template-columns: 34px 1fr;
  }

  .contact {
    padding-bottom: 94px;
  }

  .contact-intro {
    padding: 45px 25px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-details > div {
    padding: 35px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 14px;
  }

  .copyright {
    grid-column: auto;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: var(--ink);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 750;
  }

  .mobile-contact-bar a:last-child {
    background: #218c4b;
  }
}

.catalog-hero {
  padding: 82px 0 62px;
  background: linear-gradient(135deg, #f5f2ed 0%, #fff 66%);
  border-bottom: 1px solid var(--line);
}

.catalog-hero h1,
.legal-hero h1 {
  max-width: 800px;
  margin: 15px 0 18px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.catalog-hero > .container > p:not(.eyebrow),
.legal-hero > .container > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.catalog-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.catalog-trust span,
.product-assurances span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.77rem;
  font-weight: 750;
}

.catalog-section { padding: 58px 0 100px; }
.catalog-section > .container { width: min(1480px, calc(100% - 48px)); }

.catalog-filter {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr) auto auto;
  gap: 12px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8f6f2;
}

.catalog-filter label { display: grid; gap: 7px; }
.catalog-filter label span { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.catalog-filter input,
.catalog-filter select { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid #d7d3cc; border-radius: 10px; background: #fff; color: var(--ink); font: inherit; }
.catalog-filter input:focus,
.catalog-filter select:focus { border-color: var(--accent); outline: 3px solid rgba(227, 58, 45, 0.12); }
.catalog-filter .button { min-height: 49px; border: 0; cursor: pointer; }
.catalog-clear { min-height: 49px; display: inline-flex; align-items: center; color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.catalog-result-heading { display: flex; justify-content: space-between; margin: 45px 0 22px; }
.catalog-result-heading h2 { margin: 0 0 5px; font-size: 2rem; }
.catalog-result-heading p { margin: 0; color: var(--muted); }

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

.catalog-section .catalog-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.catalog-section .catalog-product-card { border-radius: 14px; }
.catalog-section .catalog-product-image { height: 220px; }
.catalog-section .catalog-product-image img { padding: 12px; }
.catalog-section .catalog-product-body { padding: 16px; }
.catalog-section .product-meta { margin-bottom: 6px; font-size: 0.62rem; }
.catalog-section .catalog-product-body h3 { min-height: 42px; font-size: 1rem; line-height: 1.25; }
.catalog-section .catalog-product-body > p:not(.product-meta) { min-height: 40px; margin: 8px 0 14px; font-size: 0.76rem; line-height: 1.5; }
.catalog-section .product-price-row { gap: 8px; padding-top: 13px; }
.catalog-section .product-price-row strong { font-size: 1.05rem; }
.catalog-section .product-detail-link { font-size: 0.72rem; }

.catalog-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(17, 17, 17, 0.1); }
.catalog-product-image { position: relative; display: grid; place-items: center; height: 310px; overflow: hidden; background: #f4f2ee; }
.catalog-product-image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 260ms ease; }
.catalog-product-card:hover .catalog-product-image img { transform: scale(1.035); }
.product-image-placeholder { display: grid; place-items: center; gap: 6px; width: 100%; height: 100%; color: var(--accent); font-size: 3.5rem; font-weight: 900; letter-spacing: -0.08em; }
.product-image-placeholder small { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0; }
.stock-pill { display: inline-flex; align-items: center; width: fit-content; padding: 7px 10px; border-radius: 999px; background: #e8f7ed; color: #18753b; font-size: 0.7rem; font-weight: 850; }
.catalog-product-image .stock-pill { position: absolute; top: 14px; left: 14px; }
.stock-limited { background: #fff4d6; color: #875d00; }
.stock-preorder { background: #eaf1ff; color: #275da8; }
.stock-out_of_stock { background: #f0eeee; color: #686262; }
.catalog-product-body { padding: 22px; }
.product-meta { margin: 0 0 8px; color: var(--accent); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.catalog-product-body h3 { min-height: 58px; margin: 0; font-size: 1.35rem; line-height: 1.15; }
.catalog-product-body h3 a { color: var(--ink); }
.catalog-product-body > p:not(.product-meta) { min-height: 48px; margin: 12px 0 20px; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.product-price-row { display: flex; justify-content: space-between; gap: 15px; align-items: end; padding-top: 18px; border-top: 1px solid var(--line); }
.product-price-row > div { display: grid; }
.product-price-row del { color: #96908a; font-size: 0.78rem; }
.product-price-row strong { font-size: 1.35rem; }
.product-price-row small { color: var(--muted); font-size: 0.67rem; }
.product-detail-link { color: var(--accent); font-size: 0.82rem; font-weight: 850; }
.catalog-empty { padding: 70px 25px; border: 1px dashed #c8c2b9; border-radius: 18px; text-align: center; background: #f8f6f2; }
.catalog-empty strong { display: block; font-size: 1.5rem; }
.catalog-empty p { max-width: 600px; margin: 12px auto 24px; color: var(--muted); line-height: 1.7; }
.featured-catalog { background: #f7f5f1; }
.featured-catalog > .container {
  width: min(1480px, calc(100% - 48px));
}
.featured-catalog .section-heading {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: 48px;
  max-width: 1120px;
  margin-bottom: 34px;
}
.featured-catalog .section-heading h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.featured-catalog .section-heading > p {
  max-width: 520px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.featured-catalog .catalog-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.featured-catalog .catalog-product-card {
  border-radius: 14px;
}
.featured-catalog .catalog-product-image {
  height: 210px;
  background: #eeebe5;
}
.featured-catalog .catalog-product-image img {
  padding: 12px;
}
.featured-catalog .catalog-product-body {
  padding: 16px;
}
.featured-catalog .product-meta {
  margin-bottom: 6px;
  font-size: 0.62rem;
}
.featured-catalog .catalog-product-body h3 {
  min-height: 42px;
  font-size: 1rem;
  line-height: 1.25;
}
.featured-catalog .catalog-product-body > p:not(.product-meta) {
  min-height: 40px;
  margin: 8px 0 14px;
  font-size: 0.76rem;
  line-height: 1.5;
}
.featured-catalog .product-price-row {
  gap: 8px;
  padding-top: 13px;
}
.featured-catalog .product-price-row strong {
  font-size: 1.05rem;
}
.featured-catalog .product-detail-link {
  font-size: 0.72rem;
}
.featured-catalog-action { display: flex; justify-content: center; margin-top: 36px; }

.product-breadcrumb { display: flex; gap: 9px; align-items: center; overflow-x: auto; padding-top: 25px; padding-bottom: 25px; color: var(--muted); white-space: nowrap; font-size: 0.78rem; }
.product-breadcrumb a { color: var(--muted); }
.product-detail { padding: 20px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr); gap: 70px; align-items: start; }
.product-main-image { display: grid; place-items: center; min-height: 560px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #f6f4f0; }
.product-main-image img { width: 100%; height: 560px; object-fit: contain; padding: 25px; }
.product-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.product-thumbnails a { height: 105px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #f6f4f0; }
.product-thumbnails img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.product-summary { position: sticky; top: 115px; }
.product-summary h1 { margin: 8px 0 17px; font-size: clamp(1.9rem, 3.2vw, 3.15rem); line-height: 1.04; letter-spacing: -0.04em; }
.product-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.product-detail-price { display: grid; margin: 25px 0 6px; }
.product-detail-price del { color: #9a938d; }
.product-detail-price strong { font-size: 2.4rem; line-height: 1.1; }
.product-detail-price span { color: var(--muted); font-size: 0.75rem; }
.price-disclaimer { margin: 0 0 23px; color: var(--muted); font-size: 0.74rem; line-height: 1.55; }
.product-feature-list { display: grid; gap: 10px; margin: 23px 0; padding: 0; list-style: none; }
.product-feature-list li { position: relative; padding-left: 22px; font-size: 0.92rem; font-weight: 650; }
.product-feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.button-whatsapp { background: #218c4b; color: #fff; }
.product-whatsapp-button { width: 100%; min-height: 58px; justify-content: center; margin-top: 8px; }
.product-call-link { display: block; margin: 17px 0; color: var(--ink); text-align: center; font-size: 0.84rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.product-assurances { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 18px; border-top: 1px solid var(--line); }
.product-assurances span { background: #f7f5f1; font-size: 0.68rem; }
.product-content-section { padding: 85px 0; background: var(--ink); color: var(--white); }
.product-content-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 90px; }
.product-content-grid h2 { margin: 12px 0 25px; font-size: clamp(2rem, 4vw, 3.5rem); }
.product-content-grid article > p:not(.eyebrow) { color: #c8c4bd; line-height: 1.85; }
.product-content-grid aside { padding: 34px; border-radius: 18px; background: #242424; }
.product-content-grid aside h2 { margin-top: 0; font-size: 1.8rem; }
.product-specs { margin: 0; }
.product-specs div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid #3a3a3a; }
.product-specs dt { color: #aaa49d; }
.product-specs dd { margin: 0; text-align: right; font-weight: 750; }
.related-products { padding: 90px 0; }

.catalog-footer { padding-top: 65px; }
.catalog-footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: 55px; }
.catalog-footer-grid > div > p { color: #a9a59f; line-height: 1.7; }
.catalog-footer-grid > div > strong { display: block; margin-bottom: 16px; }
.catalog-footer-grid nav { display: grid; gap: 10px; }
.catalog-footer-grid nav a { color: #c9c5bf; font-size: 0.82rem; }
.catalog-footer-grid .copyright { grid-column: 1 / -1; }
.footer-legal-nav { grid-column: 1 / -1; display: flex !important; flex-wrap: wrap; gap: 12px 20px !important; padding-top: 20px; border-top: 1px solid #2b2b2b; }
.footer-legal-nav a { color: #aaa59e !important; font-size: 0.72rem !important; }

.legal-hero { padding: 75px 0 55px; background: #f5f2ed; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 950px; font-size: clamp(2.8rem, 6vw, 5.5rem); }
.legal-hero small { display: block; margin-top: 20px; color: var(--muted); }
.legal-page { padding: 70px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 760px); gap: 70px; justify-content: center; align-items: start; }
.legal-layout > aside { position: sticky; top: 115px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #f8f6f2; }
.legal-layout > aside strong { display: block; margin-bottom: 14px; }
.legal-layout > aside nav { display: grid; gap: 4px; }
.legal-layout > aside a { padding: 9px 10px; border-radius: 8px; color: var(--muted); font-size: 0.78rem; line-height: 1.3; }
.legal-layout > aside a.active { background: var(--ink); color: #fff; }
.legal-layout article > section { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-layout article h2 { margin: 0 0 14px; font-size: 1.7rem; }
.legal-layout article p { color: #4d4945; line-height: 1.85; }
.legal-contact-note { padding: 25px; border-radius: 15px; background: #f4f1ec; }
.legal-contact-note p { margin-bottom: 0; }

@media (max-width: 1000px) {
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-section .catalog-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-catalog .catalog-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-filter { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-summary { position: static; }
  .product-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-layout > aside { position: static; }
}

@media (max-width: 700px) {
  .catalog-hero { padding: 55px 0 45px; }
  .catalog-hero h1, .legal-hero h1 { font-size: 3rem; }
  .catalog-filter { grid-template-columns: 1fr; }
  .catalog-product-grid { grid-template-columns: 1fr; }
  .catalog-section > .container { width: min(100% - 28px, 700px); }
  .catalog-section .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .catalog-section .catalog-product-image { height: 180px; }
  .featured-catalog > .container { width: min(100% - 28px, 620px); }
  .featured-catalog .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .featured-catalog .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .featured-catalog .catalog-product-image { height: 180px; }
  .catalog-product-image { height: 285px; }
  .product-main-image { min-height: 360px; }
  .product-main-image img { height: 360px; padding: 12px; }
  .product-thumbnails { grid-template-columns: repeat(3, 1fr); }
  .product-summary h1 { font-size: 2rem; }
  .product-content-section { padding: 60px 0; }
  .product-content-grid aside { padding: 22px; }
  .product-specs div { grid-template-columns: 1fr; gap: 4px; }
  .product-specs dd { text-align: left; }
  .catalog-footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .catalog-footer-grid .copyright { grid-column: auto; }
  .legal-page { padding: 50px 0 90px; }
  .legal-layout > aside { padding: 16px; }
}

@media (min-width: 1001px) and (max-width: 1300px) {
  .catalog-section > .container { width: min(100% - 36px, 1220px); }
  .catalog-section .catalog-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .featured-catalog > .container { width: min(100% - 36px, 1220px); }
  .featured-catalog .catalog-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .catalog-section .catalog-product-grid { grid-template-columns: 1fr; }
  .catalog-section .catalog-product-image { height: 245px; }
  .featured-catalog .catalog-product-grid { grid-template-columns: 1fr; }
  .featured-catalog .catalog-product-image { height: 240px; }
}

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

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