/* ══════════════════════════════════════════
   COMPONENTS — Reusable across all pages
   ══════════════════════════════════════════ */

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px; height: 76px;
  transition: background .5s, box-shadow .5s;
}
nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,18,16,.9), transparent);
  pointer-events: none; transition: opacity .5s;
}
nav.scrolled::before { opacity: 0; }
nav.scrolled {
  background: rgba(20,18,16,.97);
  box-shadow: 0 1px 0 rgba(196,154,85,.15);
  backdrop-filter: blur(14px);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; position: relative; z-index: 1; }
.nav-logo img { height: 36px; filter: brightness(0) invert(1); transition: filter .4s; }
nav.scrolled .nav-logo img { filter: brightness(0) saturate(100%) invert(72%) sepia(20%) saturate(700%) hue-rotate(2deg) brightness(96%); }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .22em; color: var(--cream); line-height: 1; }
.nav-logo-text b { color: var(--gold); font-weight: 400; }
.nav-links { display: flex; gap: 36px; list-style: none; position: relative; z-index: 1; }
.nav-links a { color: rgba(192,187,178,.75); text-decoration: none; font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s cubic-bezier(.25,.46,.45,.94); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger (hidden on desktop, shown via responsive.css) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
}
nav.scrolled .nav-hamburger span { background: var(--gold); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Page Hero (subpages) ── */
.page-hero { height: 75vh; min-height: 540px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.32) saturate(.6); transform: scale(1.06); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,16,1) 0%, rgba(20,18,16,.25) 55%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 72px 68px; display: flex; justify-content: space-between; align-items: flex-end; width: 100%; }
.page-hero-bg-num { position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 22rem; line-height: 1; color: rgba(196,154,85,.05); top: 50%; left: 60px; transform: translateY(-50%); pointer-events: none; user-select: none; z-index: 1; }
.page-hero-tag { font-size: .6rem; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUp .9s .4s forwards; }
.page-hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4.5rem,9vw,11rem); letter-spacing: .03em; line-height: .88; color: var(--cream); opacity: 0; animation: fadeUp 1s .15s forwards; }
.page-hero-h1 em { color: var(--gold); font-style: normal; }
.page-hero-right { max-width: 360px; text-align: right; opacity: 0; animation: fadeUp .9s .6s forwards; }
.page-hero-right p { font-size: .86rem; line-height: 1.85; color: var(--ash); font-weight: 300; }

/* ── Marquee ── */
.marquee-bar { background: var(--gold); padding: 13px 0; overflow: hidden; }
.marquee-inner { display: flex; white-space: nowrap; animation: ticker 38s linear infinite; }
.marquee-inner span { font-family: 'Bebas Neue', sans-serif; font-size: .92rem; letter-spacing: .2em; color: var(--bark); padding: 0 32px; display: inline-flex; align-items: center; gap: 32px; }
.marquee-inner span::after { content: '\25C6'; font-size: .42rem; opacity: .55; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Gallery ── */
.gallery-section { padding: 90px 72px; background: var(--mid); }
.gallery-section .label { color: var(--ash); }
.gallery-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem,3.2vw,3.8rem); font-weight: 300; font-style: italic; margin-bottom: 44px; color: var(--cream); }
.gallery-tabs { display: flex; gap: 2px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn { padding: 11px 26px; background: rgba(196,154,85,.05); border: 1px solid rgba(196,154,85,.14); color: var(--ash); font-family: 'DM Sans', sans-serif; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; cursor: pointer; transition: all .3s; }
.tab-btn.active, .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bark); }
.gallery-panel { display: none; }
.gallery-panel.active { display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; }
.gallery-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; }
.g-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s; filter: brightness(.86); }
.g-item:hover img { transform: scale(1.09); filter: brightness(1.05); }
.g-overlay { position: absolute; inset: 0; background: rgba(20,18,16,0); display: flex; align-items: center; justify-content: center; transition: background .4s; }
.g-item:hover .g-overlay { background: rgba(20,18,16,.44); }
.g-overlay svg { opacity: 0; transform: scale(.65); transition: all .3s; color: var(--gold); }
.g-item:hover .g-overlay svg { opacity: 1; transform: scale(1); }

