/*
Theme Name: Luxmond Watch Co.
Theme URI: https://luxmondwatchco.com
Author: Luxmond Watch Co.
Description: Custom luxury theme for Luxmond Watch Co.
Version: 1.0
*/

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #0D0D0D;
  color: #ccc;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
  color: #f0ece4;
}

/* ─── Utility ─── */
.lux-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lux-section {
  padding: 6rem 0;
}

.lux-eyebrow {
  color: #C9A84C;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.lux-divider {
  width: 40px;
  height: 1px;
  background: #C9A84C;
  margin: 1.5rem auto;
}

.lux-btn {
  display: inline-block;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  padding: 0.85rem 2.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.lux-btn:hover {
  background: #C9A84C;
  color: #000;
}

.lux-btn-solid {
  background: #C9A84C;
  color: #000;
}

.lux-btn-solid:hover {
  background: transparent;
  color: #C9A84C;
}

/* ─── Navigation ─── */
.lux-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

.lux-nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  padding: 1rem 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.lux-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #f0ece4;
  text-transform: uppercase;
}

.lux-nav-logo span {
  color: #C9A84C;
}

.lux-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.lux-nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.3s;
}

.lux-nav-links a:hover {
  color: #C9A84C;
}

.lux-nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.5);
  color: #C9A84C;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s;
}

.lux-nav-cta:hover {
  background: #C9A84C;
  color: #000;
}

.lux-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.lux-nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #C9A84C;
  transition: all 0.3s;
}

/* ─── Hero ─── */
.lux-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0D0D0D;
}

.lux-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, #1c1408 0%, #0D0D0D 65%),
              radial-gradient(ellipse at 70% 20%, #130f0a 0%, transparent 60%);
  animation: heroShift 12s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0%   { background-position: 40% 60%, 70% 20%; }
  100% { background-position: 55% 45%, 60% 30%; }
}

.lux-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.55);
  z-index: 2;
}

.lux-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.lux-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.1em;
  color: #f0ece4;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.lux-hero-content h1 em {
  font-style: italic;
  color: #C9A84C;
}

.lux-hero-content p {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.lux-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

.lux-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #999, transparent);
  margin-top: 0.5rem;
}

/* ─── Services ─── */
.lux-services {
  background: #111111;
  text-align: center;
}

.lux-services h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.lux-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.lux-service-step {
  padding: 2.5rem 2rem;
  border: 1px solid #1e1e1e;
  position: relative;
  transition: border-color 0.3s;
}

.lux-service-step:hover {
  border-color: rgba(201,168,76,0.3);
}

.lux-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.lux-service-step h3 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #f0ece4;
  margin-bottom: 1rem;
}

.lux-service-step p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.8;
}

/* ─── About ─── */
.lux-about {
  background: #0D0D0D;
}

.lux-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.lux-about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.lux-about-text p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.lux-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.lux-stat {
  border-left: 1px solid rgba(201,168,76,0.3);
  padding-left: 1.5rem;
}

.lux-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #C9A84C;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.lux-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.lux-about-image {
  position: relative;
}

.lux-about-image img {
  width: 100%;
  filter: brightness(0.8);
}

.lux-about-image::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  z-index: -1;
}

/* ─── Inventory ─── */
.lux-inventory {
  background: #0D0D0D;
  text-align: center;
}

.lux-inventory h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.lux-inventory > .lux-container > p {
  color: #ccc;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-top: 3rem;
}

.watch-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  transition: border-color 0.3s;
}

.watch-card:hover {
  border-color: rgba(201,168,76,0.2);
}

.watch-slider {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0a0a0a;
}

.watch-slides {
  display: flex;
  height: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.watch-slides::-webkit-scrollbar { display: none; }

.watch-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
}

.watch-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.4);
  color: #C9A84C;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
  transition: all 0.3s;
}

.slider-btn:hover, .slider-fullscreen-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: #C9A84C;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #C9A84C;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  z-index: 2;
  pointer-events: none;
}

.slider-fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.4);
  color: #C9A84C;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  z-index: 2;
  transition: all 0.3s;
}

.watch-info { padding: 1.5rem; }

.watch-brand {
  color: #C9A84C;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.watch-model {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.watch-ref {
  color: #ccc;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.watch-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
  margin-bottom: 1.2rem;
}

.watch-detail-item { text-align: center; }

.detail-label {
  color: #999;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.detail-value {
  color: #ccc;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.watch-price {
  color: #C9A84C;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.watch-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  padding: 0.75rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  width: 100%;
}

