/* Pavel Hradil — clean professional one-pager */

:root {
  --red: #c8102e;
  --red-deep: #9e0c24;
  --ink: #141414;
  --muted: #5c5c5c;
  --paper: #ffffff;
  --soft: #f5f6f5;
  --line: rgba(20, 20, 20, 0.09);
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --nav-h: 4rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.5rem);
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img[data-reveal],
.product__media img,
.catalog-row img,
.about__media img,
.page-hero__media img,
main img {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.6s var(--ease);
}

img.is-loaded {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Progress */
.progress {
  position: fixed !important;
  inset: 0 0 auto;
  height: 2px;
  z-index: 10000;
}

.progress__bar {
  height: 100%;
  width: 0;
  background: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn--red {
  background: var(--red);
  color: #fff;
}

.btn--red:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Nav */
.nav {
  position: fixed !important;
  inset: 0 0 auto;
  z-index: 9000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  color: #fff;
  transition: background 0.3s var(--ease), color 0.3s, box-shadow 0.3s;
}

.nav.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.nav__brand {
  justify-self: start;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav__links a {
  opacity: 0.88;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__cta {
  justify-self: end;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
}

.nav:not(.is-solid) .nav__cta {
  color: #fff;
  background: var(--red);
  padding: 0.5rem 0.9rem;
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
}

.mobile-menu[hidden] {
  display: none;
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2.5rem) var(--gutter) clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  overflow: hidden;
  background-color: #141414;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 65% center;
  opacity: 1 !important;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-out forwards;
}

.hero__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.2) 45%, rgba(10, 10, 10, 0.72) 100%), linear-gradient(90deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.12) 70%);
}

@keyframes hero-zoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 40rem);
  animation: hero-copy 0.9s var(--ease) 0.12s both;
}

@keyframes hero-copy {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 32rem;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__meta strong {
  color: #fff;
}

.hero__accent {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 6vw, 4rem);
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  z-index: 2;
  pointer-events: none;
  animation: pulse-frame 4.5s ease-in-out infinite;
}

.hero__accent::before,
.hero__accent::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.hero__accent::before {
  width: 18px;
  height: 2px;
  top: -1px;
  left: -1px;
}

.hero__accent::after {
  width: 2px;
  height: 18px;
  top: -1px;
  left: -1px;
}

@keyframes pulse-frame {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.nav__links a[aria-current="page"] {
  opacity: 1;
  color: var(--red);
}

.nav:not(.is-solid) .nav__links a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Trust */
.trust {
  background: var(--soft);
  padding: 1.75rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.trust__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: center;
}

.trust__inner p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.55;
}

.trust__grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust__grid strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.trust__grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 760px) {
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) var(--gutter);
}

.section--muted {
  background: var(--soft);
}

.section__head {
  width: min(100%, 36rem);
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.65);
}

.section__title {
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}

.section__head .section__sub {
  margin-inline: auto;
}

/* Products */
.products {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.product__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product:hover .product__media img {
  transform: scale(1.04);
}

.product__body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.product__body p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* Chips */
.chips {
  width: min(100%, var(--max));
  margin: 2.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.chips li {
  padding: 0.55rem 0.95rem;
  background: var(--soft);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
}

.section--muted .chips li,
.product .chips li {
  background: var(--paper);
}

/* Why / split */
.split {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split__copy .section__sub {
  margin-top: 0.25rem;
}

.reasons {
  display: grid;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.reasons li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.reasons li:last-child {
  border-bottom: none;
}

.reasons span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
}

.reasons h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}

.reasons p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Hours */
.hours {
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.25rem) var(--gutter);
}

.hours__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hours h2 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.35rem 0 0.75rem;
}

.hours p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
  font-size: 1.02rem;
}

/* About */
.about {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about__media {
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 5 / 4;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__copy {
  max-width: 28rem;
}

.about__text {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.facts {
  display: grid;
  gap: 0;
  margin-bottom: 1.75rem;
}

.facts > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.facts dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}

.facts dd {
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact__list {
  margin-top: 1.75rem;
}

.contact__list li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.2rem;
}

.contact__list span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__list a,
.contact__list strong {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  word-break: break-word;
}

.contact__list a:hover {
  color: var(--red);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.85rem 0.95rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.25rem;
}

.form__note {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.form__success {
  grid-column: 1 / -1;
  background: var(--red);
  color: #fff;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form {
    grid-template-columns: 1fr;
  }
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--ink);
}

.section__head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  width: min(100%, var(--max));
}

.section__head--left .section__sub {
  margin-inline: 0;
}

.section__cta {
  width: min(100%, var(--max));
  margin: 2.25rem auto 0;
  text-align: center;
}

