*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --obsidian:   #0d0c0b;
  --deep:       #181613;
  --surface:    #221f1b;
  --panel:      #2a2722;
  --gold:       #c9a96e;
  --gold-light: #dfc28a;
  --gold-pale:  #f0ddb5;
  --cream:      #f4efe6;
  --off-white:  #e8e2d8;
  --muted:      #8a8278;
  --border:     rgba(201,169,110,0.16);
  --border-sub: rgba(201,169,110,0.08);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--obsidian);
  color: var(--cream);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032; pointer-events: none; z-index: 9999;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5rem;
  transition: background 0.5s ease, padding 0.4s ease, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(13,12,11,0.94);
  backdrop-filter: blur(14px);
  padding: 1.1rem 5rem;
  border-bottom-color: var(--border-sub);
}
.logo {
  font-family: var(--font-d); font-size: 1.55rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; display: flex; flex-direction: column; line-height: 1;
}
.logo-sub {
  font-size: 0.48rem; font-family: var(--font-b); font-weight: 400;
  letter-spacing: 0.5em; color: var(--muted); text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; gap: 2.6rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--obsidian); background: var(--gold); padding: 0.7rem 1.8rem;
  text-decoration: none; transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 1px; background: var(--gold); display: block; }

/* HERO */
#hero {
  min-height: 100vh; display: grid; grid-template-columns: 58% 42%;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem 5rem 7rem; position: relative; z-index: 2;
}
.eyebrow {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 300; line-height: 1.06; color: var(--cream);
  opacity: 0; animation: fadeUp 1s ease 0.55s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 0.88rem; font-weight: 200; color: var(--muted);
  max-width: 420px; margin-top: 2rem; margin-bottom: 3.2rem;
  opacity: 0; animation: fadeUp 1s ease 0.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 2.8rem;
  opacity: 0; animation: fadeUp 1s ease 1s forwards;
}
.btn-gold {
  display: inline-block; font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--obsidian); background: var(--gold);
  padding: 1rem 2.5rem; text-decoration: none; transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-link {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 0.7rem; transition: color 0.3s;
}
.btn-link:hover { color: var(--gold); }
.btn-link::after { content: '→'; font-size: 1.1rem; }

/* Hero right */
.hero-right { position: relative; overflow: hidden; }
.hero-bg {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at top left, rgba(201,169,110,0.16), transparent 38%),
    linear-gradient(135deg, #2a2218 0%, #1a1510 30%, #0d0b09 100%);
  position: relative;
  padding: 4rem 3rem 4rem 2rem;
}
.hero-media {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(240, 221, 181, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  background: var(--panel);
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media-main {
  inset: 3rem 3rem 5rem 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
}
.hero-media-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 12, 11, 0.28), transparent 45%);
}
.hero-media-accent {
  width: min(42%, 230px);
  aspect-ratio: 0.86;
  right: 0;
  bottom: 2rem;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s ease 0.95s forwards;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--obsidian) 0%, transparent 34%),
    linear-gradient(to top, rgba(13, 12, 11, 0.5), transparent 28%);
  pointer-events: none;
}
.hero-stat {
  position: absolute; bottom: 4rem; left: -2rem; z-index: 10;
  background: var(--deep); border: 1px solid var(--border); padding: 1.6rem 2.2rem;
  opacity: 0; animation: fadeUp 1s ease 1.3s forwards;
}
.stat-num {
  font-family: var(--font-d); font-size: 3rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeIn 1s ease 1.8s forwards; z-index: 12;
}
.scroll-cue span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.scroll-line {
  width: 2px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(240, 221, 181, 0.95), rgba(201, 169, 110, 0.2));
  box-shadow: 0 0 18px rgba(201, 169, 110, 0.35);
  animation: pulse 2s ease-in-out infinite 2.5s;
}

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 1rem 0; background: var(--deep);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 2rem; padding: 0 2.5rem;
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted);
}
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ABOUT */
#about {
  padding: 8rem 5rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}
