:root {
  --nxt-orange: #F7931E;
  --nxt-orange-dark: #d8780b;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2a2a2a;
  --off-white: #f9f9f9;
  --light-grey-header: #eeeeee;
  --border-color: #dddddd;
  --border-soft: #e9e9e9;
  --text-soft: #666;
  --text-muted: #7a7a7a;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 14px 34px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

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

section,
footer {
  scroll-margin-top: 96px;
}


html {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  overflow-x: hidden;
  color: var(--charcoal);
  line-height: 1.5;
}

body.mobile-menu-open,
body.lightbox-open {
  overflow: hidden;
}

/* SHUTTER & TRANSITIONS */
#shutter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

#shutter.active {
  opacity: 1;
  pointer-events: all;
}

/* HEADER & NAV */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  background: rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.main-header.nav-hidden {
  transform: translateY(-100%);
}

.logo img {
  height: 58px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--nxt-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active-nav {
  color: var(--nxt-orange);
}

.nav-links a.active-nav::after {
  transform: scaleX(1);
}


.dropdown {
  position: relative;
}

.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-chevron {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(14, 14, 14, 0.98);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown-content a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.2px;
}

.dropdown-content a::after {
  display: none;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .nav-chevron,
.dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-content a:hover,
.dropdown-content a.active-nav {
  background: rgba(255,255,255,0.07);
  color: var(--nxt-orange);
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
}

.mobile-menu-parent {
  border-bottom: none;
  padding-bottom: 10px;
}

.mobile-submenu {
  display: grid;
  gap: 0;
  padding: 0 0 6px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-submenu .mobile-menu-link {
  border-bottom: none;
  padding: 12px 0;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.76);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(247,147,30,0.45);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 998;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  background: rgba(14, 14, 14, 0.985);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
  max-height: calc(100vh - 86px);
  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  padding: 18px 5% 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active-nav {
  color: var(--nxt-orange);
}

/* HERO */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 138px 5% 118px;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.44), rgba(0,0,0,0.30) 28%, rgba(0,0,0,0.42) 68%, rgba(255,255,255,0.04) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0.10), rgba(0,0,0,0.42));
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(58%) contrast(1.04);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 210px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.94) 78%, #fff 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overlay h1 {
  font-size: clamp(3.2rem, 8.4vw, 6.5rem);
  color: var(--nxt-orange);
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 32px rgba(0,0,0,0.42);
}

.hero-overlay p {
  margin: 0 0 28px;
  max-width: 24ch;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 18px rgba(0,0,0,0.32);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  background: var(--nxt-orange);
  color: white !important;
  padding: 20px 42px;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.32);
  filter: brightness(1.03);
}

/* PRODUCTS SECTION */
.product-menu {
  padding: 82px 5% 92px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.section-header-main {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 54px;
}

.section-header-main .subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 14px;
}

.section-header-main h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  margin: 0;
  color: #111;
  text-wrap: balance;
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.title-divider {
  width: 90px;
  height: 4px;
  background: var(--nxt-orange);
  margin: 24px auto 0;
  border-radius: 999px;
}

.category-split {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.product-category {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.category-header {
  margin-bottom: 30px;
}

.category-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nxt-orange);
  margin-bottom: 10px;
}

.category-header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 1px;
}

.category-header p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 15px;
}

/* SCROLL REVEAL */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* SELECTOR MENU */
.custom-work-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.selector-tab {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.selector-tab:hover {
  transform: translateY(-3px);
  border-color: #d2d2d2;
  box-shadow: var(--shadow-card);
}

.selector-tab.active {
  background: linear-gradient(135deg, #1a1a1a, #101010);
  border-color: #1a1a1a;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

.selector-title {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 8px;
}

.selector-subtitle {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  color: #666;
}

.selector-tab.active .selector-title,
.selector-tab.active .selector-subtitle {
  color: #fff;
}

.selector-panels {
  position: relative;
}

.selector-panel {
  display: none;
}

.selector-panel.active {
  display: block;
}

.selector-panel-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.selector-panel-header {
  padding: 32px;
  border-bottom: 1px solid #ececec;
  background: linear-gradient(to bottom right, #fafafa, #f1f1f1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.selector-panel-header-text {
  flex: 1;
}

.card-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nxt-orange);
  margin-bottom: 12px;
}

.selector-panel-header-text h4 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--charcoal);
  letter-spacing: 1px;
  line-height: 1.05;
}

.selector-panel-header-text p {
  color: #555;
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.75;
  max-width: 700px;
}

