:root {
  --ink: #171717;
  --muted: #686868;
  --line: #e7e3df;
  --paper: #ffffff;
  --soft: #f7f5f2;
  --red: #df1f26;
  --red-dark: #b9151b;
  --charcoal: #202020;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

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

.container {
  margin: 0 auto;
  max-width: 1220px;
  padding-left: 30px;
  padding-right: 30px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 40px;
  height: 88px;
}

.brand img {
  display: block;
  height: 54px;
  object-fit: contain;
  width: auto;
}

nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

nav a {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
.text-link:hover {
  color: var(--red);
}

.button {
  align-items: center;
  background: var(--red);
  border: 0;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  background:
    radial-gradient(circle at 87% 30%, rgba(223, 31, 38, 0.09), transparent 25%),
    linear-gradient(135deg, #faf9f7 0%, #ffffff 58%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 92px 0 100px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
}

.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0;
  max-width: 720px;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 30px 0 0;
  max-width: 630px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--red);
  margin-left: 4px;
}

.hero-panel {
  align-items: center;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 28px 28px 0 rgba(223, 31, 38, 0.11);
  color: white;
  display: flex;
  gap: 24px;
  min-height: 280px;
  overflow: hidden;
  padding: 38px;
  position: relative;
}

.hero-panel::after {
  background: var(--red);
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-mark {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
}

.hero-panel p {
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.hero-panel .panel-label {
  color: white;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.catalogue {
  padding: 100px 0 110px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 3px;
  max-width: 480px;
}

.image-disclaimer {
  color: #99938e;
  font-size: 11px;
  line-height: 1.5;
  margin: 13px 0 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 44px;
}

.filter {
  background: white;
  border: 1px solid #dcd7d2;
  border-radius: 100px;
  color: #4e4e4e;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  transition: 150ms ease;
}

.filter:hover {
  border-color: #96918d;
}

.filter.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: white;
}

.product-count {
  color: #85807c;
  font-size: 13px;
  font-weight: 700;
  margin: 20px 0 16px;
}

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

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

.product-card:hover {
  box-shadow: 0 18px 45px rgba(40, 33, 29, 0.08);
  transform: translateY(-3px);
}

.product-card:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.1);
}

.product-card-link {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.product-card-link:focus-visible {
  outline: none;
}

.product-image-frame {
  aspect-ratio: 4 / 3;
  background: #f0eeeb;
  overflow: hidden;
}

.product-image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .product-image-frame {
    cursor: zoom-in;
  }

  .product-card:hover .product-image {
    transform: scale(1.08);
  }
}

.image-placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 82% 18%, rgba(191, 27, 37, 0.09), transparent 27%),
    linear-gradient(145deg, #f8f6f3, #ebe7e2);
  color: #282321;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.placeholder-brand {
  align-items: center;
  background: white;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  margin-bottom: 5px;
  box-shadow: 0 8px 22px rgba(40, 33, 29, 0.08);
  width: 58px;
}

.placeholder-product {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.product-info {
  min-height: 150px;
  padding: 24px 24px 26px;
}

.category-label {
  color: var(--red) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0 0 9px !important;
  text-transform: uppercase;
}

.product-info h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

.product-info p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.product-detail-page {
  min-height: calc(100vh - 185px);
}

.product-detail {
  background:
    radial-gradient(circle at 91% 15%, rgba(223, 31, 38, 0.08), transparent 28%),
    linear-gradient(145deg, #faf9f7 0%, #ffffff 68%);
  padding: 58px 0 100px;
}

.detail-back {
  align-items: center;
  color: #55514e;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  margin-bottom: 34px;
}

.detail-back:hover,
.detail-phone:hover {
  color: var(--red);
}

.product-detail-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.product-detail-media {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 65px rgba(40, 33, 29, 0.08);
  overflow: hidden;
}

.product-detail-image {
  background: #f3f1ee;
  display: block;
  max-height: 680px;
  object-fit: contain;
  width: 100%;
}

.product-detail-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 420px;
}

.product-detail-copy h1 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}

.detail-category {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  margin: 19px 0 0;
  text-transform: uppercase;
}

.detail-pack {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 32px;
  padding: 22px 0;
}

.detail-pack span {
  color: #89837f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-pack strong {
  font-size: 24px;
}

.detail-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 26px 0 0;
}

.detail-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.detail-actions .button span {
  margin-left: 10px;
}

.detail-phone {
  font-size: 13px;
  font-weight: 800;
}

.detail-disclaimer {
  color: #99938e;
  font-size: 11px;
  line-height: 1.5;
  margin: 24px 0 0;
}

.contact-section {
  background: var(--charcoal);
  color: white;
  padding: 105px 0;
}

.contact-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}

.eyebrow.light {
  color: #ff5a60;
}

.contact-copy > p:not(.eyebrow) {
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.7;
  margin: 26px 0 0;
}

.contact-details {
  border-top: 1px solid #414141;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 38px;
  padding-top: 30px;
}

.contact-details a {
  font-weight: 800;
}

.contact-details span {
  color: #a9a9a9;
  font-size: 14px;
}

.contact-form {
  background: white;
  border-radius: 7px;
  color: var(--ink);
  padding: 38px;
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  background: #faf9f7;
  border: 1px solid #dedad5;
  border-radius: 3px;
  display: block;
  margin-top: 8px;
  outline: none;
  padding: 13px 14px;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.08);
}

.submit-button {
  min-width: 230px;
}

.submit-button span {
  margin-left: 10px;
}

.form-note {
  color: #89837f;
  display: inline-block;
  font-size: 11px;
  margin: 0 0 0 14px;
}

.form-status.success {
  color: #17683a;
  font-weight: 700;
}

.form-status.error {
  color: #a61b1b;
  font-weight: 700;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 28px;
}

.footer-inner img {
  height: 34px;
  object-fit: contain;
  width: auto;
}

.footer-inner p {
  color: #77716d;
  font-size: 12px;
  margin: 0;
}

.footer-inner a {
  font-size: 12px;
  font-weight: 800;
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .product-detail-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 220px;
  }

  .product-detail-copy {
    max-width: 700px;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    gap: 12px;
    height: 72px;
  }

  .brand img {
    height: 40px;
  }

  nav {
    display: none;
  }

  .button-small {
    font-size: 11px;
    margin-left: auto;
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero-grid {
    gap: 48px;
  }

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

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-panel {
    box-shadow: 14px 14px 0 rgba(223, 31, 38, 0.11);
    padding: 26px;
  }

  .hero-mark {
    font-size: 84px;
  }

  .catalogue,
  .contact-section {
    padding: 72px 0;
  }

  .product-detail {
    padding: 38px 0 72px;
  }

  .product-detail-grid {
    gap: 36px;
  }

  .product-detail-placeholder {
    min-height: 0;
  }

  .product-detail-copy h1 {
    font-size: 42px;
  }

  .detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    flex-wrap: nowrap;
    margin-left: -20px;
    margin-right: -20px;
    overflow-x: auto;
    padding: 0 20px 8px;
  }

  .filter {
    flex: 0 0 auto;
  }

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

  .contact-grid {
    gap: 42px;
  }

  .contact-form {
    margin-left: -6px;
    margin-right: -6px;
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-note {
    display: block;
    margin: 12px 0 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner a {
    margin-left: 0;
  }
}

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

  * {
    transition: none !important;
  }
}