.section-tag { font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.about-text h2 {
  font-family: var(--font-d); font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 1.8rem;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; max-width: 480px; }
.about-text p strong { color: var(--off-white); font-weight: 400; }
.about-card {
  background: var(--surface); border: 1px solid var(--border); padding: 3.5rem; position: relative;
}
.about-card::before {
  content: ''; position: absolute; top: -1px; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.about-card-label { font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.about-card-quote { font-family: var(--font-d); font-size: 1.45rem; font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.5; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1px; background: var(--border); }
.about-stat { background: var(--surface); padding: 2rem; }
.about-stat-num { font-family: var(--font-d); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-stat-text { font-size: 0.68rem; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; margin-top: 0.4rem; }

/* SERVICES */
#services { padding: 8rem 5rem; background: var(--deep); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4.5rem; }
.section-header h2 { font-family: var(--font-d); font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300; color: var(--cream); }
.section-header h2 em { font-style: italic; color: var(--gold); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--obsidian); padding: 3rem 2.5rem; position: relative; overflow: hidden;
  transition: background 0.4s;
}
.service-card:hover { background: var(--surface); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-d); font-size: 3.5rem; font-weight: 300;
  color: var(--border); line-height: 1; position: absolute; top: 1.5rem; right: 2rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,169,110,0.12); }
.service-icon { width: 42px; height: 42px; margin-bottom: 1.8rem; color: var(--gold); }
.service-name { font-family: var(--font-d); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; line-height: 1.2; }
.service-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.8rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: gap 0.3s;
}
.service-link:hover { gap: 0.9rem; }

/* PROCESS */
#process { padding: 8rem 5rem; }
.process-header { max-width: 600px; margin-bottom: 5rem; }
.process-header h2 { font-family: var(--font-d); font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300; color: var(--cream); margin-top: 0.8rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 2.8rem; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--gold), var(--border-sub), transparent);
}
.step { padding: 0 1.5rem 0 0; padding-top: 5.5rem; position: relative; }
.step-num {
  position: absolute; top: 0; left: 0; width: 56px; height: 56px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 300; color: var(--gold);
  background: var(--obsidian);
}
.step-name { font-family: var(--font-d); font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: 0.8rem; }
.step-desc { font-size: 0.82rem; color: var(--muted); }

/* GALLERY */
#gallery { padding: 8rem 5rem; background: var(--deep); }
.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.gallery-intro { max-width: 640px; }
.gallery-intro h2 { font-family: var(--font-d); font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300; color: var(--cream); margin-top: 0.8rem; }
.gallery-intro h2 em { font-style: italic; color: var(--gold); }
.gallery-copy {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 540px;
  margin-top: 1rem;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}