.card-feature-row,
.card-feature-pill {
  display: none;
}

.shipping-badge {
  background: #fff;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(to bottom, #fcfcfc, #f7f7f7);
}

.carousel-viewport {
  overflow-x: hidden;
  padding: 10px 0;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 18px;
}

.item-photo {
  width: 320px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  background: #fff;
  position: relative;
}

.item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.example-photo .photo-note {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 9px;
  line-height: 1.2;
  color: #fff;
  background: rgba(0,0,0,0.68);
  padding: 4px 6px;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: 0;
  max-width: 115px;
  text-align: right;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17,17,17,0.94);
  color: var(--nxt-orange);
  border: none;
  width: 52px;
  height: 52px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-btn.prev {
  left: 15px;
}

.nav-btn.next {
  right: 15px;
}

.nav-btn:hover {
  background: var(--nxt-orange);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  box-sizing: border-box;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  object-fit: contain;
  background: #111;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(247,147,30,0.9);
  color: #fff;
  transform: scale(1.05);
}

.lightbox-close {
  top: 20px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

/* FORM */
.quote-form-container {
  padding: 52px 36px;
  background: #fff;
}

.nxt-form {
  max-width: 100%;
}

.form-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 12px 0;
  border-left: 5px solid var(--nxt-orange);
  padding-left: 15px;
  color: #111;
}

.form-title::after {
  content: "Tell us what you need and we’ll follow up with pricing and details.";
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
  color: var(--text-soft);
  padding-right: 10px;
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  color: #666;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  background: #fafafa;
  font-size: 14px;
  color: #222;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background: #fff;
  border-color: #d2d2d2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: rgba(247, 147, 30, 0.9);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.hidden-input {
  display: none !important;
  margin-top: 10px;
  border-left: 3px solid var(--nxt-orange) !important;
}

.form-row-files {
  margin-bottom: 8px;
}

.file-upload-group input[type="file"] {
  padding: 12px;
  min-height: 58px;
  background: #fff;
  border: 1px dashed rgba(247, 147, 30, 0.45);
  border-radius: 12px;
  cursor: pointer;
}

.file-upload-group input[type="file"]:hover {
  background: #fffaf3;
  border-color: rgba(247, 147, 30, 0.75);
}

.file-upload-group input[type="file"]:focus {
  background: #fff;
}

.file-upload-group input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.file-upload-group input[type="file"]::file-selector-button:hover {
  background: var(--nxt-orange);
}

.upload-note {
  margin: -8px 0 22px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-soft);
}

.submit-btn {
  background: var(--charcoal);
  color: white;
  padding: 18px 22px;
  border: none;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 2px;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  margin-top: 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.submit-btn:hover {
  background: var(--nxt-orange);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(247,147,30,0.22);
}


.ready-products {
  padding-top: 4px;
}

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

.shop-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #d7d7d7;
}

.shop-card-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #f6f6f6, #ececec);
  color: #777;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shop-card-body {
  padding: 24px;
}

.shop-card-body h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.shop-card-body p {
  margin: 0 0 14px;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
}

.shop-price {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--nxt-orange);
}

/* ABOUT */

.about-section {
  padding: 95px 5%;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  border-top: 1px solid #ececec;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 48px;
  align-items: center;
}


.about-image-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.about-image {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

.about-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nxt-orange);
  margin-bottom: 14px;
}

.about-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
  letter-spacing: 1px;
}

.about-content p {
  margin: 0 0 18px;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.85;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.about-highlight {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 24px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.about-highlight h3 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  color: #111;
}

.about-highlight p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 90px 5%;
  background: #fff;
  border-top: 1px solid #ececec;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 42px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #d4d4d4;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nxt-orange), var(--nxt-orange-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(247,147,30,0.2);
}

.testimonial-meta h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 900;
  color: #111;
}

.testimonial-meta span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--nxt-orange);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.testimonial-stars .stars {
  color: var(--nxt-orange);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.rating-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666;
}

.testimonial-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}

/* MOBILE QUOTE BUTTON */
.mobile-quote-button {
  display: none;
}

/* FOOTER */
.footer-section {
  background: linear-gradient(135deg, #1a1a1a, #101010);
  color: white;
  padding: 90px 5% 50px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--nxt-orange);
  margin-bottom: 14px;
}

.footer-section h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}

.footer-intro {
  max-width: 650px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: white;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(247,147,30,0.5);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.footer-contact-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nxt-orange);
}