.watch-btn:hover { background: #C9A84C; color: #000; }

.inv-loading {
  color: #999;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 4rem;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

/* ─── Lightbox ─── */
.lux-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lux-lightbox.open { display: flex; }

.lux-lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
}

.lux-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #C9A84C;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  z-index: 10000;
}

.lux-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.4);
  color: #C9A84C;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.lux-lightbox-nav:hover { background: rgba(201,168,76,0.2); }
.lux-lightbox-nav.prev { left: 20px; }
.lux-lightbox-nav.next { right: 20px; }

.lux-lightbox-counter {
  position: absolute;
  bottom: 24px;
  color: #C9A84C;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

/* ─── FAQ ─── */
.lux-faq {
  background: #111111;
  text-align: center;
}

.lux-faq h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #1e1e1e;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #f0ece4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover { color: #C9A84C; }

.faq-icon {
  color: #C9A84C;
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  color: #777;
  font-size: 0.9rem;
  line-height: 1.9;
  padding-bottom: 1.5rem;
}

.faq-item.open .faq-answer { display: block; }

/* ─── Contact ─── */
.lux-contact {
  background: #0D0D0D;
  text-align: center;
}

.lux-contact h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.lux-contact > .lux-container > p {
  color: #ccc;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.lux-contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.lux-contact-form input,
.lux-contact-form select,
.lux-contact-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #2a2a2a;
  color: #ccc;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.lux-contact-form input::placeholder,
.lux-contact-form textarea::placeholder { color: #444; }

.lux-contact-form input:focus,
.lux-contact-form select:focus,
.lux-contact-form textarea:focus { border-color: rgba(201,168,76,0.5); }

.lux-contact-form select option { background: #111; }

.lux-contact-form textarea { min-height: 140px; resize: vertical; }

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

.lux-form-submit {
  width: 100%;
  background: transparent;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.lux-form-submit:hover { background: #C9A84C; color: #000; }

.lux-form-notice {
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.lux-form-success {
  color: #C9A84C;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: none;
}

/* ─── Footer ─── */
.lux-footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 3rem 0;
  text-align: center;
}

.lux-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: #f0ece4;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lux-footer-logo span { color: #C9A84C; }

.lux-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.lux-footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.3s;
}

.lux-footer-links a:hover { color: #C9A84C; }

.lux-footer-copy {
  font-size: 0.65rem;
  color: #333;
  letter-spacing: 0.1em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .lux-nav-links { display: none; }
  .lux-nav-links.open {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    background: rgba(13,13,13,0.98);
    z-index: 998;
    border-top: 1px solid #1a1a1a;
  }
  .lux-nav-links.open li { flex: 0 0 auto; }
  .lux-nav-links.open a { font-size: 1rem; }
  .lux-nav-toggle { display: flex; }
  .lux-about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lux-about-image { display: none; }
  .lux-contact-form-row { grid-template-columns: 1fr; }
  .lux-footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ─── Inner Page Hero ─── */
.lux-page-main { padding-top: 0; }

.lux-page-hero {
  background: #111;
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}

.lux-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.lux-page-hero p {
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Filters ─── */
.lux-filters-bar {
  background: #0D0D0D;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.5rem 0;
  position: sticky;
  top: 60px;
  z-index: 100;
}

.lux-filters-inner {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.lux-filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lux-filter-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.lux-filter-select {
  background: #111;
  border: 1px solid #2a2a2a;
  color: #ccc;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  outline: none;
  cursor: pointer;
  min-width: 160px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  transition: border-color 0.3s;
}

.lux-filter-select:focus { border-color: rgba(201,168,76,0.4); }
.lux-filter-select option { background: #111; }

.lux-filter-reset {
  background: none;
  border: 1px solid #2a2a2a;
  color: #999;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-end;
}

.lux-filter-reset:hover { border-color: #C9A84C; color: #C9A84C; }

.lux-filter-count {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 0.1em;
}

.lux-inventory-page { background: #0D0D0D; }

/* ─── Blog Grid ─── */
.lux-blog-preview { background: #111; }
.lux-blog-page { background: #0D0D0D; }

/* Ensure blog preview section heading matches other sections */
.lux-blog-preview > .lux-container > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #f0ece4;
}

.lux-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lux-blog-card {
  background: #111;
  border: 1px solid #1e1e1e;
  overflow: hidden;
  transition: border-color 0.3s;
}

.lux-blog-preview .lux-blog-card { background: #0D0D0D; }

.lux-blog-card:hover { border-color: rgba(201,168,76,0.2); }

.lux-blog-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0a0a0a;
}

.lux-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lux-blog-card:hover .lux-blog-thumb img { transform: scale(1.03); }

.lux-blog-body { padding: 1.5rem; }

.lux-blog-date {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.6rem;
}

.lux-blog-title {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.lux-blog-title a { color: #f0ece4; transition: color 0.3s; }
.lux-blog-title a:hover { color: #C9A84C; }

.lux-blog-excerpt {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.lux-blog-read-more {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.lux-blog-read-more:hover { border-color: #C9A84C; }

/* ─── Single Post ─── */
.lux-post-hero { padding-bottom: 3rem; }

.lux-post-featured-img {
  background: #0D0D0D;
  padding: 0 2rem 3rem;
}

.lux-post-featured-img img { width: 100%; max-height: 500px; object-fit: cover; }

.lux-post-content { background: #0D0D0D; }

.lux-post-body {
  color: #888;
  font-size: 1rem;
  line-height: 1.95;
}

.lux-post-body h2, .lux-post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #f0ece4;
  margin: 2.5rem 0 1rem;
}

.lux-post-body h2 { font-size: 1.8rem; }
.lux-post-body h3 { font-size: 1.4rem; }
.lux-post-body p { margin-bottom: 1.4rem; }
.lux-post-body a { color: #C9A84C; }
.lux-post-body strong { color: #ccc; font-weight: 500; }

.lux-post-body blockquote {
  border-left: 2px solid #C9A84C;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  color: #999;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.lux-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1e1e1e;
}

.lux-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
  color: #999;
  padding: 0.3rem 0.8rem;
  transition: all 0.3s;
}

.lux-tag:hover { border-color: #C9A84C; color: #C9A84C; }

.lux-post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1e1e1e;
  gap: 1rem;
}

.lux-post-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #C9A84C;
}

/* ─── Pagination ─── */
.lux-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.lux-pagination .page-numbers {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border: 1px solid #2a2a2a;
  color: #ccc;
  padding: 0.5rem 0.9rem;
  transition: all 0.3s;
}

.lux-pagination .page-numbers:hover,
.lux-pagination .page-numbers.current {
  border-color: #C9A84C;
  color: #C9A84C;
}

/* ─── Hero Video ─── */
.lux-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ─── Hero Buttons ─── */
.lux-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lux-hero-btns .lux-btn {
  min-width: 160px;
  text-align: center;
}

/* ─── About — centered single column ─── */
.lux-about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.lux-about-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.lux-about-inner p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  text-align: left;
}

.lux-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

/* ─── Step numbers — gold ─── */
.lux-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.5);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ─── Custom Logo in nav ─── */
.lux-nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* ─── About responsive ─── */
@media (max-width: 768px) {
  .lux-about-stats { grid-template-columns: 1fr 1fr; }
  .lux-hero-btns { flex-direction: column; align-items: center; }
  .lux-hero-btns .lux-btn { width: 100%; max-width: 280px; }
}

/* ─── Mobile nav toggle — hamburger → X ─── */
.lux-nav-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

@media (max-width: 768px) {
  /* X state — toggle stays in nav bar which is always visible above overlay */
  .lux-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background: #C9A84C;
  }
  .lux-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .lux-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background: #C9A84C;
  }
}

/* ─── Mobile nav close button ─── */
.lux-nav-close {
  display: none;
}
@media (max-width: 768px) {
  .lux-nav-close {
    position: fixed;
    top: 1.2rem;
    right: 1rem;
    background: none;
    border: 1px solid rgba(201,168,76,0.5);
    color: #C9A84C;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1002;
  }
  .lux-nav-close:hover {
    background: rgba(201,168,76,0.15);
  }
  .lux-nav-close.visible {
    display: flex;
  }
}

/* ─── Service Steps with Images ─── */
.lux-service-step {
  padding: 0;
  border: 1px solid #1e1e1e;
  position: relative;
  transition: border-color 0.3s;
  overflow: hidden;
}
.lux-service-step:hover { border-color: rgba(201,168,76,0.3); }

.lux-step-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.lux-service-step:hover .lux-step-img {
  filter: brightness(0.5);
  transform: scale(1.03);
}
.lux-step-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #111 0%, #1a1508 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lux-step-img-placeholder span {
  color: rgba(201,168,76,0.15);
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
}
.lux-step-body {
  padding: 2rem;
}

/* ─── Contact Section Video Background ─── */
.lux-contact {
  position: relative;
  overflow: hidden;
}
.lux-contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.lux-contact-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.75);
  z-index: 2;
}
.lux-contact .lux-container {
  position: relative;
  z-index: 3;
}
/* Remove solid bg when video is present */
.lux-contact.has-video {
  background: #000;
}