/* Steps */
.steps {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem 1.2rem 1.5rem;
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Tips */
.tips {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.tip {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.tip__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.tip h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.tip p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 900px) {
  .tips {
    grid-template-columns: 1fr;
    max-width: 32rem;
  }
}

/* FAQ */
.faq {
  width: min(100%, 44rem);
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0 1.15rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: "\2212";
}

.faq__item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  padding: 0 0 1.15rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

/* Inner pages */
.page {
  padding-top: var(--nav-h);
}

.page-hero {
  padding: clamp(2.75rem, 7vw, 4.5rem) var(--gutter) clamp(2rem, 5vw, 3rem);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  width: min(100%, 42rem);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(100%, calc(var(--max) + 2 * var(--gutter)));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background: transparent;
  border-bottom: none;
}

.page-hero--split .page-hero__inner {
  width: auto;
}

.page-hero__media {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--soft);
  border: 1px solid var(--line);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .page-hero--split {
    grid-template-columns: 1fr;
  }
}

.narrow {
  width: min(100%, 42rem);
  margin: 0 auto;
}

.prose,
.prose-block {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.prose p,
.prose-block p {
  margin-bottom: 1rem;
}

.prose-block h2,
.article h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.bullet-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.35rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.5;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--red);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.catalog-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.catalog-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.catalog-row--reverse img {
  order: 2;
}

.catalog-row img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--soft);
  border: 1px solid var(--line);
}

.catalog-row h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.catalog-row > div > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

@media (max-width: 800px) {
  .catalog-row,
  .catalog-row--reverse {
    grid-template-columns: 1fr;
  }

  .catalog-row--reverse img {
    order: initial;
  }
}

.content-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.side-card {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.5rem;
}

.side-card--flush {
  margin-top: 1.75rem;
  background: var(--paper);
}

.side-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

@media (max-width: 800px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.feature-cards {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-cards article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.3rem 1.15rem 1.4rem;
}

.feature-cards h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}

.feature-cards p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

.process {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
}

.process li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.process strong {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.process span {
  color: var(--muted);
  line-height: 1.55;
}

.article {
  width: min(100%, 44rem);
  margin: 0 auto;
}

.stats {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats > div {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem 1.1rem;
}

.stats strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.stats span {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.about--page {
  align-items: start;
}

.field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.85rem 0.95rem;
  outline: none;
}

.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem var(--gutter) 1.75rem;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.footer__row strong,
.footer__grid strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer__grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer__grid p {
  margin-top: 0.35rem;
}

.footer__grid a,
.footer__grid span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.footer__grid a:hover {
  color: #fff;
}

.footer__label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem !important;
}

.footer__meta {
  font-size: 0.92rem;
}

.footer__meta a:hover {
  color: #fff;
}

.footer__copy {
  width: min(100%, var(--max));
  margin: 1.75rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  opacity: 0.65;
}

@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* FAB */
.fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 8800;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.32);
  transition: background 0.2s, transform 0.2s;
}

.fab:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .anim {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero__media {
    transform: none !important;
  }
}

/* ---------- Graphic atmosphere ---------- */
.fx-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(to right, var(--ink) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.progress {
  z-index: 10000;
}

.nav {
  z-index: 9000;
}

.mobile-menu {
  z-index: 8500;
}

.fab {
  z-index: 8800;
}

.page-hero__mark {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  opacity: 0.7;
}

.page-hero {
  position: relative;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 2px;
  background: var(--red);
  margin-right: 0.55rem;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Image placeholders */
.product__media,
.catalog-row img,
.about__media,
.page-hero__media,
.why__photo {
  background:
    linear-gradient(135deg, #e8ebe7 0%, #f5f6f5 50%, #dde3db 100%);
  overflow: hidden;
}

.product__media img.is-loaded,
.catalog-row img.is-loaded,
.about__media img.is-loaded,
.page-hero__media img.is-loaded {
  animation: img-rise 0.8s var(--ease) both;
}

@keyframes img-rise {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll reveal */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
  filter: blur(2px);
  transition-delay: var(--d, 0ms);
}

.anim.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.products .anim:nth-child(1) { --d: 0ms; }
.products .anim:nth-child(2) { --d: 100ms; }
.products .anim:nth-child(3) { --d: 200ms; }

.steps .anim:nth-child(1) { --d: 0ms; }
.steps .anim:nth-child(2) { --d: 80ms; }
.steps .anim:nth-child(3) { --d: 160ms; }
.steps .anim:nth-child(4) { --d: 240ms; }

.trust__grid .anim:nth-child(1) { --d: 0ms; }
.trust__grid .anim:nth-child(2) { --d: 90ms; }
.trust__grid .anim:nth-child(3) { --d: 180ms; }

/* Soft section separators */
.section--muted {
  position: relative;
}

.section--muted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2 * var(--gutter), var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hours {
  position: relative;
  overflow: hidden;
}

.hours::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hours::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 50%;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: orbit 12s linear infinite;
}

@keyframes orbit {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.fab {
  transition: background 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  animation: fab-in 0.6s var(--ease) 0.8s both;
}

@keyframes fab-in {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.nav__brand::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  margin-right: 0.55rem;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  vertical-align: 1px;
}

.text-link {
  transition: gap 0.25s, transform 0.25s, color 0.2s;
}

.text-link:hover {
  transform: translateX(3px);
}

.product,
.tip,
.reasons li,
.feature-cards article,
.faq__item,
.side-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.product:hover,
.tip:hover,
.feature-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.08);
}

.steps li {
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 16, 46, 0.35);
}

.steps__num {
  transition: transform 0.3s var(--ease);
}

.steps li:hover .steps__num {
  transform: scale(1.08);
}