.footer-contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-wrap {
    max-width: 520px;
  }

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

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

  .custom-work-selector {
    grid-template-columns: 1fr;
  }

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

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

  .lightbox-overlay {
    padding: 32px 70px;
  }
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    top: 72px;
    max-height: calc(100svh - 72px);
  }

  .mobile-menu-inner {
    padding: 14px 4.5% 20px;
  }

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

  .selector-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .selector-panel-header-text h4 {
    font-size: 1.3rem;
  }

  .selector-panel-header-text p {
    font-size: 14px;
  }

  .product-menu {
    padding: 54px 4.5% 64px;
  }

  .quote-form-container {
    padding: 32px 18px;
  }

  .about-section {
    padding: 62px 4.5%;
  }

  .testimonials-section {
    padding: 62px 4.5%;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-top {
    gap: 12px;
    margin-bottom: 14px;
  }

  .testimonial-meta h3 {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .testimonial-stars .stars {
    font-size: 16px;
  }

  .section-header-main {
    margin-bottom: 38px;
  }

  .section-header-main .subtitle {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .section-header-main h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.03;
  }

  .section-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .category-split {
    gap: 48px;
  }

  .category-header h3 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .footer-section {
    padding: 64px 4.5% 36px;
  }

  .hero {
    min-height: clamp(520px, 78svh, 700px);
    padding: 104px 6% 70px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-fade-bottom {
    height: 110px;
  }

  .hero-overlay {
    max-width: 420px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-overlay h1 {
    font-size: clamp(3rem, 14.5vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .hero-overlay p {
    font-size: 1.02rem;
    line-height: 1.45;
    max-width: 26ch;
    margin: 0 auto 22px;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 16px 22px;
    font-size: 0.95rem;
  }

  .logo img {
    height: 46px;
  }

  .main-header {
    padding: 10px 4.5%;
  }

  .carousel-wrapper {
    padding: 24px 0 28px;
  }

  .carousel-track {
    gap: 14px;
    padding: 0 14px;
  }

  .item-photo {
    width: min(72vw, 248px);
    border-radius: 12px;
  }

  .nav-btn {
    width: 42px;
    height: 42px;
  }

  .nav-btn.prev {
    left: 8px;
  }

  .nav-btn.next {
    right: 8px;
  }

  .shipping-badge {
    font-size: 9px;
    padding: 8px 12px;
  }

  .form-title {
    font-size: 1.35rem;
  }

  .form-title::after {
    font-size: 12px;
  }

  .about-container {
    gap: 26px;
  }

  .about-image-wrap {
    max-width: 420px;
  }

  .about-content h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
    line-height: 1.04;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-highlights {
    gap: 14px;
    margin-top: 20px;
  }

  .about-highlight {
    padding: 18px 16px;
  }

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

  .shop-card-image {
    min-height: 160px;
  }

  .shop-card-body {
    padding: 20px;
  }

  .lightbox-overlay {
    padding: 24px 14px 34px;
  }

  .lightbox-content {
    width: 100%;
  }

  .lightbox-content img {
    max-height: 70vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-arrow:hover {
    transform: scale(1.05);
  }

  .lightbox-caption {
    font-size: 13px;
    padding: 0 10px 38px;
  }

  .mobile-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 360px;
    padding: 16px 22px;
    border-radius: 999px;
    background: var(--nxt-orange);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    z-index: 950;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  }

  .mobile-quote-button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.26);
  }

  body.mobile-menu-open .mobile-quote-button,
  body.lightbox-open .mobile-quote-button {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(14px);
  }
}

@media (max-width: 480px) {
  section,
  footer {
    scroll-margin-top: 82px;
  }

  .main-header {
    padding: 10px 16px;
  }

  .logo img {
    height: 42px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    top: 64px;
    max-height: calc(100svh - 64px);
  }

  .hero {
    min-height: 500px;
    padding: 94px 5% 60px;
  }

  .hero-overlay h1 {
    font-size: clamp(2.7rem, 15.8vw, 4rem);
  }

  .hero-overlay p {
    font-size: 0.98rem;
    max-width: 22ch;
  }

  .cta-button {
    max-width: 100%;
    padding: 15px 18px;
    letter-spacing: 0.8px;
  }

  .section-header-main h2,
  .about-content h2,
  .footer-section h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.6rem);
  }

  .category-header h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .selector-tab,
  .testimonial-card,
  .shop-card-body,
  .footer-contact-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quote-form-container {
    padding: 28px 16px;
  }

  .item-photo {
    width: min(76vw, 220px);
  }

  .nav-btn {
    width: 38px;
    height: 38px;
  }
}