:root {
  --bg: #0c0c0c;
  --surface: #111111;
  --card: #151515;
  --card-2: #1c1c1c;
  --text: #f3f3f3;
  --chrome: #d1d5db;
  --silver: #9ca3af;
  --muted: #6b7280;
  --border: #2a2a2a;
  --red: #b91c1c;
  --red-bright: #dc2626;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
.brand strong,
.site-nav a,
.button,
dt,
dd {
  font-family: Oswald, Inter, sans-serif;
}

.site-header {
  align-items: center;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand img {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 50%;
  height: 38px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  width: 38px;
}

.brand span {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  padding: 10px 14px;
  text-transform: uppercase;
  transition: 180ms ease;
}

.site-nav a:hover {
  background: rgba(185, 28, 28, 0.1);
  color: var(--red);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  background: var(--silver);
  display: block;
  height: 1px;
  width: 22px;
}

.section {
  padding: clamp(64px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hero {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  min-height: auto;
  padding-bottom: clamp(38px, 5vw, 62px);
  padding-top: clamp(96px, 10vw, 126px);
  text-align: left;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.hero-logo {
  border: 2px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  height: clamp(74px, 8vw, 96px);
  margin-bottom: 22px;
  overflow: hidden;
  width: clamp(74px, 8vw, 96px);
}

.hero-logo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.9vw, 4.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 12px 0 18px;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--silver);
  font-size: clamp(0.98rem, 1.5vw, 1.16rem);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 26px;
}

.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 44px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: 180ms ease;
}

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

.button.primary:hover {
  background: var(--red-bright);
  box-shadow: 0 14px 28px rgba(185, 28, 28, 0.22);
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--silver);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--text);
}

.hero-place,
.hero-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}

.hero-place {
  align-self: stretch;
  display: flex;
  height: auto;
  justify-self: end;
  min-height: 0;
  width: 100%;
}