.gallery-filter {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 0.7rem 1rem;
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.gallery-filter:hover,
.gallery-filter.is-active {
  background: var(--surface);
  border-color: rgba(201,169,110,0.3);
  color: var(--gold-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.gallery-card {
  grid-column: span 4;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.32);
}
.gallery-card.is-hidden {
  display: none;
}
.gallery-card-feature {
  grid-column: span 8;
  min-height: 560px;
}
.gallery-media,
.gallery-media img,
.gallery-overlay {
  position: absolute;
  inset: 0;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.04);
  transition: transform 0.8s ease, filter 0.35s ease;
}
.gallery-card:hover .gallery-media img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
}
.gallery-overlay {
  background:
    linear-gradient(to top, rgba(13,12,11,0.78) 0%, rgba(13,12,11,0.42) 28%, rgba(13,12,11,0.14) 56%, transparent 100%),
    linear-gradient(135deg, rgba(201,169,110,0.12), transparent 42%);
  transition: background 0.35s ease;
}
.gallery-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.6rem;
  background: linear-gradient(to top, rgba(13,12,11,0.38), rgba(13,12,11,0.1));
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(240,221,181,0.04);
  transform: translateY(0);
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.gallery-card-feature .gallery-content {
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,12,11,0.44), rgba(13,12,11,0.08));
}
.gallery-card:hover .gallery-overlay {
  background:
    linear-gradient(to top, rgba(13,12,11,0.52) 0%, rgba(13,12,11,0.2) 28%, rgba(13,12,11,0.06) 52%, transparent 100%),
    linear-gradient(135deg, rgba(201,169,110,0.08), transparent 45%);
}
.gallery-card:hover .gallery-content {
  background: linear-gradient(to top, rgba(13,12,11,0.18), rgba(13,12,11,0.02));
  border-top-color: rgba(240,221,181,0.08);
  backdrop-filter: blur(1px);
  transform: translateY(-10px);
}
.gallery-card-feature:hover .gallery-content {
  background: linear-gradient(to top, rgba(13,12,11,0.22), rgba(13,12,11,0.03));
}
.gallery-kicker,
.gallery-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(240,221,181,0.14);
  background: rgba(13,12,11,0.42);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-title {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-weight: 400;
  color: #fffdf9;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
  line-height: 1.05;
}
.gallery-summary {
  font-size: 0.84rem;
  color: rgba(255, 250, 244, 0.86);
  max-width: 44ch;
  margin-top: 0.8rem;
  transition: color 0.35s ease;
}
.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}
.gallery-meta span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.88);
  opacity: 1;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.gallery-card:hover .gallery-summary {
  color: rgba(255, 252, 247, 0.88);
}
.gallery-card:hover .gallery-meta span {
  color: rgba(255, 250, 244, 0.84);
}

/* TESTIMONIAL */
#testimonial {
  padding: 8rem 5rem; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
#testimonial::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%),
              linear-gradient(to bottom, var(--deep) 0%, var(--obsidian) 100%);
}
.testimonial-inner { max-width: 720px; position: relative; z-index: 1; }
.quote-mark { font-family: var(--font-d); font-size: 8rem; font-weight: 300; color: var(--gold); opacity: 0.2; line-height: 0.5; margin-bottom: 1.5rem; }
.testimonial-text { font-family: var(--font-d); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.5; margin-bottom: 2rem; }
.testimonial-author { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.testimonial-location { color: var(--muted); margin-top: 0.3rem; font-size: 0.65rem; }

/* CTA */
#cta {
  padding: 8rem 5rem; background: var(--deep); border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
}
#cta h2 { font-family: var(--font-d); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300; color: var(--cream); }
#cta h2 em { font-style: italic; color: var(--gold); }
#cta p { font-size: 0.9rem; color: var(--muted); max-width: 500px; margin-top: 1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.cta-note { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-align: center; }

/* CONTACT */
#contact {
  padding: 8rem 5rem;
  background: var(--deep);
  text-align: center;
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}
.contact-inner h2 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.contact-inner h2 em {
  font-style: italic;
  color: var(--gold);
}
.contact-inner > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 3rem;
}
.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.contact-inner .cta-actions {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.contact-inner .cta-note {
  width: 100%;
  margin-top: 0.2rem;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}
.contact-item {
  text-align: center;
}
.contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.contact-item a,
.contact-item p {
  font-size: 0.9rem;
  color: var(--cream);
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--gold-light);
}