/* ── Stats ── */
.stats { background: var(--bark); display: grid; grid-template-columns: repeat(4,1fr); }
.stats-bar { background: var(--timber); display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 68px 36px; border-right: 1px solid rgba(196,154,85,.1); text-align: center; transition: background .4s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(196,154,85,.05); }
.stat big { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--gold); line-height: 1; display: block; }
.stat span { font-size: .61rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ash); margin-top: 8px; display: block; }

/* ── CTA Section ── */
.cta-section { background: var(--charcoal); padding: 120px 72px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(196,154,85,.08); }
.cta-section-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,5rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.1; }
.cta-section-left h2 strong { display: block; font-family: 'Bebas Neue', sans-serif; font-style: normal; color: var(--gold); font-size: .75em; letter-spacing: .06em; }
.cta-section-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.cta-section-right p { font-size: .82rem; line-height: 1.8; color: var(--ash); font-weight: 300; max-width: 300px; text-align: right; }
.cta-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.8vw,4.8rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.1; }
.cta-left h2 strong { display: block; font-family: 'Bebas Neue', sans-serif; font-style: normal; color: var(--gold); font-size: .75em; letter-spacing: .06em; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.cta-right p { font-size: .82rem; line-height: 1.8; color: var(--ash); font-weight: 300; max-width: 300px; text-align: right; }

/* ── Buttons ── */
.btn-gold { display: inline-flex; align-items: center; gap: 14px; padding: 15px 40px; border: 1px solid var(--gold); color: var(--gold); font-size: .63rem; letter-spacing: .3em; text-transform: uppercase; text-decoration: none; position: relative; overflow: hidden; transition: color .4s; }
.btn-gold::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.25,.46,.45,.94); z-index: 0; }
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { color: var(--bark); }
.btn-gold span { position: relative; z-index: 1; }
.btn-outline { display: inline-flex; align-items: center; gap: 14px; padding: 15px 40px; border: 1px solid rgba(192,187,178,.2); color: var(--ash); font-size: .63rem; letter-spacing: .3em; text-transform: uppercase; text-decoration: none; transition: all .4s; }
.btn-outline:hover { border-color: var(--ash); color: var(--cream); }
.cta { display: inline-flex; align-items: center; gap: 14px; padding: 15px 36px; margin-top: 36px; border: 1px solid var(--gold); color: var(--gold); font-size: .63rem; letter-spacing: .3em; text-transform: uppercase; text-decoration: none; position: relative; overflow: hidden; width: fit-content; transition: color .4s; }
.cta::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.25,.46,.45,.94); z-index: 0; }
.cta:hover::before { transform: scaleX(1); }
.cta:hover { color: var(--bark); }
.cta span { position: relative; z-index: 1; }

/* ── Contact ── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.contact-info { background: var(--bark); padding: 90px 72px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-info::before { content: 'KONTAKT'; position: absolute; bottom: -40px; right: -20px; font-family: 'Bebas Neue', sans-serif; font-size: 11rem; color: rgba(196,154,85,.04); pointer-events: none; user-select: none; line-height: 1; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3vw,3.8rem); font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 36px; line-height: 1.1; }
.cdetail { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 22px; transition: transform .3s; }
.cdetail:hover { transform: translateX(6px); }
.cicon { width: 40px; height: 40px; border: 1px solid rgba(196,154,85,.32); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; color: var(--gold); transition: all .3s; }
.cdetail:hover .cicon { background: var(--gold); color: var(--bark); }
.ctext strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: .83rem; letter-spacing: .18em; color: var(--gold); margin-bottom: 3px; }
.ctext span, .ctext a { font-size: .83rem; color: var(--ash); text-decoration: none; line-height: 1.8; font-weight: 300; }
.ctext a:hover { color: var(--gold); }
.map-container { position: relative; overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(25%) contrast(1.05) brightness(0.95); min-height: 400px; }

/* ── Footer ── */
footer { background: var(--charcoal); border-top: 1px solid rgba(196,154,85,.1); padding: 36px 72px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .22em; color: var(--cream); text-decoration: none; }
.footer-logo b { color: var(--gold); font-weight: 400; }
footer p { font-size: .68rem; color: rgba(200,196,188,.33); letter-spacing: .05em; }
.footer-right { font-size: .62rem; color: rgba(200,196,188,.24); text-align: right; line-height: 1.8; }

