:root {
  --bg-primary: #0a0b0d;
  --bg-secondary: #121418;
  --bg-surface: #1a1d24;

  --accent-brass: #c5a059;
  --accent-brass-hover: #e0b86c;
  --accent-bronze: #8c6d46;

  --text-primary: #f4f4f5;
  --text-secondary: #8e9196;
  --text-muted: #525660;

  --border-subtle: #1f2229;
  --border-gold: #c5a059;

  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 90px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  overflow: visible;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  color: var(--text-primary);
}

.brand-logo img,
.brand-logo .brand-logo-mark {
  height: 52px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
}

.brand-logo:hover img {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition-smooth);
}

.nav-toggle span {
  top: 50%;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  height: 100%;
  overflow: visible;
}

.nav-link {
  color: rgba(244, 244, 245, 0.85);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item-row {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item.has-dropdown > .nav-item-row > .nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding-top: 4px;
}

.nav-dropdown-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-dropdown-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-item.has-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  margin: 0;
  padding: 14px 0 10px;
  list-style: none;
  background: rgba(10, 11, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1200;
}

/* Keep hover bridge between trigger and panel */
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 22px;
  color: rgba(244, 244, 245, 0.8);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.nav-dropdown-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + 20px) 20px 40px;
  background-color: var(--bg-primary);
  background-image:
    linear-gradient(180deg, rgba(10, 11, 13, 0.35) 0%, rgba(10, 11, 13, 0.15) 35%, rgba(10, 11, 13, 0.45) 100%),
    url("/img/home/hero-background.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  max-width: 650px;
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--accent-brass);
  color: #ffffff;
  background: transparent;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--accent-brass);
  color: var(--bg-primary);
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.3);
}

/* ==========================================================================
   FEATURED COLLECTIONS
   ========================================================================== */