/* FOOTER */
footer {
  padding: 3.5rem 5rem; border-top: 1px solid var(--border-sub);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-d); font-size: 1.2rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.65rem; color: var(--muted); }
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  width: 100%;
  margin-bottom: 3rem;
}
.footer-section h4 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-section p {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.6rem;
}
.footer-section ul li a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-sub);
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 180;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: rgba(13, 12, 11, 0.82);
  backdrop-filter: blur(12px);
  color: var(--gold-light);
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(201, 169, 110, 0.16);
  border-color: rgba(201, 169, 110, 0.5);
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes rotate { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.24s; }
.reveal-delay-3 { transition-delay:.36s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2.5rem; }
  nav.scrolled { padding: 1rem 2.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 9rem 2.5rem 5rem; }
  #about { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 2.5rem; }
  #services { padding: 5rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  #process { padding: 5rem 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .step { padding-top: 5rem; }
  #gallery { padding: 5rem 2.5rem; }
  .gallery-head { grid-template-columns: 1fr; }
  .gallery-filters { justify-content: flex-start; }
  .gallery-card,
  .gallery-card-feature { grid-column: span 6; min-height: 420px; }
  #testimonial { padding: 5rem 2.5rem; }
  #cta { grid-template-columns: 1fr; padding: 5rem 2.5rem; }
  #contact { padding: 5rem 2.5rem; }
  .cta-actions { align-items: flex-start; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-buttons { flex-direction: column; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 3rem 2.5rem; }
  .footer-content { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card-feature { grid-column: span 1; min-height: 360px; }
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(13,12,11,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--cream); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 2rem; right: 2.5rem; font-size: 1.8rem; color: var(--muted); cursor: pointer; background: none; border: none; }

/* ============ ESTIMATOR & VISUALIZER PAGES ============ */
.page-container {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 5rem;
  background: var(--deep);
}

.page-header h1 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.tool-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.tool-main {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
}

.tool-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--obsidian);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

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

.slider-container {
  margin-bottom: 1.5rem;
}

.slider {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--obsidian);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.checkbox-item:hover {
  background: var(--panel);
  border-color: var(--gold);
}

.checkbox-item input {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.checkbox-label {
  flex: 1;
  font-size: 0.85rem;
  color: var(--cream);
  cursor: pointer;
}

.checkbox-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 400;
}

.summary-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.summary-label {
  color: var(--muted);
}

.summary-value {
  color: var(--cream);
  font-weight: 400;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.estimator-customer-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.estimator-section-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
}

.estimator-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote-success-message {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(201,169,110,0.28);
  background: linear-gradient(180deg, rgba(201,169,110,0.12), rgba(42,39,34,0.7));
}

.quote-success-message strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-light);
}

.quote-success-message p {
  font-size: 0.82rem;
  color: var(--off-white);
  line-height: 1.7;
}

.estimator-note-card {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--obsidian);
}

.estimator-note-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

.btn-secondary {
  flex: 1;
  padding: 0.8rem 1.5rem;
  background: var(--obsidian);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
  background: var(--panel);
  border-color: var(--gold);
}

.btn-gold {
  flex: 1;
}

/* ============ 3D VISUALIZER ============ */
.visualizer-container {
  display: grid;
  grid-template-columns: minmax(0, 2.45fr) minmax(320px, 0.95fr);
  gap: 2.25rem;
  align-items: start;
}

.visualizer-page-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(201,169,110,0.12), transparent 40%),
    linear-gradient(180deg, rgba(24,22,19,0.96), rgba(13,12,11,0.98));
  border-bottom: 1px solid var(--border-sub);
  padding: 4.5rem 5rem 3.5rem;
}