/* ── Lightbox (simple) ── */
.lb { display: none; position: fixed; inset: 0; background: rgba(14,12,10,.96); z-index: 1000; align-items: center; justify-content: center; flex-direction: column; }
.lb.open { display: flex; }
.lb-img { max-width: 88vw; max-height: 80vh; object-fit: contain; border: 1px solid rgba(196,154,85,.18); transition: opacity .28s; }
.lb-close, .lb-prev, .lb-next { background: none; border: none; color: var(--ash); cursor: pointer; transition: color .2s; font-family: inherit; }
.lb-close { position: absolute; top: 22px; right: 28px; font-size: 1.8rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; padding: 14px; }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-counter { margin-top: 14px; font-size: .62rem; letter-spacing: .3em; color: rgba(200,196,188,.38); text-transform: uppercase; }

/* ── Lightbox (advanced layout) ── */
.lb-layout { display: grid; grid-template-columns: 1fr 380px; width: 92vw; max-height: 88vh; gap: 0; background: var(--mid); border: 1px solid rgba(196,154,85,.1); }
.lb-img-wrap { overflow: hidden; position: relative; }
.lb-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .28s; }
.lb-info { padding: 48px 44px; display: flex; flex-direction: column; justify-content: space-between; background: var(--mid); border-left: 1px solid rgba(196,154,85,.1); }
.lb-info-top {}
.lb-info-meta { font-size: .55rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; gap: 16px; flex-wrap: wrap; }
.lb-info-meta span { opacity: .8; }
.lb-info h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .06em; color: var(--cream); margin-bottom: 14px; line-height: 1.1; }
.lb-info p { font-size: .8rem; line-height: 1.8; color: var(--ash); font-weight: 300; }
.lb-info-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.lb-tag { font-size: .52rem; letter-spacing: .18em; text-transform: uppercase; padding: 5px 11px; border: 1px solid rgba(196,154,85,.22); color: var(--gold); }
.lb-nav { display: flex; gap: 2px; margin-top: 32px; }
.lb-nav button { flex: 1; padding: 13px; background: rgba(196,154,85,.06); border: 1px solid rgba(196,154,85,.12); color: var(--ash); font-size: 1rem; cursor: pointer; transition: all .3s; }
.lb-nav button:hover { background: var(--gold); border-color: var(--gold); color: var(--bark); }
.lb-counter-info { font-size: .56rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(192,187,178,.3); text-align: center; margin-top: 10px; }
.lb-close-btn { position: absolute; top: 18px; right: 22px; background: none; border: none; color: var(--ash); font-size: 1.5rem; cursor: pointer; z-index: 10; transition: color .3s; line-height: 1; }
.lb-close-btn:hover { color: var(--gold); }

/* ── FAB (Floating Action Buttons) ── */
.fab-group {
  position: fixed;
  bottom: 32px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,85,.35);
  background: rgba(20,18,16,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity .35s, transform .35s cubic-bezier(.25,.46,.45,.94), background .3s, box-shadow .3s;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}
.fab-top {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.fab.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: all !important;
}
.fab:hover {
  background: var(--gold);
  color: var(--bark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,154,85,.32);
}

