:root {
  /* Dark & Neon Palette */
  --bg-black: #0E0E10;
  --bg-surface: #17171B;
  --bg-surface-elevated: #202026;
  
  /* Neon Orange Accents */
  --neon-orange: #FF6600;
  --neon-orange-bright: #FF8533;
  --neon-orange-glow: rgba(255, 102, 0, 0.35);
  --neon-orange-subtle: rgba(255, 102, 0, 0.12);

  /* Crisp Whites & Greys */
  --text-white: #FFFFFF;
  --text-dim: #A1A1AA;
  --border-dark: #27272E;
  --border-bright: #383842;
  
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header & Navigation */
header {
  background-color: rgba(14, 14, 16, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
}

header .container {
  width: 92%;
  max-width: 1200px;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 0 0.55rem;
}

.brand-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  letter-spacing: 0.5px;
  padding-bottom: 0.75rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.25);
}

.brand-logo span {
  color: var(--neon-orange);
  text-shadow: 0 0 14px var(--neon-orange-glow);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.2s ease;
  font-size: 0.92rem;
  white-space: nowrap;
}

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

.nav-links a.active {
  border-bottom: 2px solid var(--neon-orange);
  padding-bottom: 4px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--text-white);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-primary {
  background-color: var(--neon-orange);
  color: #000;
  box-shadow: 0 0 20px var(--neon-orange-glow);
}

.btn-primary:hover {
  background-color: var(--neon-orange-bright);
  box-shadow: 0 0 28px rgba(255, 102, 0, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 1.5px solid var(--text-white);
  color: var(--text-white);
}

.btn-secondary:hover {
  border-color: var(--neon-orange);
  color: var(--neon-orange);
  box-shadow: 0 0 15px var(--neon-orange-subtle);
  transform: translateY(-2px);
}

/* Page Banner / Header for Subpages */
.page-banner {
  padding: 4.5rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-dark);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--neon-orange-bright);
  background: var(--neon-orange-subtle);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.page-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.page-banner h1 span {
  color: var(--neon-orange);
  text-shadow: 0 0 20px var(--neon-orange-glow);
}

.page-banner p {
  color: var(--text-dim);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Hero Section (Homepage) */
.hero {
  padding: 5.5rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--neon-orange-bright);
  background: var(--neon-orange-subtle);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
}

.hero h1 {
  font-size: 3.4rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--neon-orange);
  text-shadow: 0 0 20px var(--neon-orange-glow);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Visual Strip */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.hero-strip-card {
  position: relative;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-surface);
  display: block;
}

.hero-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-strip-card:hover img {
  transform: scale(1.08);
}

.hero-strip-card:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 8px 24px var(--neon-orange-glow);
  transform: translateY(-4px);
}

.hero-strip-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(14, 14, 16, 0.95), transparent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-white);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-strip-label span {
  color: var(--neon-orange-bright);
  font-size: 1rem;
}

/* Sections Common */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}

.section-header h2 span {
  color: var(--neon-orange);
}

.section-header p {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* About Section Styles */
.about-box {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 3.5rem;
  border: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--text-white);
  line-height: 1.2;
}

.about-text h3 span {
  color: var(--neon-orange);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.craft-quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  border-left: 3px solid var(--neon-orange);
  padding: 0.8rem 1.2rem;
  margin: 1.8rem 0;
  background: var(--neon-orange-subtle);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-badge-card {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(14, 14, 16, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 102, 0, 0.4);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-orange);
  box-shadow: 0 0 10px var(--neon-orange);
  flex-shrink: 0;
}

.about-badge-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-white);
}

.about-badge-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--neon-orange);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--neon-orange);
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-white);
}

.value-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* What We Offer / Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--neon-orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.18);
}

.feature-img-wrap {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: #111;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-img-wrap img {
  transform: scale(1.08);
}

.feature-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(14, 14, 16, 0.85);
  border: 1px solid var(--neon-orange);
  color: var(--neon-orange-bright);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-content {
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.feature-content p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Process Timeline / Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.process-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--neon-orange);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neon-orange);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Gallery Section & Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  color: var(--text-dim);
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--neon-orange);
  color: var(--text-white);
}

.filter-btn.active {
  background: var(--neon-orange);
  color: #0E0E10;
  border-color: var(--neon-orange);
  box-shadow: 0 0 16px var(--neon-orange-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  background: var(--bg-surface);
  transition: all 0.35s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.22);
  transform: translateY(-4px);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 16, 0.95) 0%, rgba(14, 14, 16, 0.45) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  pointer-events: none;
}

.gallery-category-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon-orange-bright);
  background: rgba(255, 102, 0, 0.16);
  border: 1px solid rgba(255, 102, 0, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.45rem;
}

.gallery-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.gallery-item p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.35;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(14px);
  padding: 2rem;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 40px var(--neon-orange-glow);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-img-wrap {
  width: 100%;
  height: 520px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.tumbler-img,
img[src*="Tumbler01"],
img[src*="IMG_3464"] {
  object-position: center 30%;
}

.lightbox-content img,
.lightbox-content img.tumbler-img,
.lightbox-content img[src*="Tumbler01"],
.lightbox-content img[src*="IMG_3464"] {
  object-position: center center !important;
}


.lightbox-info {
  padding: 1.5rem 1.8rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dark);
}

.lightbox-info h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-top: 0.35rem;
  margin-bottom: 0.4rem;
}

.lightbox-info p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  background: rgba(14, 14, 16, 0.8);
  border: 1px solid var(--border-bright);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--neon-orange);
  color: #0E0E10;
  border-color: var(--neon-orange);
  transform: rotate(90deg);
}

/* Contact Section & Form */
.contact-container {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  padding: 4rem 3rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-white);
}

input, select, textarea {
  padding: 1rem;
  background: var(--bg-black);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select {
  cursor: pointer;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--neon-orange);
  box-shadow: 0 0 12px var(--neon-orange-glow);
}

/* CTA Card */
.cta-banner {
  background: linear-gradient(135deg, #202026 0%, #17171B 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-banner h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-banner h3 span {
  color: var(--neon-orange);
}

.cta-banner p {
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0 2.5rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  background: var(--bg-surface);
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-brand span {
  color: var(--neon-orange);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--neon-orange-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}

@media (max-width: 1080px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
  }
  .brand-logo {
    padding-bottom: 0;
    font-size: 1.25rem;
  }
  .brand-logo img {
    height: 40px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: none;
    border-bottom: 1px solid var(--border-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .page-banner h1 {
    font-size: 2.3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-container {
    padding: 2.5rem 1.5rem;
  }
  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }
  .about-image-wrapper img {
    height: 300px;
  }
  .lightbox-content {
    max-height: 95vh;
  }
  .lightbox-img-wrap {
    height: 45vh;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 0.95rem;
    gap: 0.4rem;
    letter-spacing: 0px;
  }
  .brand-logo img {
    height: 28px;
  }
  .mobile-toggle {
    padding: 0.35rem 0.6rem;
    font-size: 1.05rem;
  }
  .hero-strip {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-secondary {
    margin-left: 0;
  }
}