.visualizer-page-header .section-tag,
.visualizer-page-header h1,
.visualizer-page-header p,
.visualizer-page-header .visualizer-header-stats {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.visualizer-page-header h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.visualizer-page-header p {
  max-width: 720px;
}

.visualizer-page-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.visualizer-header-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.visualizer-header-stat {
  min-width: 180px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(42, 39, 34, 0.48);
  text-align: left;
}

.visualizer-header-stat strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.visualizer-header-stat span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.canvas-wrapper {
  background:
    radial-gradient(circle at top, rgba(201,169,110,0.08), transparent 32%),
    linear-gradient(180deg, #161310 0%, #0d0c0b 100%);
  border: 1px solid var(--border);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.canvas-wrapper canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.visualizer-container > .canvas-wrapper,
.visualizer-container > .tool-sidebar {
  min-width: 0;
}

.visualizer-container > .tool-sidebar {
  top: 110px;
}

.canvas-wrapper::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(201,169,110,0.08);
  pointer-events: none;
}

.canvas-hud {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.canvas-pill {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(240,221,181,0.12);
  background: rgba(13,12,11,0.56);
  backdrop-filter: blur(10px);
  color: var(--gold-pale);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.canvas-pill-subtle {
  color: var(--off-white);
}

.camera-modes {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.camera-button {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(240,221,181,0.12);
  background: rgba(13,12,11,0.56);
  backdrop-filter: blur(10px);
  color: var(--off-white);
  font: inherit;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.camera-button:hover,
.camera-button.is-active {
  background: rgba(42,39,34,0.84);
  border-color: rgba(201,169,110,0.28);
  color: var(--gold-light);
}

.canvas-placeholder {
  text-align: center;
  color: var(--muted);
}

.canvas-placeholder svg {
  width: 200px;
  height: 200px;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.canvas-placeholder p {
  font-size: 0.9rem;
}

.visualizer-sidebar-head {
  margin-bottom: 2rem;
}

.visualizer-sidebar-head h2 {
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--cream);
}

.visualizer-sidebar-head p {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.visualizer-section-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(42,39,34,0.58), rgba(13,12,11,0.36));
}

.visualizer-section-card + .visualizer-section-card,
.visualizer-actions,
.visualizer-help {
  margin-top: 1rem;
}

.advanced-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  background: rgba(13,12,11,0.46);
  color: var(--off-white);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.advanced-toggle:hover,
.advanced-toggle[aria-expanded="true"] {
  background: rgba(42,39,34,0.72);
  border-color: rgba(201,169,110,0.32);
  color: var(--gold-light);
}

.advanced-toggle-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.visualizer-finish,
.visualizer-advanced {
  display: grid;
  gap: 1rem;
}

.visualizer-section-label {
  margin-bottom: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.visualizer-section-note {
  margin-top: 0.9rem;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.7;
}

.visualizer-presets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.preset-button {
  padding: 0.9rem 0.8rem;
  border: 1px solid var(--border);
  background: var(--obsidian);
  color: var(--cream);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  min-height: 52px;
  text-align: left;
  display: flex;
  align-items: center;
}

.preset-button:hover,
.preset-button.is-active {
  background: var(--panel);
  border-color: rgba(201,169,110,0.32);
  color: var(--gold-light);
}

.visualizer-help {
  padding: 1.5rem;
  background: var(--obsidian);
  border: 1px solid var(--border);
}

.visualizer-help-title {
  margin-bottom: 0.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.visualizer-help p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

.visualizer-actions {
  padding: 1.1rem;
  border: 1px solid var(--border);
  background: rgba(13,12,11,0.42);
}

.visualizer-container .action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.visualizer-estimate-button {
  grid-column: 1 / -1;
  background: var(--gold-light);
  color: var(--obsidian);
}

.visualizer-room-section {
  margin-top: 0;
  padding-top: 1.35rem;
}

.visualizer-advanced .visualizer-room-section {
  padding-top: 1.1rem;
}

.tabs {
  display: flex;
  gap: 1px;
  margin-bottom: 2rem;
  background: var(--border);
}

.tab-button {
  flex: 1;
  padding: 1rem;
  background: var(--obsidian);
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tab-button.active {
  background: var(--surface);
  color: var(--gold);
}

.tab-button:hover {
  background: var(--panel);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media (max-width: 1200px) {
  .tool-grid,
  .visualizer-container {
    grid-template-columns: 1fr;
  }
  
  .tool-sidebar {
    position: static;
  }
  
  .tool-container,
  .page-header {
    padding: 0 2rem;
  }

  .visualizer-presets {
    grid-template-columns: 1fr 1fr;
  }

  .visualizer-page-header {
    padding: 4rem 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .tool-container,
  .page-header {
    padding: 0 1rem;
  }
  
  .tool-main,
  .tool-sidebar {
    padding: 1.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn-secondary,
  .btn-gold {
    width: 100%;
  }

  .visualizer-presets {
    grid-template-columns: 1fr;
  }

  .visualizer-page-header {
    padding: 3.5rem 1rem 2.5rem;
  }

  .visualizer-page-header h1,
  .visualizer-page-header p {
    max-width: none;
  }

  .canvas-hud {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .camera-modes {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    justify-content: flex-start;
  }

  .visualizer-container .action-buttons {
    grid-template-columns: 1fr;
  }
}