/* FAB Tooltip */
.fab::before {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20,18,16,.95);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 12px;
  border: 1px solid rgba(196,154,85,.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.fab::after {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(196,154,85,.2);
  opacity: 0;
  transition: opacity .25s;
}
.fab:hover::before,
.fab:hover::after { opacity: 1; }

/* FAB Call button */
.fab-call {
  background: rgba(16,36,18,.92);
  border-color: rgba(74,160,80,.45);
  color: #5fc965;
  overflow: visible;
}
.fab-call .pulse-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(74,160,80,.6);
  animation: callPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes callPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fab-call:hover {
  background: #3fa845;
  color: #fff;
  border-color: #3fa845;
  box-shadow: 0 8px 28px rgba(63,168,69,.35);
}

/* ── Product Modal ── */
.pm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pm-overlay.open { display: flex; }
.pm-box {
  background: #fff;
  width: 100%;
  max-width: 1020px;
  max-height: 90vh;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.pm-gallery {
  position: relative;
  background: #111;
  overflow: hidden;
}
.pm-gallery-main {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: opacity .25s;
}
.pm-gallery-thumbs {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.pm-gallery-thumbs button {
  width: 52px;
  height: 38px;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  flex-shrink: 0;
  transition: border-color .2s;
}
.pm-gallery-thumbs button.active { border-color: var(--gold, #c8a96e); }
.pm-gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pm-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
  pointer-events: none;
}
.pm-gallery-nav button {
  pointer-events: all;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pm-gallery-nav button:hover { background: rgba(200,169,110,.8); }
.pm-gallery-counter {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: .7rem;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.pm-info {
  padding: 36px 32px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0,0,0,.12);
  border: none;
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}
.pm-close:hover { background: rgba(0,0,0,.25); }
.pm-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(0,0,0,.06);
  line-height: 1;
  margin-bottom: -8px;
}
.pm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 4px;
}
.pm-title span { color: var(--gold, #c8a96e); }
.pm-subtitle {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}
.pm-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}
.pm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.pm-spec {
  background: #f7f5f1;
  border-radius: 3px;
  padding: 9px 12px;
}
.pm-spec strong {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: 2px;
}
.pm-spec span { font-size: .82rem; color: #222; }
.pm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.pm-tags .tag {
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f0ebe0;
  color: #7a6a4f;
  border: 1px solid rgba(200,169,110,.3);
}
.pm-cta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pm-cta a { font-size: .8rem; }

/* Clickable model spotlights */
.model-spotlight {
  cursor: pointer;
  transition: box-shadow .25s;
}
.model-spotlight:hover {
  box-shadow: 0 8px 40px rgba(200,169,110,.18);
}
.model-spotlight:hover .model-img img {
  transform: scale(1.03);
}
.model-spotlight .model-img img {
  transition: transform .4s ease;
}
.model-open-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #c8a96e);
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  opacity: .85;
}
.model-open-hint svg { opacity: .8; }

/* ── Other Categories ── */
.other-cats { background: var(--mid); padding: 90px 72px; }
.other-cats h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,2.5vw,2.8rem); font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 40px; }
.cats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.cat-card { position: relative; overflow: hidden; height: 320px; cursor: pointer; text-decoration: none; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.32) saturate(.6); transition: all .8s cubic-bezier(.25,.46,.45,.94); }
.cat-card:hover img { transform: scale(1.04); filter: brightness(.52) saturate(.85); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,16,.92) 0%, transparent 60%); }
.cat-card-content { position: absolute; bottom: 36px; left: 36px; right: 36px; }
.cat-card-num { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(196,154,85,.1); line-height: 1; margin-bottom: 4px; }
.cat-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .05em; color: var(--cream); transition: color .3s; }
.cat-card:hover .cat-card-title { color: var(--gold); }
.cat-card-sub { font-size: .75rem; color: var(--ash); font-weight: 300; margin-top: 6px; opacity: 0; transform: translateY(6px); transition: all .4s; }
.cat-card:hover .cat-card-sub { opacity: 1; transform: translateY(0); }

/* CONTACT FORM */
.contact-form-wrap {
    background: var(--mid);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-form { position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 0; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(196,154,85,.04);
    border: 1px solid rgba(196,154,85,.18);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    transition: border-color .3s, background .3s;
    outline: none;
}
.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder { color: var(--ash); opacity: .6; }
.contact-form select option { background: var(--charcoal); color: var(--cream); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: rgba(196,154,85,.08);
}
.contact-form textarea { resize: vertical; min-height: 120px; margin-bottom: 12px; }
.contact-form .btn-gold { width: 100%; justify-content: center; margin-top: 8px; }
.form-message { margin-top: 16px; font-size: .82rem; text-align: center; padding: 12px; display: none; }
.form-message.success { display: block; color: #5fc965; background: rgba(95,201,101,.08); border: 1px solid rgba(95,201,101,.2); }
.form-message.error { display: block; color: #e55; background: rgba(229,85,85,.08); border: 1px solid rgba(229,85,85,.2); }
