:root {
  --accent: #e65f19;
  --accent-dark: #c64f10;
  --dark: #2b2d31;
  --dark-soft: #3a3b40;
  --text: #1f2328;
  --text-soft: #5a6169;
  --line: #dcdfe3;
  --line-strong: rgba(255, 255, 255, 0.12);
  --panel: #ffffff;
  --panel-soft: #f5f6f7;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

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

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 30;
}

.tt-panel-info {
  background: var(--dark);
  color: #fff;
}

.tt-panel-info__grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 20px 0;
}

.site-logo img {
  width: min(260px, 100%);
  height: auto;
}

.tt-panel-info__boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tt-panel-info__item {
  min-height: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.tt-panel-info__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-panel-info__item strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.header-holder {
  background: var(--dark-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 4px solid var(--accent);
}

.header-holder__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 64px;
}

.site-nav {
  justify-self: center;
}

.site-nav__list,
.site-nav__dropdown,
.site-footer ul,
.spec-list,
.gallery-thumbs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list {
  display: flex;
  align-items: stretch;
}

.site-nav__item {
  position: relative;
}

.site-nav__item > a {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav__item.is-active > a,
.site-nav__item:hover > a {
  background: rgba(0, 0, 0, 0.2);
}

.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 240px;
  background: #313237;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.site-nav__item:hover .site-nav__dropdown {
  display: block;
}

.site-nav__dropdown li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav__dropdown a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.site-nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-actions,
.product-panel__actions,
.section-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.site-action-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid #31343a;
  background: #fff;
  color: #25282d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.site-action-link {
  min-height: 40px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.site-action-link:hover,
.button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-action-link--accent,
.button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.site-action-link--accent:hover,
.button--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.site-main {
  min-height: 60vh;
}

.page-strip {
  background: linear-gradient(180deg, #47484c 0%, #36373b 100%);
  color: #fff;
  padding: 32px 0 36px;
}

.page-breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.page-strip__label {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-strip h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
}

.page-strip p {
  max-width: 70ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-carousel {
  position: relative;
  background: #13161b;
  overflow: hidden;
}

.hero-carousel__viewport {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 17, 20, 0.86) 0%, rgba(15, 17, 20, 0.42) 52%, rgba(15, 17, 20, 0.18) 100%);
}

.hero-slide__content {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container));
}

.hero-slide__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  background: rgba(230, 95, 25, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide__content strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.98;
}

.hero-slide__content span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-slide__content > span:nth-child(3) {
  display: block;
  max-width: 58ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 0;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}

.hero-carousel__control--prev {
  left: 18px;
}

.hero-carousel__control--next {
  right: 18px;
}

.hero-carousel__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-carousel__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-carousel__dot.is-active {
  background: var(--accent);
}

.site-section {
  padding: 54px 0;
}

.site-section--intro {
  padding-top: 42px;
}

.site-section--muted {
  background: var(--panel-soft);
}

.tt-block-title {
  margin-bottom: 28px;
}

.tt-block-title--center {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.tt-title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.tt-description {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 1rem;
}

.tt-copy {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--text-soft);
}

.tt-copy p {
  margin: 0;
}

.inventory-prompt {
  position: relative;
  padding: 58px 0;
  color: #fff;
  background: #171a20 url("/images/bg-inventory-prompt.jpg") center / cover no-repeat;
}

.inventory-prompt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 21, 0.72);
}

.inventory-prompt > .site-container {
  position: relative;
  z-index: 1;
}

.inventory-prompt .tt-title,
.inventory-prompt .tt-description {
  color: #fff;
}

.inventory-prompt__grid,
.tt-card-grid,
.site-footer__grid,
.gallery-thumbs,
.spec-list {
  display: grid;
  gap: 18px;
}

.inventory-prompt__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inventory-prompt__item {
  display: block;
  padding: 24px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.inventory-prompt__item:hover {
  border-color: rgba(230, 95, 25, 0.8);
}

.inventory-prompt__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(230, 95, 25, 0.18);
  color: #fff;
  font-size: 1.5rem;
}