.place-photo {
  flex: 1;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.place-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-panel {
  grid-column: 1 / -1;
  margin: 0 auto;
  max-width: none;
}

.hero-panel dl,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-panel dl {
  margin: 0;
}

.hero-panel div,
.trust-strip div {
  border-right: 1px solid var(--border);
  padding: 12px 18px;
}

.hero-panel div:last-child,
.trust-strip div:last-child {
  border-right: 0;
}

dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

dd {
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
  margin: 5px 0 0;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.trust-strip div {
  padding: 34px clamp(22px, 5vw, 72px);
}

.trust-strip strong {
  color: var(--text);
  display: block;
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.trust-strip span,
.section-heading p,
.contact p,
.product-body p,
.step-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 12px 0 18px;
  text-transform: uppercase;
}

.catalog {
  background: var(--bg);
  padding-top: clamp(48px, 5vw, 68px);
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.product-card {
  align-items: stretch;
  align-self: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  min-height: 0;
  overflow: hidden;
  transition: 220ms ease;
}

.product-card:hover {
  border-color: rgba(185, 28, 28, 0.5);
}

.product-image {
  align-self: stretch;
  background: var(--surface);
  border: 0;
  cursor: zoom-in;
  flex: 0 0 clamp(160px, 32%, 220px);
  height: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

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

.product-image::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  content: "";
  inset: 0;
  position: absolute;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  justify-content: space-between;
  min-width: 0;
  padding: 16px;
}

.product-topline,
.product-footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.product-topline > span:first-child {
  color: var(--red);
  font-family: Oswald, Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-body h3 {
  color: var(--text);
  font-size: clamp(1.28rem, 1.7vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.product-body p {
  font-size: 0.92rem;
  margin: 0;
}

.product-tags {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-tags li {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--chrome);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  padding: 5px 7px;
}

.product-tags li:last-child {
  color: var(--silver);
  grid-column: 1 / -1;
}

.product-details-button {
  align-self: flex-start;
  background: transparent;
  border: 0;
  color: var(--chrome);
  cursor: pointer;
  font-family: Oswald, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  padding: 3px 0;
  text-transform: uppercase;
}

.product-details-button::before {
  color: var(--red);
  content: "+";
  display: inline-block;
  font-size: 1rem;
  margin-right: 7px;
}

.product-footer {
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding-top: 14px;
}

.product-footer strong {
  color: var(--red);
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(1.28rem, 1.7vw, 1.55rem);
}

.product-footer a {
  background: var(--red);
  border-radius: 4px;
  color: white;
  font-family: Oswald, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 9px 14px;
  text-transform: uppercase;
}

.lightbox-open,
.details-modal-open {
  overflow: hidden;
}

.lightbox,
.details-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
}

.lightbox {
  z-index: 20;
}

.lightbox[hidden],
.details-modal[hidden] {
  display: none;
}

.lightbox-backdrop,
.details-modal-backdrop {
  background: rgba(0, 0, 0, 0.88);
  border: 0;
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.lightbox-dialog {
  max-height: min(90vh, 900px);
  max-width: min(92vw, 760px);
  position: relative;
  width: 100%;
}

.lightbox figure {
  margin: 0;
}

.lightbox figure img {
  background: var(--surface);
  display: block;
  height: min(78vh, 760px);
  object-fit: contain;
  width: 100%;
}

.lightbox figcaption {
  align-items: center;
  color: var(--text);
  display: flex;
  font-family: Oswald, Inter, sans-serif;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-top: 12px;
  text-transform: uppercase;
}

.lightbox figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.lightbox-close,
.lightbox-nav {
  align-items: center;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

.lightbox-close {
  font-size: 1.8rem;
  height: 40px;
  right: 10px;
  top: 10px;
  width: 40px;
}

.lightbox-nav {
  font-size: 1.6rem;
  height: 48px;
  top: calc(50% - 24px);
  width: 48px;
}

.lightbox-previous {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  border-color: var(--red);
  color: white;
}

.details-modal {
  z-index: 30;
}

.details-modal-dialog {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  max-height: min(86vh, 760px);
  max-width: 720px;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  width: 100%;
}

.details-modal-dialog h2 {
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 10px 38px 18px 0;
  text-transform: uppercase;
}

.details-modal-description {
  color: var(--silver);
  line-height: 1.7;
  margin: 0;
  white-space: pre-line;
}

.details-modal-close {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 1.7rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
}

.details-modal-close:hover,
.product-details-button:hover {
  color: var(--red);
}

.steps {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.step-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.step-grid article,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
}

.step-grid article + article {
  border-left: 0;
}

.step-grid span {
  color: var(--red);
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
}

.step-grid h3 {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin: 16px 0 8px;
  text-transform: uppercase;
}

.contact {
  display: block;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-intro {
  max-width: 760px;
}

.contact h2 {
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 12px 0 18px;
  text-transform: uppercase;
}

.contact-layout {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
}

.contact-card,
.map-card {
  box-shadow: var(--shadow);
}

.map-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
}

.map-card-head,
.map-card-foot {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  padding: 14px 18px;
}

.map-card-head span {
  background: var(--red);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.map-card-head p,
.map-card-foot a {
  color: var(--muted);
  font-family: Oswald, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.map-card iframe {
  border: 0;
  flex: 1;
  min-height: 300px;
  width: 100%;
}

.map-card-foot {
  border-bottom: 0;
  border-top: 1px solid var(--border);
}

.map-card-foot a:hover {
  color: var(--red);
}

.phone {
  color: var(--text);
  display: block;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(2.1rem, 3.1vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  white-space: nowrap;
}

.contact-card .button {
  margin-top: 18px;
  width: 100%;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--border);
  display: flex;
  font-size: 0.86rem;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.loading {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  padding: 24px;
}

.error {
  color: var(--text);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 64px;
  }

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

  .site-nav a {
    width: 100%;
  }

  .hero,
  .trust-strip,
  .hero-panel dl,
  .step-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .product-image {
    flex-basis: clamp(190px, 30%, 250px);
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-place {
    display: block;
    justify-self: stretch;
    width: 100%;
  }

  .place-photo,
  .place-photo img {
    height: auto;
  }

  .hero-panel div,
  .trust-strip div,
  .step-grid article + article {
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .hero-panel div:last-child,
  .trust-strip div:last-child,
  .step-grid article:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 540px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .hero {
    padding-bottom: 44px;
    padding-top: 84px;
  }

  .hero-logo {
    height: 88px;
    margin-bottom: 16px;
    width: 88px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    margin-bottom: 14px;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.55;
  }


  .hero-panel {
    margin-top: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .phone {
    font-size: clamp(2rem, 11vw, 2.55rem);
    white-space: normal;
  }

  .map-card {
    min-height: 340px;
  }

  .map-card iframe {
    min-height: 250px;
  }

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

  .product-card {
    flex-direction: column;
    min-height: 0;
  }

  .product-image {
    aspect-ratio: 4 / 3;
    flex-basis: auto;
    height: auto;
  }

  .product-topline,
  .product-footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
