
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: #141518; color: #fff; overflow-x: hidden; width: 100%; max-width: 100%; -webkit-font-smoothing: antialiased; transition: background-color 0.5s, color 0.5s; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: rgba(255,255,255,0.2); }

/* ===== CSS VARIABLES ===== */
:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --cream: #e5e6e8;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-400: #9a9ca1;
  --gray-500: #b4b6bb;
  --gold: #b9bcc0;
  --gold-light: #d3d5d8;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body.day-mode::-webkit-scrollbar-track { background: #f9f9f7; }
body.day-mode::-webkit-scrollbar-thumb { background: #c7c9cc; }
body.day-mode::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; background: #141518; z-index: 10000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--white);
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.loader-line {
  width: 120px; height: 1px; background: var(--gray-300); margin-top: 2rem;
  position: relative; overflow: hidden;
}
.loader-line::after {
  content: ''; position: absolute; left: -100%; width: 100%; height: 100%;
  background: var(--gold); animation: loadSlide 1.5s 0.5s forwards;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 3rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(20,21,24,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.nav.scrolled {
  padding: 1rem 3rem;
}
body.day-mode .nav {
  background: rgba(249,249,247,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
body.day-mode .nav .nav-logo {
  color: var(--black);
}
body.day-mode .nav .nav-links a {
  color: rgba(0,0,0,0.7);
}
body.day-mode .nav .nav-toggle-mode {
  color: var(--black);
}

body.day-mode .nav-toggle-mode:hover {
  color: var(--gold);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--white);
  line-height: 1.2; flex-shrink: 0; margin-right: 2.5rem; white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-logo-sub {
  display: block; font-family: var(--sans); font-size: 0.45rem;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-top: 2px;
}
.nav-links { display: flex; gap: 1.65rem; align-items: center; flex-wrap: nowrap; }
@media (max-width: 1180px) {
  .nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .nav-logo { margin-right: 1.25rem; }
  .nav-links { gap: 1.15rem; }
}
.nav-links a {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.7rem 1.8rem;
  background: var(--gold); color: var(--black);
  border-radius: 4px; transition: var(--transition);
}
.nav-cta:hover { background: #9da0a4; }
.nav-cta::after { display: none !important; }
.nav-toggle-mode {
  font-size: 1.2rem; cursor: pointer; color: var(--white);
  transition: var(--transition); margin-right: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 1px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 1rem; position: fixed; top: 80px;
  left: 0; right: 0; background: rgba(0,0,0,0.98); padding: 2rem 3rem;
  z-index: 999;
}
.mobile-menu.active { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; width: 100vw; max-width: 100vw;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #141518;
}
.hero-slider {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0;
  overflow: hidden; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  max-width: none; min-width: 100%; min-height: 100%;
  object-fit: cover; object-position: center;
  animation: heroZoom 12s ease forwards;
}
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(rgba(10,11,13,0.45), rgba(10,11,13,0.55));
}
.hero-content {
  position: relative; z-index: 10; text-align: center; max-width: 800px; padding: 2rem;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  line-height: 1.2; margin-bottom: 1.5rem; color: var(--white);
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary, .btn-outline {
  padding: 1rem 2.5rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; border-radius: 4px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold); color: var(--black);
}
.btn-primary:hover { background: #9da0a4; }
.btn-outline {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 10;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.5rem;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.3);
  margin: 0 auto; position: relative;
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===== PARTNERS MARQUEE ===== */
.partners {
  background: var(--black); border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300); padding: 1.5rem 0; overflow: hidden;
}
.partners-track {
  display: flex; align-items: center; gap: 1.5rem; animation: marquee 30s linear infinite;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-500); white-space: nowrap;
}
.partners-track span { color: var(--white); }
.dot {
  width: 3px; height: 3px; background: var(--gold); border-radius: 50%;
}

/* ===== SECTION STRUCTURE ===== */
.section {
  padding: 8rem 3rem; position: relative;
}
.section-dark { background: #141518; }
.section-gray { background: #1c1d21; }
.section-light { background: var(--off-white); color: var(--black); }
.section-light a { color: var(--gold); }
.spec-pill { font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.75); border:1px solid #3a3c42; border-radius:99px; padding:0.4rem 0.9rem; }
.cap-card { transition: transform 0.3s, border-color 0.3s; }
.cap-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.fld-lbl { display:block; font-size:0.6rem; letter-spacing:0.12em; text-transform:uppercase; color:#8a8a8a; margin-bottom:0.35rem; font-weight:600; }
.fld { width:100%; box-sizing:border-box; padding:0.7rem 0.85rem; border:1px solid #d3d4d6; border-radius:6px; font-family:inherit; font-size:0.9rem; background:#fafafa; color:#1a1a1a; }
.fld:focus { outline:none; border-color:var(--gold); background:#fff; }
.chk { display:flex; align-items:center; gap:0.4rem; font-size:0.82rem; color:#444; cursor:pointer; }
.section-light .filter-btn { border-color: #d3d4d6; color: #666; background: #fff; }
.section-light .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.section-light .filter-btn.active { border-color: var(--gold); background: var(--gold); color: var(--black); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-eyebrow {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  line-height: 1.3; margin-bottom: 1.5rem;
}
.product-count {
  font-size: 0.75rem; color: var(--gray-500); margin-top: 0.5rem;
  font-weight: 400;
}
.section-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: var(--gray-500); margin-bottom: 0;
}
.section-light .section-desc { color: var(--gray-400); }

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1400px; margin: 0 auto;
}
.category-card {
  position: relative; height: 70vh; min-height: 500px; max-height: 750px; border-radius: 6px;
  overflow: hidden; cursor: pointer;
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,13,15,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem; transition: background 0.4s ease;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(12,13,15,0.62) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
}
.category-card-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.category-card-title {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  margin-bottom: 0.5rem; color: var(--white); line-height: 1.2;
}
.category-card-count {
  font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; line-height: 1.5;
}
.category-card-arrow {
  font-size: 1.5rem; color: var(--gold);
  transition: transform 0.3s ease;
}
.category-card:hover .category-card-arrow {
  transform: translate(8px, -8px);
}

/* ===== PRODUCT CATALOG ===== */
.catalog-filters {
  display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.75rem 2rem; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--gray-300);
  color: var(--gray-500); border-radius: 4px;
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  border-color: var(--gold); background: var(--gold); color: var(--black);
}
.catalog-sub-filters {
  display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2rem;
  flex-wrap: wrap; align-items: flex-end;
  padding: 1.5rem 2rem; background: var(--gray-100); border-radius: 8px;
  border: 1px solid var(--gray-300); max-width: 1400px; margin-left: auto; margin-right: auto;
}
.sub-filter-group {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.sub-filter-group label {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}
.sub-filter-group select {
  padding: 0.6rem 0.9rem; background: var(--gray-200);
  border: 1px solid var(--gray-300); color: var(--white);
  font-size: 0.8rem; border-radius: 4px; cursor: pointer;
  font-family: var(--sans); transition: var(--transition);
  min-width: 150px;
}
.sub-filter-group select:hover {
  border-color: var(--gold);
}
.sub-filter-group select:focus {
  outline: none;
  border-color: var(--gold);
}
/* Color swatches row inside filter bar */
.color-filter-inline {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.color-filter-inline .color-swatch {
  width: 26px; height: 26px;
}
.color-filter-inline .color-label-inline {
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-500); white-space: nowrap;
}
/* Sort / results bar */
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto 1.5rem; padding: 0 0.5rem;
}
.catalog-toolbar .result-count {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray-500);
}
.catalog-toolbar select {
  padding: 0.5rem 0.8rem; background: var(--gray-100);
  border: 1px solid var(--gray-300); color: var(--white);
  font-size: 0.8rem; border-radius: 4px; cursor: pointer;
  font-family: var(--sans); transition: var(--transition);
}
.catalog-toolbar select:hover { border-color: var(--gold); }
.catalog-toolbar select:focus { outline: none; border-color: var(--gold); }

/* ===== LOOKBOOKS ===== */
.lb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 1.15rem;
  max-width: 1400px;
  margin: 0 auto;
}
.lb-card {
  display: flex; flex-direction: column; align-items: stretch;
  background: #1c1d21; border: 1px solid #2a2c32; border-radius: 8px;
  overflow: hidden; text-align: center;
  transition: var(--transition); position: relative; padding: 0;
}
.lb-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.lb-cover-wrap {
  position: relative; aspect-ratio: 8.5 / 11; background: #111214; overflow: hidden;
}
.lb-cover {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lb-meta { padding: 0.7rem 0.55rem 0.85rem; }
.lb-month {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: #fff; line-height: 1.15;
}
.lb-year {
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.22rem; font-weight: 600;
}
.lb-cta {
  font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-500); margin-top: 0.4rem;
}
.lb-card:hover .lb-cta { color: var(--gold); }
.lb-latest {
  position: absolute; top: 0.5rem; left: 0.5rem; z-index: 1;
  font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #141518; background: var(--gold); padding: 0.18rem 0.4rem; border-radius: 3px; font-weight: 700;
}
.lb-folder {
  text-align: center; margin-top: 2rem;
}
.lb-folder a { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.04em; }
body.day-mode .lb-card {
  background: #fff; border-color: #e2e3e5;
}
body.day-mode .lb-month { color: #1a1a1a; }
body.day-mode .lb-cta { color: #888; }
/* Active filter pills */
.active-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;
  min-height: 0;
}
.active-filter-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.8rem; background: rgba(185,188,192,0.15);
  border: 1px solid rgba(185,188,192,0.3); border-radius: 20px;
  font-size: 0.7rem; color: var(--gold); cursor: pointer;
  transition: var(--transition);
}
.active-filter-pill:hover {
  background: rgba(185,188,192,0.25); border-color: var(--gold);
}
.active-filter-pill .pill-x {
  font-size: 0.85rem; line-height: 1; opacity: 0.7;
}
.active-filter-pill .pill-x:hover { opacity: 1; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem; max-width: 1400px; margin: 0 auto;
}
.product-card {
  background: var(--gray-100); border: 1px solid var(--gray-300);
  border-radius: 6px; overflow: hidden; cursor: pointer;
  transition: all 0.4s ease; group;
  content-visibility: auto; contain-intrinsic-size: 0 380px;
  color: inherit; display: block;
}
.product-card:hover { border-color: var(--gold); }
.product-card-img {
  position: relative; height: 320px; overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge {
  position: absolute; top: 1rem; left: 1rem; background: var(--gold);
  color: var(--black); padding: 0.4rem 0.8rem; font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.1em; border-radius: 2px;
}
.product-card-quick {
  position: absolute; inset: 0; background: rgba(12,13,15,0.62); display: flex;
  flex-direction: column; gap: 0.8rem; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.product-card:hover .product-card-quick { opacity: 1; }
.product-card-quick button {
  padding: 0.7rem 1.5rem; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px; transition: var(--transition);
}
.product-card-quick .primary-btn {
  background: var(--gold); color: var(--black);
}
.product-card-quick .primary-btn:hover { background: var(--gold-light); }
.product-card-quick button:last-child {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.product-card-quick button:last-child:hover {
  background: var(--gold); color: var(--black);
}
.product-card-info { padding: 1.5rem; }
.product-card-supplier {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.product-card-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  margin-bottom: 0.5rem; line-height: 1.4;
}
.product-card-meta {
  font-size: 0.75rem; color: var(--gray-500); line-height: 1.5;
}

.product-img-count {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.img-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.img-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.img-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.img-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
  border: none;
}
.img-lightbox .lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
}
.img-lightbox .lightbox-prev { left: 2rem; }
.img-lightbox .lightbox-next { right: 2rem; }
.img-lightbox .lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.img-lightbox .lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.product-modal-img { cursor: zoom-in; }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1400px; margin: 0 auto;
}
.split-image { height: 500px; }
.split-image img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
}
.split-content p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  margin-bottom: 1.5rem; color: var(--gray-500);
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--gold); margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-500);
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
.portfolio-card {
  position: relative; height: auto; min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden; cursor: pointer;
  border-radius: 4px;
}
.portfolio-card.large {
  grid-column: span 2;
  height: auto;
  aspect-ratio: 21 / 9;
}
.portfolio-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-card-content {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,13,15,0.72) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.04) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 2.25rem; transition: background 0.4s ease;
}
.portfolio-card:hover .portfolio-card-content {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.portfolio-card-location {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.portfolio-card-name {
  font-family: var(--serif); font-size: 1.85rem; font-weight: 300;
  margin-bottom: 0.5rem; color: var(--white); line-height: 1.2;
}
.portfolio-card.large .portfolio-card-name { font-size: 2.4rem; }
.portfolio-card-scope {
  font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6;
  max-width: 500px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-container {
  text-align: center; max-width: 800px; margin: 0 auto;
}
.testimonial-quote {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  line-height: 1.6; margin-bottom: 1.5rem; color: var(--black);
  font-style: italic;
}
.testimonial-author {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  margin-bottom: 0.3rem; color: var(--black);
}
.testimonial-role {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1400px; margin: 0 auto;
}
.process-step {
  text-align: center;
}
.process-step-number {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--gold); margin-bottom: 1rem;
}
.process-step-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  margin-bottom: 0.8rem; color: var(--black);
}
.process-step-desc {
  font-size: 0.85rem; line-height: 1.7; color: var(--gray-400);
}

/* ===== ARTISTS ===== */
.artists-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1400px; margin: 0 auto;
}
.artist-card {
  position: relative; border-radius: 8px;
  overflow: hidden; cursor: pointer; background: var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artist-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.artist-card-img {
  height: 300px; overflow: hidden; background: #f1f1f2; display: flex; align-items: center; justify-content: center; position: relative;
}
.artist-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.artist-card:hover .artist-card-img img { transform: scale(1.06); }
.artist-card-body {
  padding: 1rem 1.2rem 1.2rem;
}
.artist-card-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  margin-bottom: 0.25rem; color: var(--white);
}
.artist-card-specialty {
  font-size: 0.75rem; color: var(--gold); line-height: 1.4; letter-spacing: 0.03em;
}

/* ===== ARTIST MODAL ===== */
.artist-modal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(20,21,24,0.92); overflow-y: auto; }
.artist-modal.active { display: flex; align-items: flex-start; justify-content: center; padding: 4rem 2rem; }
.artist-modal-content { max-width: 1000px; width: 100%; background: var(--gray-100); border-radius: 8px; overflow: hidden; position: relative; }
.artist-modal-close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.artist-modal-hero { width: 100%; max-height: 500px; object-fit: contain; background: #111; }
.artist-modal-body { padding: 3rem; }
.artist-modal-body h2 { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; margin-bottom: 0.5rem; }
.artist-modal-specialty { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.artist-modal-bio { font-size: 0.9rem; line-height: 1.8; color: var(--gray-500); margin-bottom: 2rem; }
.artist-modal-portfolio-title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.artist-modal-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.artist-modal-gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; cursor: pointer; transition: transform 0.3s; }
.artist-modal-gallery img:hover { transform: scale(1.03); }
.artist-modal-cta { display: flex; gap: 1rem; margin-top: 2rem; }
body.day-mode .artist-modal-content { background: #fff; }
body.day-mode .artist-modal-body h2 { color: #1a1a1a; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1400px; margin: 0 auto;
}
.blog-card {
  cursor: pointer;
}
.blog-card-img {
  height: 250px; margin-bottom: 1.5rem; border-radius: 4px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-date {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  line-height: 1.4; margin-bottom: 0.5rem;
}
.blog-card-excerpt {
  font-size: 0.85rem; font-weight: 300; line-height: 1.7;
  color: var(--gray-500);
}

/* ===== CONTACT / CTA SECTION ===== */
.cta-section {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.cta-section img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.cta-overlay {
  position: absolute; inset: 0; background: rgba(10,11,13,0.55);
}
.cta-content {
  position: relative; z-index: 10; text-align: center; max-width: 700px; padding: 2rem;
}
.cta-content .section-title { margin-bottom: 1rem; }
.cta-content p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.85); margin-bottom: 2.5rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CLIENT PORTAL ===== */
.portal-section {
  background: var(--gray-100);
  padding: 6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-container {
  max-width: 950px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
}
.portal-left {
  background: var(--black);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portal-left h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.portal-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}
.portal-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portal-benefits li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.portal-benefits li span {
  color: var(--gold);
  font-size: 1rem;
}
.portal-right {
  background: var(--gray-200);
  padding: 3rem;
}
.portal-tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-300);
}
.portal-tab-btn {
  flex: 1;
  padding: 0.8rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.portal-tab-btn.active {
  color: var(--gold);
}
.portal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.portal-tab-content {
  display: none;
}
.portal-tab-content.active {
  display: block;
}
.portal-right h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.portal-right .portal-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.portal-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.portal-checkbox input {
  accent-color: var(--gold);
}
.portal-checkbox label {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.portal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.portal-divider span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.portal-divider::before,
.portal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; background: var(--gray-100);
  border: 1px solid var(--gray-300); color: var(--white);
  font-family: var(--sans); font-size: 0.85rem; border-radius: 2px;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-submit {
  width: 100%; padding: 1rem; background: var(--gold); color: var(--black);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: var(--transition); border-radius: 2px; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-light); }
@media (max-width: 1200px) {
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .portal-container { grid-template-columns: 1fr; }
}

/* ===== INSTAGRAM GALLERY ===== */
.insta-section {
  padding: 5rem 0 0;
}
.insta-section .section-header {
  padding: 0 3rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 3rem;
}
.insta-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.insta-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.insta-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insta-card:hover .insta-card-overlay {
  opacity: 1;
}
.insta-card-overlay span {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.insta-follow {
  text-align: center;
  margin-top: 2.5rem;
  padding-bottom: 4rem;
}
.insta-follow a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.8rem 2.5rem;
  transition: all 0.3s;
  border-radius: 4px;
}
.insta-follow a:hover {
  background: var(--gold);
  color: var(--black);
}
@media (max-width: 768px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 3rem;
}
.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}
.contact-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.contact-left > p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3rem;
  max-width: 400px;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-detail-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail-item .label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-detail-item .value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.contact-detail-item a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.contact-detail-item a:hover {
  color: var(--gold);
}
.contact-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contact-social a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.contact-social a:hover {
  color: var(--gold);
}
.contact-right {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3rem;
}
.contact-right h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-right > p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-left h2 { font-size: 2.2rem; }
  .contact-section { padding: 4rem 1.5rem; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 5rem 3rem 2rem; border-top: 1px solid var(--gray-200);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1400px; margin: 0 auto 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-block; }
.footer-brand p {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: var(--gray-500); max-width: 300px;
}
.footer-col h4 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-size: 0.8rem; font-weight: 300;
  color: var(--gray-500); margin-bottom: 0.6rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  max-width: 1400px; margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.7rem; color: var(--gray-400); letter-spacing: 0.1em;
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(12,13,15,0.62);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--gray-100); border: 1px solid var(--gray-300);
  max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto;
  padding: 3rem; border-radius: 4px; position: relative;
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--gray-500); cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--white); }
.modal h3 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  margin-bottom: 0.5rem;
}
.modal p {
  font-size: 0.85rem; color: var(--gray-500); margin-bottom: 2rem;
}