.inventory-prompt__item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.inventory-prompt__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.tt-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.tt-product-card,
.gallery-shell,
.product-panel,
.content-block,
.content-media,
.article-layout {
  background: var(--panel);
  border: 1px solid var(--line);
}

.tt-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tt-product-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.tt-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.tt-product-card:hover .tt-product-card__image img {
  transform: scale(1.03);
}

.tt-product-card__body {
  padding: 18px;
}

.tt-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.tt-product-card__tag {
  display: inline-flex;
  padding: 6px 10px;
  background: #f1f2f4;
  color: #3d434b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-product-card__price {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.tt-product-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.32;
}

.tt-product-card__text {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.tt-product-card__link {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-actions {
  justify-content: center;
  margin-top: 24px;
}

.product-layout,
.content-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.product-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.content-layout {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.content-layout--single {
  grid-template-columns: 1fr;
}

.gallery-main {
  aspect-ratio: 4 / 3;
  background: #fff;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  padding: 12px;
  background: var(--panel-soft);
  border-top: 1px solid var(--line);
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--accent);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-panel,
.content-block,
.article-layout {
  padding: 24px;
}

.product-panel__meta {
  margin-bottom: 14px;
}

.product-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.product-panel__price {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 700;
}

.product-panel__lead {
  margin: 0;
  color: var(--text-soft);
}

.spec-list {
  margin-top: 18px;
}

.spec-list li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--panel-soft);
}

.spec-list span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.spec-list strong {
  max-width: 48%;
  text-align: right;
  font-size: 0.96rem;
}

.content-block + .content-block {
  margin-top: 22px;
}

.content-block h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
}

.content-media {
  overflow: hidden;
}

.content-media img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.wysiwyg {
  color: var(--text-soft);
}

.wysiwyg > *:first-child {
  margin-top: 0;
}

.wysiwyg > *:last-child {
  margin-bottom: 0;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  color: var(--text);
}

.wysiwyg a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
}

.wysiwyg th,
.wysiwyg td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 20px;
}

.table-scroll-wrap {
  width: 100%;
  overflow-x: auto;
}

.site-footer {
  margin-top: 58px;
  background: var(--dark);
  color: #fff;
}

.tt-footer-layout {
  padding: 40px 0 28px;
  border-top: 4px solid var(--accent);
}

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

.site-footer__brand {
  padding-right: 20px;
}

.site-footer__brand h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.05;
}

.site-footer__brand p,
.site-footer__box p,
.site-footer__box li {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.site-footer__box {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__box h4 {
  margin: 0 0 12px;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__box li + li,
.site-footer__box p + p {
  margin-top: 8px;
}

.site-footer__box a:hover {
  color: #fff;
}

.site-footer__bottom {
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .tt-panel-info__boxes,
  .tt-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  .tt-panel-info__grid {
    grid-template-columns: 1fr;
  }

  .header-holder__inner {
    grid-template-columns: auto 1fr;
    padding: 12px 0 0;
  }

  .site-nav__toggle {
    display: inline-flex;
    justify-self: start;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    padding-bottom: 16px;
  }

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

  .site-nav__list {
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__item > a {
    height: auto;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__dropdown {
    position: static;
    display: block;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 16px;
  }
}

@media (max-width: 920px) {
  .inventory-prompt__grid,
  .tt-card-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-card-grid--news,
  .product-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-carousel__viewport,
  .hero-slide img {
    min-height: 440px;
    height: 440px;
  }
}

@media (max-width: 700px) {
  .site-actions,
  .product-panel__actions {
    align-items: stretch;
  }

  .site-action-link,
  .button {
    width: 100%;
  }

  .tt-panel-info__boxes,
  .inventory-prompt__grid,
  .tt-card-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel__viewport,
  .hero-slide img {
    min-height: 360px;
    height: 360px;
  }

  .hero-slide__content {
    bottom: 40px;
  }

  .hero-carousel__control {
    top: auto;
    bottom: 72px;
    margin-top: 0;
  }

  .hero-carousel__control--prev {
    left: 12px;
  }

  .hero-carousel__control--next {
    right: 12px;
  }

  .product-panel,
  .content-block,
  .article-layout {
    padding: 20px;
  }
}