.section-collections {
  padding: 120px 60px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-category-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.category-tag {
  padding: 8px 20px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-tag:hover,
.category-tag.active {
  border-color: var(--accent-brass);
  color: var(--accent-brass);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-brass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-image-box {
  width: 100%;
  height: 400px;
  background-color: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-box img {
  transform: scale(1.04);
}

.product-info {
  padding: 30px;
}

.product-subtitle {
  color: var(--accent-brass);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.card-link {
  color: var(--text-primary);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.card-link:hover {
  color: var(--accent-brass);
}

.tech-spec-badge {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 1px;
}

/* ==========================================================================
   ARCHITECTS / BESPOKE
   ========================================================================== */
.section-architects {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.architects-inner {
  max-width: 800px;
  margin: 0 auto;
}

.architects-title {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.architects-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 28px 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #5a5a5a;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  line-height: 0;
}

.footer-logo img {
  height: 28px;
  width: auto;
  filter: invert(1);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
}

.footer-social-link:hover {
  color: #ffffff;
  background: var(--accent-brass);
  border-color: var(--accent-brass);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: #8a8a8a;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #5a5a5a;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-brass);
}

.page-home .site-footer {
  background: var(--bg-primary);
  border-top-color: var(--border-subtle);
  color: var(--text-muted);
}

.page-home .footer-logo img {
  filter: none;
}

.page-home .footer-social-link {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.page-home .footer-social-link:hover {
  color: var(--bg-primary);
  background: var(--accent-brass);
  border-color: var(--accent-brass);
}

.page-home .footer-copy {
  color: var(--text-muted);
}

.page-home .footer-links a {
  color: var(--text-muted);
}

.page-home .footer-links a:hover {
  color: var(--accent-brass);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  .brand-logo img,
  .brand-logo .brand-logo-mark {
    height: 40px;
    max-width: 55vw;
  }

  .page-light .brand-logo img,
  .page-light .brand-logo .brand-logo-mark {
    height: 40px;
    max-width: 55vw;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    max-height: calc(100vh - var(--header-height));
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(10, 11, 13, 0.96);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
  }

  .nav-item.has-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .nav-item-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
  }

  .nav-item.has-dropdown > .nav-item-row > .nav-link {
    flex: 1;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-dropdown-toggle {
    display: inline-flex;
    flex-shrink: 0;
    color: rgba(244, 244, 245, 0.85);
    margin-right: 12px;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    padding: 0 0 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    display: none;
  }

  .nav-item.has-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown-link {
    padding: 10px 24px 10px 40px;
    white-space: normal;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .section-collections,
  .section-architects {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-collections {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }

  .product-image-box {
    height: 320px;
  }

  .site-footer {
    padding: 24px 20px;
  }

  .site-footer-inner {
    gap: 12px;
  }

  .footer-logo img {
    height: 24px;
  }

  .footer-links {
    gap: 8px 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 8px;
  }
}

/* ==========================================================================
   LIGHT PAGES (all except home)
   ========================================================================== */
.page-light {
  background-color: #ffffff;
  color: #1a1a1a;
}

.page-light .header-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-light .brand-logo img,
.page-light .brand-logo .brand-logo-mark {
  filter: none;
  height: 56px;
  max-width: min(260px, 48vw);
}

.page-light .nav-link {
  color: #5a5a5a;
}

.page-light .nav-link:hover,
.page-light .nav-link.active {
  color: #1a1a1a;
}

.page-light .nav-link.active {
  border-bottom-color: #1a1a1a;
}

.page-light .nav-dropdown {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.page-light .nav-dropdown-link {
  color: #5a5a5a;
}

.page-light .nav-dropdown-link:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.04);
}

.page-light .nav-dropdown-toggle {
  color: #5a5a5a;
}

.page-light .nav-toggle {
  border-color: rgba(0, 0, 0, 0.15);
}

.page-light .nav-toggle span,
.page-light .nav-toggle span::before,
.page-light .nav-toggle span::after {
  background: #1a1a1a;
}

/* ==========================================================================
   HEADER (INNER PAGES)
   ========================================================================== */
.header-solid {
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-page {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 60px) 60px 100px;
  background: #ffffff;
}

.contact-side-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #a0a0a0;
  white-space: nowrap;
  pointer-events: none;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.contact-details {
  color: #5a5a5a;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.contact-details a {
  color: #5a5a5a;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--accent-brass);
}

.contact-meta {
  margin-top: 4px;
}

.contact-hint {
  color: #8a8a8a;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a8a8a;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  color: #1a1a1a;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.5px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-brass);
  background: #ffffff;
}

.form-input::placeholder {
  color: #b0b0b0;
}

.form-textarea {
  resize: vertical;
  min-height: 180px;
}

.form-actions {
  padding-top: 8px;
}

.btn-submit {
  border: none;
  background: #1a1a1a;
  color: #ffffff;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--accent-brass);
  color: #ffffff;
  box-shadow: none;
}

.field-error {
  color: #b05050;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.contact-alert {
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.contact-alert-success {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--accent-brass);
  color: #1a1a1a;
  background: rgba(197, 160, 89, 0.1);
  text-align: center;
}

.contact-alert-success strong {
  color: var(--accent-brass);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-alert-error:not(:empty) {
  border: 1px solid #c97b7b;
  color: #b05050;
  background: rgba(185, 80, 80, 0.08);
  margin-bottom: 24px;
}

.contact-alert-error:empty {
  display: none;
}

.validation-summary-errors ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .page-light .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .page-light .nav-dropdown {
    border-top-color: rgba(0, 0, 0, 0.06);
    box-shadow: none;
    background: transparent;
  }

  .page-light .nav-dropdown-link {
    color: #5a5a5a;
  }

  .page-light .nav-dropdown-toggle {
    color: #5a5a5a;
  }

  .contact-page {
    padding: calc(var(--header-height) + 40px) 20px 80px;
  }

  .contact-side-label {
    display: none;
  }

  .contact-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COLLECTIONS PAGE
   ========================================================================== */
.collections-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 60px 100px;
  background: #ffffff;
  color: #1a1a1a;
}

.collections-hero {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.collections-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.25;
}

.collections-intro {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.6px;
  margin-bottom: 36px;
}

.btn-catalog {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background: transparent;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-catalog:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.collection-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  max-width: 720px;
  margin: 0 auto;
}

.collection-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.collection-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0eeea;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.collection-item:hover .collection-image img {
  transform: scale(1.03);
}

.collection-content {
  padding-top: 24px;
  text-align: center;
}

.collection-item-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.collection-item-desc {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.4px;
  max-width: 420px;
  margin: 0 auto 22px;
}

.btn-explore {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--accent-brass);
  color: #1a1a1a;
  background: transparent;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-explore:hover {
  background: var(--accent-brass);
  color: #ffffff;
  border-color: var(--accent-brass);
}

@media (max-width: 768px) {
  .collections-page {
    padding: calc(var(--header-height) + 40px) 20px 80px;
  }

  .collections-title {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .collections-intro {
    font-size: 14px;
    letter-spacing: 0.3px;
  }

  .collections-hero {
    margin-bottom: 48px;
  }

  .collection-grid {
    gap: 48px;
  }

  .collection-item-title {
    font-size: 22px;
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 40px) 60px 100px;
  background: #ffffff;
  color: #1a1a1a;
}

.product-back {
  max-width: 1100px;
  margin: 0 auto 28px;
}

.product-back a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #5a5a5a;
  transition: var(--transition-smooth);
}

.product-back a:hover {
  color: #1a1a1a;
}

.product-hero {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.product-collection {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 18px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 22px;
}

.product-lead {
  color: #5a5a5a;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

.product-slider {
  position: relative;
  max-width: 680px;
  margin: 0 auto 64px;
}

.product-slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
}

.product-slider-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #ffffff;
}

.product-slider.is-single .product-slider-viewport {
  background: #ffffff;
}

.product-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(26, 26, 26, 0.25);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.product-slider-nav:hover {
  border-color: #1a1a1a;
  background: #ffffff;
}

.product-slider-prev {
  left: 16px;
}

.product-slider-next {
  right: 16px;
}

.product-slider-nav span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
}

.product-slider-prev span {
  transform: rotate(-135deg);
  margin-left: 20px;
}

.product-slider-next span {
  transform: rotate(45deg);
  margin-left: 16px;
}

.product-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.product-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-slider-dot.is-active,
.product-slider-dot:hover {
  background: #1a1a1a;
}

.product-sections {
  max-width: 900px;
  margin: 0 auto;
}

.product-block {
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-block-center {
  text-align: center;
}

.product-formats {
  text-align: center;
}

.product-formats > .product-block-title {
  margin-bottom: 40px;
}

.product-format-group {
  max-width: 420px;
  margin: 0 auto 40px;
  text-align: left;
}

.product-format-group:last-of-type {
  margin-bottom: 48px;
}

.product-format-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: left;
}

.product-block-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.product-block-text {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.4px;
  max-width: 620px;
  margin: 0 auto;
}

.product-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-list-center {
  justify-items: center;
}

.product-list-formats {
  max-width: 100%;
  margin: 0 0 8px;
  justify-items: start;
}

.product-list li {
  position: relative;
  padding-left: 18px;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.product-list-center li {
  padding-left: 0;
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-brass);
}

.product-list-center li::before {
  display: none;
}

.product-toggle-block {
  margin-top: 16px;
  text-align: center;
}

.product-toggle-block .product-block-title {
  margin-bottom: 28px;
}

.product-toggle-block .product-inline-image {
  margin-top: 0;
}

.product-page .product-slider,
.product-page .product-inline-image,
.product-page .product-section-image {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.product-inline-image,
.product-section-image {
  margin-top: 36px;
}

.product-inline-image img,
.product-section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-closing {
  padding: 64px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.product-closing-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.product-closing-text {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.product-closing .product-section-image {
  margin-bottom: 28px;
}

.product-closing .btn-explore {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .product-page {
    padding: calc(var(--header-height) + 28px) 16px 80px;
    overflow-x: hidden;
  }

  .product-collection {
    letter-spacing: 2px;
    font-size: 11px;
  }

  .product-title {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .product-lead {
    font-size: 14px;
    letter-spacing: 0.2px;
  }

  .product-format-group {
    max-width: 100%;
  }

  .product-format-title {
    letter-spacing: 2px;
  }

  .product-page .product-slider,
  .product-page .product-inline-image,
  .product-page .product-section-image {
    max-width: 100%;
  }

  .product-slider {
    margin-bottom: 40px;
  }

  .product-slider-viewport {
    aspect-ratio: 1 / 1;
  }

  .product-slider-nav {
    width: 36px;
    height: 36px;
  }

  .product-slider-prev {
    left: 4px;
  }

  .product-slider-next {
    right: 4px;
  }

  .product-block {
    padding: 32px 0;
  }

  .product-block-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .product-closing-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
}

/* ==========================================================================
   OUR STORY PAGE
   ========================================================================== */
.our-story-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 60px) 40px 100px;
  background: #ffffff;
  color: #1a1a1a;
}

.our-story-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.our-story-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.our-story-body p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .our-story-page {
    padding: calc(var(--header-height) + 40px) 24px 80px;
    align-items: flex-start;
  }

  .our-story-title {
    font-size: 26px;
    letter-spacing: 6px;
    margin-bottom: 40px;
  }

  .our-story-body p {
    font-size: 15px;
  }
}

/* ==========================================================================
   SUPPORT PAGE
   ========================================================================== */
.support-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 60px 100px;
  background: #ffffff;
  color: #1a1a1a;
}

.support-hero {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.support-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.support-intro {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.5px;
}

.support-intro-link {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.support-intro-link:hover {
  color: var(--accent-brass);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.35fr) minmax(260px, 0.75fr);
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.support-datasheets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 14px;
}

.support-datasheet-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.support-datasheet-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f0eeea;
  border: 1px solid #e8e8e8;
  transition: var(--transition-smooth);
}

.support-datasheet-card:hover img {
  border-color: var(--accent-brass);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.support-datasheet-label {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: #5a5a5a;
  line-height: 1.4;
}

.support-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #e2e2e2;
}

.accordion-item {
  border-bottom: 1px solid #e2e2e2;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: var(--transition-smooth);
}

.accordion-trigger:hover {
  color: var(--accent-brass);
}

.accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: var(--transition-smooth);
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.accordion-panel {
  padding: 0 0 22px;
}

.accordion-panel p {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.4px;
}

.support-accordion-nested {
  border-top: none;
  margin-top: 4px;
}

.support-accordion-nested .accordion-item {
  border-bottom-color: #ececec;
}

.support-accordion-nested .accordion-trigger {
  padding: 16px 0 16px 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #3a3a3a;
}

.support-accordion-nested .accordion-panel {
  padding: 0 0 16px 8px;
}

.accordion-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-links a {
  color: #5a5a5a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.5;
  transition: var(--transition-smooth);
}

.accordion-links a:hover {
  color: var(--accent-brass);
}

.accordion-link-pending {
  color: #9a9a9a;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .support-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support-datasheets {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .support-page {
    padding: calc(var(--header-height) + 40px) 20px 80px;
  }

  .support-title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .support-hero {
    margin-bottom: 48px;
  }

  .support-datasheets {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
}