/* ===== COLOR FILTER ===== */
.color-filter {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
}
.color-swatch:hover {
  transform: scale(1.15);
}
.color-swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185,188,192,0.3);
  transform: scale(1.15);
}
.color-swatch[data-swatch="all"] { background: conic-gradient(#e8d5b7, #1a1a1a, #b9bcc0, #4a7fb5, #6b8f71, #a94442, #8b6f47, #e8d5b7); }
.color-swatch[data-swatch="Neutral"] { background: #e8d5b7; }
.color-swatch[data-swatch="Black"] { background: #2a2a2a; }
.color-swatch[data-swatch="Gold"] { background: #b9bcc0; }
.color-swatch[data-swatch="Blue"] { background: #4a7fb5; }
.color-swatch[data-swatch="Green"] { background: #6b8f71; }
.color-swatch[data-swatch="Red"] { background: #a94442; }
.color-swatch[data-swatch="Warm"] { background: #8b6f47; }
.color-swatch[data-swatch="Pink"] { background: #d4889e; }
.color-swatch[data-swatch="Silver"] { background: linear-gradient(135deg, #a8a8a8, #d4d4d4, #a8a8a8); }
.color-swatch[data-swatch="White"] { background: #f1f1f2; border: 1px solid rgba(255,255,255,0.2); }
.color-swatch[data-swatch="Orange"] { background: #d4874d; }
.color-swatch[data-swatch="Purple"] { background: #7b5ea7; }
.color-swatch[data-swatch="Multi"] { background: linear-gradient(135deg, #e74c3c, #f39c12, #2ecc71, #3498db, #9b59b6); }
.color-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.3rem;
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal .modal { max-width: 1100px; padding: 0; overflow: hidden; border-radius: 8px; }
.product-modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.product-modal-img { position: relative; height: 100%; min-height: 600px; display: flex; align-items: center; justify-content: center; background: #111; }
.product-modal-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.product-thumbs {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  z-index: 5;
}
.product-thumb {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s;
}
.product-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.product-thumb:hover {
  opacity: 1;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal-info { padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-start; overflow-y: auto; max-height: 90vh; }
.product-modal-info .product-card-supplier { margin-bottom: 0.5rem; }
.product-modal-info h3 { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 0.75rem; }
.product-modal-info .product-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.product-specs { margin-bottom: 0.5rem; }
.product-spec { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--gray-300); }
.product-spec-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); font-weight: 500; }
.product-spec-value { font-size: 0.85rem; text-align: right; }

/* ===== PROJECT DETAIL MODAL ===== */
.project-modal .modal {
  max-width: 100%; width: 100%; padding: 0; overflow: hidden;
  background: var(--black); border: none; border-radius: 0;
  min-height: 100vh;
}
.project-modal-hero {
  position: relative; height: 85vh; max-height: 900px; overflow: hidden;
}
.project-modal-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.6s ease;
}
.project-modal-hero .modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
}
.project-modal-hero .modal-close:hover { background: rgba(0,0,0,0.9); }
.project-gallery-nav {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.project-gallery-nav button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.3s;
}
.project-gallery-nav button.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 5px; }
.project-gallery-arrows {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  display: flex; justify-content: space-between; padding: 0 1rem; z-index: 10;
  pointer-events: none;
}
.project-gallery-arrows button {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: all 0.3s;
}
.project-gallery-arrows button:hover { background: rgba(12,13,15,0.6); border-color: var(--gold); }
.project-modal-body { padding: 3rem 6rem; max-width: 1200px; }
.project-modal-eyebrow {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.project-modal-title {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  margin-bottom: 0.3rem; color: var(--white);
}
.project-modal-location {
  font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1.5rem;
}
.project-modal-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.75); margin-bottom: 2rem;
  max-width: 800px;
}
.project-modal-stats {
  display: flex; gap: 3rem; margin-bottom: 2rem;
  padding: 1.5rem 0; border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.project-modal-stat-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 0.3rem;
}
.project-modal-stat-value {
  font-family: var(--serif); font-size: 1.1rem; color: var(--white);
}
.project-modal-thumbs {
  display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.project-modal-thumb {
  width: 80px; height: 60px; overflow: hidden; border-radius: 3px;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.3s; opacity: 0.5;
}
.project-modal-thumb.active { border-color: var(--gold); opacity: 1; }
.project-modal-thumb:hover { opacity: 1; }
.project-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-modal-cta {
  display: flex; gap: 1rem; margin-top: 2rem;
}
/* Portfolio Category Tabs */
.portfolio-tabs {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem;
  flex-wrap: wrap;
}
.portfolio-tab {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.7rem 2rem;
  border: 1px solid var(--gray-300); color: var(--gray-500);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.portfolio-tab:hover { color: var(--white); border-color: var(--gray-400); }
.portfolio-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
/* ===== INSTALLATIONS GALLERY ===== */
.installations-tabs {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem;
  flex-wrap: wrap;
}
.installations-tab {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.7rem 2rem;
  border: 1px solid var(--gray-300); color: var(--gray-500);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.installations-tab:hover { color: var(--black); border-color: var(--gray-600); }
.installations-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.installations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
.installation-card {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: default; aspect-ratio: 4/3;
}
.installation-card.tall { grid-row: span 2; aspect-ratio: auto; }
.installation-card.wide { grid-column: span 2; }
.installation-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.installation-card:hover img { transform: scale(1.05); }
.installation-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(12,13,15,0.62) 0%, transparent 100%);
}
.installation-card-property {
  font-family: var(--serif); font-size: 1.1rem; color: var(--white);
  margin-bottom: 0.25rem;
}
.installation-card-space {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}
.installation-card-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-top: 0.4rem;
  line-height: 1.5; font-weight: 300;
}
@media (max-width: 768px) {
  .installations-grid { grid-template-columns: 1fr; }
  .installation-card.wide { grid-column: span 1; }
  .installation-card.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
/* Portfolio card click hint */
.portfolio-card { cursor: pointer; }
.portfolio-card-content { opacity: 1; }
.portfolio-card-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-top: 1rem;
  border: 1px solid rgba(185,188,192,0.4); padding: 0.6rem 1.5rem;
  border-radius: 2px; transition: all 0.3s ease;
}
.portfolio-card:hover .portfolio-card-cta { background: var(--gold); color: #000; border-color: var(--gold); }
.portfolio-card-cta span { transition: transform 0.3s; display: inline-block; }
.portfolio-card:hover .portfolio-card-cta span { transform: translateX(4px); }

@media (max-width: 768px) {
  .project-modal-hero { height: 50vh; max-height: 500px; }
  .project-modal-body { padding: 1.5rem 2rem; }
  .project-modal-title { font-size: 1.8rem; }
  .project-modal-stats { flex-wrap: wrap; gap: 1.5rem; }
  .project-modal-cta { flex-direction: column; }
  .project-modal-thumbs { gap: 0.5rem; }
  .project-modal-thumb { width: 60px; height: 45px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.05); }
}
@keyframes loadSlide {
  from { left: -100%; }
  to { left: 100%; }
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.fade-in {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card { height: 55vh; min-height: 400px; }
  .category-card-title { font-size: 1.8rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 50vh; }
  .portfolio-card { height: auto; }
  .portfolio-card.large { height: auto; }
  .portfolio-card-content { padding: 1.75rem 2rem; }
  .portfolio-card-name { font-size: 1.6rem; }
  .portfolio-card.large .portfolio-card-name { font-size: 2rem; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-img { min-height: 300px; }
  .stats { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle-mode { display: none; }
  .nav-cta { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 45vh; min-height: 300px; }
  .category-card-title { font-size: 1.6rem; }
  .section-title { font-size: 2rem; }
  .portfolio-grid { grid-template-columns: 1fr; padding: 0 1.5rem 2rem; }
  .portfolio-card { height: auto; min-height: 0; }
  .portfolio-card.large { grid-column: span 1; aspect-ratio: 16 / 10; height: auto; }
  .portfolio-card-content { padding: 1.5rem; }
  .portfolio-card-name { font-size: 1.45rem; }
  .portfolio-card.large .portfolio-card-name { font-size: 1.6rem; }
  .process-steps { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .catalog-filters { flex-direction: column; }
  .catalog-sub-filters { flex-direction: column; gap: 1rem; padding: 1rem; }
  .catalog-toolbar { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .color-filter-inline { gap: 0.4rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-img { min-height: 300px; }
}

/* ===== DAY MODE ===== */
body.day-mode {
  background: #f9f9f7;
  color: #1a1a1a;
}

body.day-mode .nav {
  background: rgba(249,249,247,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

body.day-mode .nav-logo {
  color: #1a1a1a;
}

body.day-mode .nav-links a {
  color: rgba(0,0,0,0.7);
}

body.day-mode .nav-links a:hover {
  color: #1a1a1a;
}

body.day-mode .nav-toggle-mode {
  color: #1a1a1a;
}

body.day-mode .mobile-menu {
  background: rgba(249,249,247,0.98);
}

body.day-mode .mobile-menu a {
  color: #1a1a1a;
}

body.day-mode .hero-overlay {
  background: rgba(0,0,0,0.4);
}

body.day-mode .section-dark {
  background: #f9f9f7;
  color: #1a1a1a;
}

body.day-mode .section-gray {
  background: #f0eeea;
  color: #1a1a1a;
}

body.day-mode .section-light {
  background: #ffffff;
  color: #1a1a1a;
}

body.day-mode .section-title {
  color: #1a1a1a;
}

body.day-mode .section-desc {
  color: #666666;
}

body.day-mode .product-card {
  background: #ffffff;
  border: 1px solid #e2e3e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

body.day-mode .product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

body.day-mode .product-card-name {
  color: #1a1a1a;
}

body.day-mode .product-card-meta {
  color: #666666;
}

body.day-mode .sub-filter-group label {
  color: var(--gold);
}

body.day-mode .sub-filter-group select,
body.day-mode .catalog-toolbar select {
  background: #ffffff;
  border: 1px solid #e2e3e5;
  color: #1a1a1a;
}

body.day-mode .catalog-sub-filters {
  background: #f8f5f0;
  border-color: #e2e3e5;
}

body.day-mode .color-swatch {
  border-color: transparent;
}

body.day-mode .color-swatch.active {
  border-color: var(--gold);
}

body.day-mode .color-label,
body.day-mode .color-label-inline {
  color: #666;
}

body.day-mode .active-filter-pill {
  background: rgba(185,188,192,0.1);
  border-color: rgba(185,188,192,0.25);
}

body.day-mode .catalog-toolbar .result-count {
  color: #666;
}

body.day-mode .color-swatch[data-swatch="White"] {
  border: 1px solid #ddd;
}

body.day-mode .filter-btn {
  border-color: #e2e3e5;
  color: #666666;
  background: #ffffff;
}
body.day-mode #filterSearch {
  background: #fff;
  border-color: #d3d4d6;
  color: #1a1a1a;
}

body.day-mode .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

body.day-mode .portfolio-card-name {
  color: #ffffff;
}

body.day-mode .portfolio-card-content {
  background: rgba(0,0,0,0.6);
}

body.day-mode .split-content p {
  color: #666666;
}

body.day-mode .split-image img {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

body.day-mode .stat-number {
  color: var(--gold);
}

body.day-mode .stat-label {
  color: #666666;
}

body.day-mode .process-step-title {
  color: #1a1a1a;
}

body.day-mode .process-step-desc {
  color: #666666;
}

body.day-mode .artist-card {
  background: #f5f3ef; box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
body.day-mode .artist-card-img {
  background: #eae6df;
}
body.day-mode .artist-card-name {
  color: #1a1a1a;
}

body.day-mode .blog-card-title {
  color: #1a1a1a;
}

body.day-mode .blog-card-excerpt {
  color: #666666;
}

body.day-mode .testimonial-quote {
  color: #1a1a1a;
}

body.day-mode .testimonial-author {
  color: #1a1a1a;
}

body.day-mode .testimonial-role {
  color: #999999;
}

body.day-mode .footer {
  background: #f9f9f7;
  color: #1a1a1a;
  border-top: 1px solid #e2e3e5;
}

body.day-mode .footer-section a {
  color: var(--gold);
}

body.day-mode .footer-section a:hover {
  color: #9da0a4;
}

body.day-mode .footer-bottom {
  border-top: 1px solid #e2e3e5;
  color: #666666;
}

body.day-mode .loader {
  background: #f9f9f7;
}

body.day-mode .loader-logo {
  color: #1a1a1a;
}

body.day-mode .loader-line {
  background: #e2e3e5;
}

body.day-mode .contact-detail-title {
  color: #1a1a1a;
}

body.day-mode .contact-detail-text {
  color: #666666;
}

body.day-mode .form-group input,
body.day-mode .form-group textarea {
  background: #ffffff;
  border: 1px solid #e2e3e5;
  color: #1a1a1a;
}

body.day-mode .portal-section { background: #f0eeea; }
body.day-mode .portal-container { border-color: #ddd; }
body.day-mode .portal-left { background: #1a1a1a; }
body.day-mode .portal-right { background: #fff; }
body.day-mode .portal-right h3 { color: #1a1a1a; }
body.day-mode .portal-tab-btn { color: #999; }
body.day-mode .portal-tab-btn.active { color: var(--gold); }
body.day-mode .portal-tabs { border-color: #e0e0e0; }
body.day-mode .portal-divider::before,
body.day-mode .portal-divider::after { background: #e0e0e0; }

body.day-mode .category-card-overlay {
  background: rgba(0,0,0,0.5);
}

body.day-mode .partners {
  background: #f0eeea;
  border-top: 1px solid #e2e3e5;
  border-bottom: 1px solid #e2e3e5;
}

body.day-mode .partners-track {
  color: #999999;
}

body.day-mode .partners-track span {
  color: #1a1a1a;
}
body.day-mode .modal {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

body.day-mode .modal h3 {
  color: #1a1a1a;
}

body.day-mode .modal p {
  color: #666666;
}

body.day-mode .cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
}

body.day-mode .cta-overlay {
  background: rgba(0,0,0,0.6);
}

body.day-mode .cta-content {
  color: #ffffff;
}

body.day-mode .cta-content .section-title {
  color: #ffffff;
}

body.day-mode .cta-content p {
  color: rgba(255,255,255,0.8);
}

body.day-mode .form-group input::placeholder,
body.day-mode .form-group textarea::placeholder {
  color: #999999;
}

body.day-mode .split-section {
  color: #1a1a1a;
}

body.day-mode .installation-card-overlay {
  background: rgba(0,0,0,0.5);
}

body.day-mode .installation-card-name {
  color: #ffffff;
}

body.day-mode .blog-card-img {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

body.day-mode .quote-modal .modal {
  background: #ffffff;
}

body.day-mode .quote-modal input,
body.day-mode .quote-modal textarea {
  background: #ffffff;
  border: 1px solid #e2e3e5;
  color: #1a1a1a;
}

body.day-mode .quote-modal input::placeholder,
body.day-mode .quote-modal textarea::placeholder {
  color: #999999;
}

body.day-mode .hero-scroll span {
  color: rgba(0,0,0,0.5);
}

body.day-mode .category-card-title {
  color: #ffffff;
}

body.day-mode .insta-section { background: #f9f9f7; }
body.day-mode .insta-card-overlay span { color: #fff; }
body.day-mode .insta-follow a { color: var(--gold); border-color: var(--gold); }
body.day-mode .insta-follow a:hover { background: var(--gold); color: #1a1a1a; }

body.day-mode .contact-section .contact-overlay { background: rgba(10,11,13,0.55); }
body.day-mode .contact-right { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
@media (max-width: 900px) { #framestudio .fs-embed { min-height: 520px; } }
  #framestudio .fs-embed {
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: min(82vh, 780px);
    min-height: 640px;
    border: 0;
    background: #f5f5f0;
  }

body.site-page { background: var(--ink, #141518); }
body.site-page.day-mode,
html.fh-house-light body.site-page { background: #f9f9f7; color: #1a1a1a; }
html.fh-house-light .section-eyebrow { color: #8a6d12; }
html.fh-house-light .section-title { color: #1a1a1a; }
html.fh-house-light .section-desc { color: #4a4c50; }
.page-pad { padding-top: 4.5rem; }
nav.nav a.on { color: var(--gold); }
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #9a9ca1;
  font-size: 0.9rem;
}
body.day-mode .portfolio-empty { color: #666; }
body.day-mode .footer-col h4,
body.day-mode .footer .nav-logo { color: #1a1a1a; }
body.day-mode .footer-col a,
body.day-mode .footer-brand p { color: #6e7175; }
body.day-mode .portfolio-tab { color: #1a1a1a; border-color: #ddd; }

/* Four Fields: light cards. Re-assert grid under house/light so it cannot flatten. */
#ordering.four-fields {
  background: #f9f9f7;
  color: #1a1a1a;
  padding: 6rem 2rem 7rem;
}
#ordering.four-fields .section-title { color: #1a1a1a; }
#ordering.four-fields .section-desc { color: #666; }
#ordering.four-fields .section-eyebrow { color: #8a6d12; }
#ordering.four-fields .four-fields-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
#ordering.four-fields .order-fields,
html.fh-house-light #ordering.four-fields .order-fields,
body.day-mode #ordering.four-fields .order-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
#ordering.four-fields .order-card,
html.fh-house-light #ordering.four-fields .order-card,
body.day-mode #ordering.four-fields .order-card {
  background: #fff;
  border: 1px solid #ececec;
  border-top: 2px solid #d4af37;
  border-radius: 10px;
  padding: 1.5rem 1.1rem 1.35rem;
  text-align: center;
  color: #1a1a1a;
  min-width: 0;
}
#ordering.four-fields .order-lbl {
  font-family: var(--sans, Inter, sans-serif);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a7a7a;
  font-weight: 600;
}
#ordering.four-fields .order-val,
html.fh-house-light #ordering.four-fields .order-val,
body.day-mode #ordering.four-fields .order-val {
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0.45rem 0 0.35rem;
  color: #1a1a1a;
}
#ordering.four-fields .order-hint,
html.fh-house-light #ordering.four-fields .order-hint,
body.day-mode #ordering.four-fields .order-hint {
  font-size: 0.72rem;
  color: #6e7175;
  line-height: 1.4;
}
#ordering.four-fields .order-example {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #d4af37;
  color: #1a1a1a;
  border-radius: 8px;
  padding: 0.95rem 1.25rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2.75rem;
}
#ordering.four-fields .order-codes-head {
  font-family: var(--sans, Inter, sans-serif);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6d12;
  margin: 0 0 1rem;
}
#ordering.four-fields .order-code-table,
html.fh-house-light #ordering.four-fields .order-code-table,
body.day-mode #ordering.four-fields .order-code-table {
  display: grid;
  width: 100%;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
}
#ordering.four-fields .order-code-row,
html.fh-house-light #ordering.four-fields .order-code-row,
body.day-mode #ordering.four-fields .order-code-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ececec;
  align-items: start;
}
#ordering.four-fields .order-code-row:last-child { border-bottom: none; }
#ordering.four-fields .order-code-label {
  font-family: var(--sans, Inter, sans-serif);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a7a7a;
  padding-top: 0.2rem;
}
#ordering.four-fields .order-code-explain {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #3a3c42;
}
#ordering.four-fields .order-code-explain a {
  color: #1a1a1a;
  border-bottom: 1px solid #d4af37;
}
#ordering.four-fields .order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}
#ordering.four-fields .order-actions .btn-primary {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
}
#ordering.four-fields .order-actions .btn-primary:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #1a1a1a;
}
#ordering.four-fields .order-actions .btn-outline {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}
#ordering.four-fields .order-actions .btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}
@media (max-width: 900px) {
  #ordering.four-fields .order-fields,
  html.fh-house-light #ordering.four-fields .order-fields,
  body.day-mode #ordering.four-fields .order-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  #ordering.four-fields .order-fields,
  html.fh-house-light #ordering.four-fields .order-fields,
  body.day-mode #ordering.four-fields .order-fields {
    display: grid;
    grid-template-columns: 1fr;
  }
  #ordering.four-fields .order-code-row,
  html.fh-house-light #ordering.four-fields .order-code-row,
  body.day-mode #ordering.four-fields .order-code-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
