:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #0D0D0D;
  --dark2: #151515;
  --dark3: #1E1E1E;
  --card: #1A1A1A;
  --text: #E8E4DC;
  --muted: #888;
  --border: rgba(201, 168, 76, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}



/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.nav-active {
  color: var(--gold);
}

.nav-links a.nav-cta {
  color: var(--dark);
  background: var(--gold);
  padding: 0.55rem 1.35rem;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--gold);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.nav-links a.nav-cta:hover {
  color: var(--dark);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.nav-links a.nav-cta.nav-active {
  color: var(--dark);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Inner pages: banner strip (same asset as home hero) */
.page-banner {
  position: relative;
  z-index: 1;
  min-height: clamp(300px, 48vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.62) contrast(1.05) saturate(1.05);
  transform: scale(1.03);
}

.page-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.35) 0%,
    rgba(13, 13, 13, 0.55) 45%,
    rgba(13, 13, 13, 0.72) 100%
  );
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 0, 0, 0.35);
}

.page-banner-title span {
  color: var(--gold);
}

@media (max-width: 600px) {
  .page-banner {
    min-height: clamp(260px, 52vh, 420px);
    padding: 5.25rem 5% 2.75rem;
  }

  .page-banner-bg img {
    object-position: center 35%;
  }
}

/* Embedded map (contact page) */
.map-section {
  background: var(--dark2);
}

.map-embed {
  margin-top: 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vw);
  min-height: 280px;
  border: 0;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  margin-top: 1.8rem;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  margin-top: 4rem;
  display: flex;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
}

/* SECTION BASE */
section {
  padding: 6rem 5%;
  position: relative;
  z-index: 1;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  max-width: 560px;
}

.section-title span {
  color: var(--gold);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ABOUT */
#about {
  background: var(--dark2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.about-text p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-text strong {
  color: var(--text);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: border-color 0.25s;
}

.about-card:hover {
  border-color: var(--gold);
}

.about-card h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* PRODUCTS */
#products {
  background: var(--dark);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.08);
}

.product-card:hover .product-img {
  filter: brightness(1);
}

.product-info {
  padding: 1.4rem;
}

.product-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.product-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.product-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* GALLERY */
#gallery {
  background: var(--dark2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.75) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--text);
  font-size: 0.85rem;
  font-family: 'Playfair Display', serif;
}

.g1 {
  grid-column: span 5;
  grid-row: span 2;
  height: 380px;
}

.g2 {
  grid-column: span 4;
  height: 180px;
}

.g3 {
  grid-column: span 3;
  height: 180px;
}

.g4 {
  grid-column: span 4;
  height: 180px;
}

.g5 {
  grid-column: span 3;
  height: 180px;
}

.g6 {
  grid-column: span 4;
  height: 180px;
}

.g7 {
  grid-column: span 3;
  height: 180px;
}

.g8 {
  grid-column: span 5;
  height: 180px;
}

/* CONTACT */
#contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item h5 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* GOLD LINE DECORATIONS */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .g1,
  .g2,
  .g3,
  .g4,
  .g5,
  .g6,
  .g7 {
    grid-column: span 1;
    height: 200px;
  }

  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  nav .nav-links {
    display: none;
  }
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--card);
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  text-align: left;
  gap: 1rem;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.3rem;
}

.faq-a p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-a strong {
  color: var(--text);
}

/* ——— Extended: products, quote, blog, breadcrumbs, lightbox ——— */

.page-content-wrap {
  padding: 0 5% 2rem;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs-sep {
  margin: 0 0.45rem;
  opacity: 0.45;
}

.breadcrumbs-current {
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

.product-card-image-link {
  display: block;
  text-decoration: none;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.product-card-actions .btn-outline,
.product-card-actions .btn-primary {
  flex: 1;
  min-width: 7.5rem;
  text-align: center;
}

.nav-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted) !important;
  text-decoration: none;
}

.nav-quote:hover {
  color: var(--gold) !important;
}

.nav-quote-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-quote-count.has-items {
  background: var(--gold);
  color: var(--dark);
}

/* Product detail */
.product-detail {
  background: var(--dark);
  padding: 2rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery-main {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

.product-detail-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  transition: border-color 0.2s;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--gold);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.product-detail-lead {
  color: var(--text);
  line-height: 1.8;
  margin-top: 1rem;
  font-size: 0.98rem;
}

.product-detail-body {
  color: var(--muted);
  line-height: 1.85;
  margin-top: 0.85rem;
  font-size: 0.94rem;
}

.product-detail-subheading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.product-specs {
  display: grid;
  gap: 0.55rem;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.product-spec-row dt {
  color: var(--gold);
  font-weight: 500;
}

.product-spec-row dd {
  color: var(--muted);
  margin: 0;
}

.product-detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-detail-features li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}

.product-detail-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.product-detail-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-inquiry-cta {
  background: var(--dark2);
  padding: 3.5rem 5%;
}

.product-inquiry-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.product-inquiry-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.product-inquiry-inner p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.related-products {
  background: var(--dark2);
  padding: 4rem 5%;
}

.products-grid--related {
  margin-top: 2rem;
}

/* Quote page */
.quote-page {
  padding: 3rem 5% 5rem;
  background: var(--dark);
  position: relative;
  z-index: 1;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.quote-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.quote-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.quote-item-info strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.quote-qty-label {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.quote-qty-input {
  width: 4.5rem;
  padding: 0.35rem 0.5rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: inherit;
}

.quote-remove {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}

.quote-remove:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.quote-empty {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.quote-empty a {
  color: var(--gold);
}

.quote-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--card);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  max-width: min(320px, 90vw);
}

.quote-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Forms */
.form-alert {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.form-alert--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.form-alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.contact-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--gold);
}

/* Blog */
.blog-section {
  padding: 4rem 5%;
  background: var(--dark2);
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.blog-card-image-link {
  display: block;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.3s;
}

.blog-card:hover .blog-card-img {
  filter: brightness(1);
}

.blog-card-body {
  padding: 1.35rem;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.blog-card-category {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.blog-read-more {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-read-more:hover {
  color: var(--gold-light);
}

.blog-section-cta {
  margin-top: 2rem;
  text-align: center;
}

.blog-listing {
  background: var(--dark);
  padding: 3rem 5% 5rem;
}

.blog-detail {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.blog-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  line-height: 1.2;
  margin: 0.65rem 0;
}

.blog-detail-meta {
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-detail-featured {
  margin: 1.75rem 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-detail-featured img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.blog-detail-content {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.97rem;
}

.blog-detail-content p {
  margin-bottom: 1rem;
}

.blog-share {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.blog-share-label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-share-btn {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  transition: border-color 0.2s, color 0.2s;
}

.blog-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.related-blog {
  padding: 3rem 5% 5rem;
  background: var(--dark2);
}

.blog-grid--related {
  grid-template-columns: repeat(2, 1fr);
}

/* About extended */
.about-history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-history-image {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-history-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.highlight-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 700;
}

.highlight-lbl {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Gallery lightbox */
.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
  width: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-inner {
  max-width: min(960px, 100%);
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  color: var(--text);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(13, 13, 13, 0.7);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 900px) {
  .product-detail-grid,
  .quote-layout,
  .about-history-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .values-grid,
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 560px) {
  .blog-grid,
  .blog-grid--related,
  .values-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .quote-item {
    grid-template-columns: 64px 1fr;
  }

  .quote-remove {
    grid-column: 2;
    justify-self: end;
  }
}