/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Custom Properties */
:root {
  --white: #ffffff;
  --off-white: #F7F5F2;
  --cream: #EDE9E3;
  --charcoal: #1A1918;
  --mid: #5C5650;
  --taupe: #9B8B7A;
  --gold: #C4993A;
  --gold-dark: #A67C28;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 2px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(26,25,24,0.08);
  --shadow-lg: 0 12px 48px rgba(26,25,24,0.14);
  --container: 1200px;
  --header-h: 120px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--charcoal); background: var(--white); line-height: 1.6; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 500; }
em { font-style: italic; }
p { color: var(--mid); font-size: 1rem; line-height: 1.7; }

/* Utility */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-white { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: #2e2b29; border-color: #2e2b29; }
.btn-full { width: 100%; text-align: center; }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.section-label {
  display: block; font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-label-light {
  display: block; font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 560px; margin: 16px auto 0; }

/* Header */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--cream);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 112px; width: auto; display: block; }
.logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--charcoal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.05em; border-radius: 2px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); }
.logo-sub { font-family: var(--font-serif); font-size: 0.8rem; font-weight: 400; color: var(--taupe); }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 36px; }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--mid); transition: color var(--transition); }
.nav a:hover { color: var(--charcoal); }
.header-phone {
  font-size: 0.875rem; font-weight: 600; color: var(--charcoal);
  padding: 10px 20px; border: 1.5px solid var(--cream);
  transition: border-color var(--transition);
  white-space: nowrap;
}
.header-phone:hover { border-color: var(--charcoal); }
.header-schedule { font-size: 0.875rem; padding: 10px 20px; white-space: nowrap; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; flex-direction: column; justify-content: space-between;
  padding: 0; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--charcoal); transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,25,24,0.65) 0%, rgba(26,25,24,0.35) 100%);
}
.hero-content {
  position: relative; text-align: center; color: var(--white);
  max-width: 760px; padding: 0 24px;
}
.hero-eyebrow {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 20px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); transition: color var(--transition);
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--white); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)} }

/* Features */
.features { padding: 96px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.feature { text-align: center; padding: 0 16px; }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 20px; color: var(--taupe); }
.feature-icon svg { width: 100%; height: 100%; }
.feature h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 10px; }
.feature p { font-size: 0.9rem; }

/* Collections */
.collections { padding: 96px 0; background: var(--off-white); }
.collections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.coll-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.coll-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.coll-img {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.coll-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.coll-card:hover .coll-img img { transform: scale(1.06); }
.coll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,25,24,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.coll-card:hover .coll-overlay { opacity: 1; }
.coll-view {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); color: var(--charcoal);
  padding: 8px 20px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
}
.coll-card:hover .coll-view { opacity: 1; transform: translateX(-50%) translateY(0); }
.coll-info { padding: 20px 22px; }
.coll-info h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 4px; }
.coll-count { font-size: 0.8rem; color: var(--taupe); }
.coll-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.spec-tag {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.03em;
  padding: 5px 13px; border-radius: 20px;
  background: var(--cream); color: var(--taupe); white-space: nowrap;
  line-height: 1.4;
}

/* Quote Band */
.process-band { position: relative; overflow: hidden; }
.process-band-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 40%;
}
.process-band-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(26,25,24,0.6);
}
blockquote {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic; font-weight: 400; line-height: 1.4; margin-bottom: 20px;
}
cite { font-size: 0.875rem; opacity: 0.75; font-style: normal; }
.process-band-steps { position: relative; z-index: 2; padding: 80px 0; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.step-light h3 { color: var(--white); }
.step-light p { color: rgba(255,255,255,0.75); }
.process-band .step-divider { background: rgba(255,255,255,0.2); }

/* Process */
.process { padding: 96px 0; background: var(--white); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-num {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 600;
  color: var(--cream); line-height: 1; margin-bottom: 20px;
  position: relative; display: inline-block;
}
.step-num::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0.5);
}
.step h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: 0.9rem; }
.step-divider {
  width: 1px; background: var(--cream); align-self: stretch;
  margin-top: 24px; flex-shrink: 0;
}

/* Testimonials */
.testimonials { padding: 96px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white); padding: 36px 32px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial p { font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testimonial footer { font-size: 0.8rem; font-weight: 600; color: var(--taupe); }

/* Contact */
.contact-section { padding: 96px 0; background: var(--white); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info .section-label { display: block; margin-bottom: 12px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.contact-details svg { flex-shrink: 0; color: var(--taupe); }
.contact-details a:hover { color: var(--gold); }
.contact-hours { display: flex; flex-direction: column; gap: 4px; }
.contact-hours strong { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); margin-bottom: 4px; }
.contact-hours span { font-size: 0.9rem; color: var(--mid); }

/* Form */
.contact-form-wrap { padding: 40px; background: var(--off-white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1px solid var(--cream);
  background: var(--white); font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--charcoal); outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--charcoal);
}
.form-group textarea { resize: vertical; }

/* Wizard multi-step form */
.wiz-track { height: 3px; background: var(--cream); border-radius: 2px; margin-bottom: 28px; overflow: hidden; }
.wiz-bar { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s ease; }
.wiz-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 8px;
}
.wiz-field-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--taupe);
}
.wiz-q {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 22px; line-height: 1.3;
}
.wiz-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.wiz-pill {
  flex: 1; min-width: 130px;
  padding: 14px 18px; border: 1.5px solid var(--charcoal); border-radius: 3px;
  background: transparent; font-family: var(--font-sans); font-size: 0.92rem; font-weight: 600;
  color: var(--charcoal); cursor: pointer; text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.wiz-pill:hover { background: var(--charcoal); color: var(--white); }
.wiz-success { text-align: center; padding: 16px 0 8px; }
.wiz-success svg { margin: 0 auto 18px; color: var(--gold); display: block; }
.wiz-success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--charcoal); margin-bottom: 8px; }
.wiz-success p { color: var(--taupe); margin-bottom: 4px; }

/* Footer */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.85); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { margin-top: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-links h4 {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,8,6,0.95);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.lb-img-wrap { position: relative; max-width: 90vw; max-height: 80vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 80vh; object-fit: contain; }
.lb-spinner {
  position: absolute; inset: 0; margin: auto;
  width: 32px; height: 32px; border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--white); border-radius: 50%;
  animation: spin 0.7s linear infinite; display: none;
}
.lb-spinner.active { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.lb-close {
  position: fixed; top: 24px; right: 32px; background: none; border: none;
  color: rgba(255,255,255,0.7); font-size: 2.5rem; cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.lb-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 2rem; cursor: pointer;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-caption {
  color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 16px;
  font-family: var(--font-serif); font-style: italic;
}
.lb-specs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 12px; max-width: 680px;
}
.lb-spec-tag {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.03em;
  padding: 5px 13px; border-radius: 20px; line-height: 1.4;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18); white-space: nowrap;
}
.lb-counter { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 8px; }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--cream);
    padding: 24px 32px; display: none;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 20px; }
  .header-phone { display: none; }
  .header-schedule { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-divider { width: 48px; height: 1px; margin: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .features, .collections, .process, .testimonials, .contact-section { padding: 64px 0; }
  .contact-form-wrap { padding: 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root[data-theme="dark"] body, body { background: var(--white); }
}
