/* ============================================
   VARIABLES — NATURAL STONE ATELIER THEME
============================================ */
:root {
  --slate: #2C2825;
  --slate-deep: #1A1816;
  --slate-soft: #3D3733;
  --slate-muted: #5C5550;
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-pale: #E8D4A0;
  --champagne: #C9A961;
  --marble: #F5F1EA;
  --marble-soft: #FAF7F2;
  --cream: #E8E0D2;
  --stone: #8B7355;
  --ink: #1A1816;
  --white: #ffffff;

  --gradient-gold: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #C9A961 100%);
  --gradient-stone: linear-gradient(135deg, #2C2825 0%, #3D3733 100%);
  --gradient-marble: linear-gradient(135deg, #F5F1EA 0%, #E8E0D2 100%);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  --shadow-soft: 0 4px 20px rgba(26, 24, 22, 0.08);
  --shadow-md: 0 12px 40px rgba(26, 24, 22, 0.15);
  --shadow-lg: 0 24px 60px rgba(26, 24, 22, 0.2);
  --shadow-gold: 0 10px 40px rgba(184, 134, 11, 0.3);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--marble-soft);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ============================================
   STONE BACKGROUND
============================================ */
.stone-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.stone-vein {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.05), transparent);
  height: 2px;
  animation: vein-drift 40s linear infinite;
}

.vein-1 {
  width: 200%;
  top: 20%;
  left: -50%;
  opacity: 0.6;
}

.vein-2 {
  width: 200%;
  top: 50%;
  left: -50%;
  opacity: 0.4;
  animation-delay: -15s;
}

.vein-3 {
  width: 200%;
  top: 80%;
  left: -50%;
  opacity: 0.5;
  animation-delay: -30s;
}

@keyframes vein-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.stone-grain {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  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.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; transition: color 0.3s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   NAVIGATION
============================================ */
.stone-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.stone-nav.scrolled {
  padding: 12px 0;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
  box-shadow: 0 4px 30px rgba(26, 24, 22, 0.05);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stone-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px; height: 44px;
  background: var(--slate);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  border: 2px solid var(--gold);
}

.mark-inner {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--slate-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 24px;
  background: var(--gradient-gold);
  color: var(--slate-deep);
  border-radius: 2px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cta-dot {
  width: 8px; height: 8px;
  background: var(--slate);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(44, 40, 37, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(44, 40, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 40, 37, 0); }
}

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.burger span {
  width: 24px; height: 2px;
  background: var(--slate);
  transition: 0.3s;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--slate-deep);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(184, 134, 11, 0.4);
}

.btn-accent {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-accent { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--slate);
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--gold-light);
}

.btn-icon { font-size: 1.1rem; }
.full-width { width: 100%; justify-content: center; }

/* ============================================
   HERO
============================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: var(--slate);
  color: var(--gold-light);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
}

.badge-ornament { color: var(--gold-light); }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  color: var(--slate);
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--slate-soft);
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-soft);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trust-icon { color: var(--gold); font-size: 14px; }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 560px;
}

.visual-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  padding: 50px 40px;
  background: var(--gradient-stone);
  color: var(--gold-light);
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.vm-ornament {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.vm-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 20px;
}

.vm-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--marble);
}

.vm-title em {
  font-style: italic;
  color: var(--gold-light);
}

.vm-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

.vm-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vm-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
}

.vm-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.float-card {
  position: absolute;
  padding: 16px 20px;
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  animation: cardFloat 8s ease-in-out infinite;
}

.fc-icon {
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 50%;
}

.fc-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-muted);
  font-weight: 700;
  margin-bottom: 2px;
}

.fc-value {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
}

.fc-1 { top: 5%; right: 0; animation-delay: 0s; }
.fc-2 { bottom: 20%; left: -10px; animation-delay: -3s; }
.fc-3 { bottom: 5%; right: 10%; animation-delay: -6s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   STATS STRIP
============================================ */
.stats-strip {
  padding: 80px 0;
  background: var(--slate);
  color: var(--marble);
  position: relative;
  z-index: 2;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '◆';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.5;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  display: inline;
  color: var(--gold-light);
}

.stat-plus {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-pale);
}

.stat-label {
  margin-top: 12px;
  font-size: 11px;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ============================================
   SECTION HEADERS
============================================ */
section { padding: 100px 0; position: relative; z-index: 2; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  position: relative;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.kicker-ornament { color: var(--gold); }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--slate);
}

.section-head h2::after {
  content: '◆';
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 20px;
}

.section-head p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--slate-soft);
  font-style: italic;
}

/* ============================================
   SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  background: var(--slate);
  color: var(--marble);
  border-color: var(--gold);
}

.sc-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--gradient-gold);
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  z-index: 2;
}

.sc-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.vis-granite {
  background:
    radial-gradient(circle at 30% 40%, #8B7355 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, #2C2825 0%, transparent 40%),
    linear-gradient(135deg, #3D3733, #8B7355);
}

.vis-quartz {
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.3) 0%, transparent 30%),
    radial-gradient(circle at 75% 70%, rgba(184, 134, 11, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #F5F1EA, #E8E0D2);
}

.vis-marble {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 115, 85, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(44, 40, 37, 0.1) 0%, transparent 40%),
    linear-gradient(135deg, #FAF7F2, #F5F1EA);
}

.vis-quartzite {
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(184, 134, 11, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #E8E0D2, #C9A961);
}

.vis-solid {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #E8E0D2, #F5F1EA);
}

.vis-laminate {
  background:
    repeating-linear-gradient(45deg, rgba(139, 115, 85, 0.05) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, #E8E0D2, #FAF7F2);
}

.sc-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sc-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card.featured .sc-icon { color: var(--gold-light); }

.sc-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--slate);
}

.service-card.featured .sc-body h3 { color: var(--marble); }

.sc-body > p {
  color: var(--slate-soft);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.service-card.featured .sc-body > p { color: rgba(245, 241, 234, 0.8); }

.sc-features {
  margin-bottom: 24px;
}

.sc-features li {
  padding: 5px 0 5px 24px;
  font-size: 0.9rem;
  color: var(--slate-soft);
  position: relative;
}

.service-card.featured .sc-features li { color: rgba(245, 241, 234, 0.8); }

.sc-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 9px;
}

.sc-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  transition: all 0.3s;
}

.service-card.featured .sc-cta { color: var(--gold-light); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card:hover .sc-cta {
  color: var(--slate);
  background: var(--gold);
  padding: 12px;
  margin: 0 -28px -28px;
}

.service-card.featured:hover .sc-cta {
  color: var(--slate);
}

/* ============================================
   PROCESS TIMELINE
============================================ */
.process { background: var(--cream); }

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--champagne));
  opacity: 0.4;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-marker {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--slate);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
}

.step-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}

.step-card {
  flex: 1;
  padding: 28px 32px;
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.15);
  transition: all 0.3s;
  position: relative;
}

.step-ornament {
  position: absolute;
  top: -15px; left: 30px;
  color: var(--gold);
  font-size: 1.2rem;
  background: var(--cream);
  padding: 0 8px;
}

.step-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--slate);
}

.step-card p {
  color: var(--slate-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-step:hover .step-marker {
  background: var(--gradient-gold);
  transform: scale(1.05) rotate(5deg);
}

.process-step:hover .step-marker .step-num { color: var(--slate); }

.process-step:hover .step-card {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

/* ============================================
   GALLERY MOSAIC
============================================ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.15);
  transition: all 0.4s;
  cursor: pointer;
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 2;
}

.mosaic-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.6s;
}

.mv-granite {
  background:
    radial-gradient(circle at 30% 40%, #8B7355 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, #2C2825 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, #3D3733 0%, transparent 60%),
    linear-gradient(135deg, #1A1816, #8B7355);
}

.mv-quartz {
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.4) 0%, transparent 30%),
    radial-gradient(circle at 75% 70%, rgba(184, 134, 11, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #F5F1EA, #E8E0D2);
}

.mv-marble {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 115, 85, 0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(44, 40, 37, 0.1) 0%, transparent 40%),
    linear-gradient(135deg, #FAF7F2, #F5F1EA);
}

.mv-quartzite {
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(184, 134, 11, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #E8E0D2, #C9A961);
}

.mv-solid {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 60%),
    linear-gradient(135deg, #3D3733, #5C5550);
}

.mv-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.03) 20px 22px);
}

.mv-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  background: var(--slate);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--gold);
  z-index: 2;
}

.mosaic-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.95) 0%, transparent 100%);
  color: white;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s;
}

.mosaic-info h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.mosaic-info p {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.mosaic-item:hover .mosaic-visual { transform: scale(1.05); }
.mosaic-item:hover .mosaic-info { transform: translateY(0); opacity: 1; }
.mosaic-item:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }

/* ============================================
   JOURNAL / ARTICLE
============================================ */
.journal {
  background: var(--marble);
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.journal-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.jh-ornament {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.jh-pill {
  display: inline-block;
  padding: 6px 18px;
  background: var(--slate);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.journal-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--slate);
}

.jh-byline {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--slate-muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.byline-sep { color: var(--gold); }

.journal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-soft);
}

.journal-lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-style: italic;
}

.pull-quote {
  margin: 40px 0;
  padding: 36px 40px;
  background: var(--slate);
  color: var(--marble);
  text-align: center;
  position: relative;
  border: 1px solid var(--gold);
}

.pq-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--marble);
  position: relative;
}

.journal-content h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 56px 0 20px;
  color: var(--slate);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 16px;
}

.journal-content h2::after {
  content: '◆';
  position: absolute;
  bottom: 0; left: 0;
  color: var(--gold);
  font-size: 1rem;
}

.journal-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--slate);
}

.journal-content p { margin-bottom: 20px; }

.journal-content ul, .journal-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}

.journal-content ul li, .journal-content ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.journal-content ul li::marker { color: var(--gold); }

.journal-content a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184, 134, 11, 0.4);
  text-underline-offset: 4px;
  transition: all 0.25s;
}

.journal-content a:hover {
  color: var(--slate);
  text-decoration-color: var(--slate);
}

/* Callout */
.callout-box {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--gold);
  margin: 32px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cb-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gradient-gold);
  color: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.cb-content strong {
  display: block;
  margin-bottom: 8px;
  color: var(--slate);
  font-family: var(--serif);
  font-size: 1.15rem;
}

/* Tables */
.material-table, .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.2);
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.material-table thead, .price-table thead {
  background: var(--slate);
  color: var(--gold-light);
}

.material-table th, .price-table th {
  padding: 16px 18px;
  text-align: left;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.material-table td, .price-table td {
  padding: 14px 18px;
  border-top: 1px solid rgba(184, 134, 11, 0.1);
  color: var(--slate-soft);
}

.material-table tbody tr:hover, .price-table tbody tr:hover {
  background: var(--cream);
}

.stats-grid-article {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.stat-box {
  padding: 28px;
  background: var(--slate);
  color: var(--marble);
  border: 1px solid var(--gold);
  text-align: center;
  transition: all 0.3s;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sb-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.sb-lbl {
  font-size: 11px;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.quote-box {
  margin: 48px 0;
  padding: 40px;
  background: var(--cream);
  border: 1px solid rgba(184, 134, 11, 0.2);
  text-align: center;
  position: relative;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -10px; left: 30px;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.quote-box blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--slate);
}

.quote-box cite {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.tip-box {
  padding: 24px 28px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--gold);
}

.tip-content strong {
  display: block;
  color: var(--slate);
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.feature-card {
  padding: 36px;
  background: var(--slate);
  color: var(--marble);
  border: 1px solid var(--gold);
  margin: 40px 0;
}

.feature-card h4 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.feat-item {
  padding: 12px 16px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  font-size: 0.95rem;
  color: var(--gold-pale);
}

.journal-cta {
  margin-top: 60px;
  padding: 48px;
  background: var(--gradient-gold);
  text-align: center;
  color: var(--slate);
  box-shadow: var(--shadow-gold);
  position: relative;
  border: 2px solid var(--gold);
}

.cta-ornament {
  font-size: 1.8rem;
  color: var(--slate);
  margin-bottom: 16px;
}

.journal-cta h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 12px;
  position: relative;
  color: var(--slate);
}

.journal-cta p {
  color: var(--slate-soft);
  margin-bottom: 28px;
  font-size: 1.05rem;
  font-family: var(--serif);
  font-style: italic;
  position: relative;
}

.journal-cta .btn {
  background: var(--slate);
  color: var(--gold-light);
  position: relative;
  border: 1px solid var(--slate);
}

.journal-cta .btn:hover {
  background: var(--slate-deep);
  border-color: var(--slate-deep);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.15);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.faq-item:hover { border-color: var(--gold); }

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--slate);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.faq-item[open] .faq-toggle {
  background: var(--gradient-gold);
  color: var(--slate);
  transform: rotate(45deg);
  border-color: transparent;
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--slate-soft);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--cream);
  position: relative;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  padding: 36px 32px;
  background: var(--marble);
  border: 1px solid rgba(184, 134, 11, 0.15);
  position: relative;
  transition: all 0.4s;
  box-shadow: var(--shadow-soft);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.2;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate-soft);
  margin-bottom: 28px;
}

.testi-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.sig-mark {
  width: 50px; height: 50px;
  background: var(--gradient-gold);
  color: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.sig-name {
  font-weight: 700;
  color: var(--slate);
  font-size: 0.95rem;
}

.sig-loc {
  font-size: 0.82rem;
  color: var(--slate-muted);
  margin-top: 2px;
}

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--marble); }

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
}

.contact-info {
  padding: 48px 40px;
  background: var(--slate);
  color: var(--marble);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 134, 11, 0.15), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.1), transparent 50%);
  pointer-events: none;
}

.ci-ornament {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 32px;
  position: relative;
  color: var(--gold-light);
}

.info-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
  position: relative;
}

.info-block:last-of-type { border-bottom: none; }

.info-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--marble);
  display: block;
  font-weight: 500;
}

.info-value:hover { color: var(--gold-light); }

.hours-list {
  margin-top: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(245, 241, 234, 0.9);
  border-bottom: 1px dotted rgba(184, 134, 11, 0.15);
}

.hours-list li:last-child { border-bottom: none; }

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.contact-buttons .btn-primary {
  background: var(--gradient-gold);
  color: var(--slate);
}

.contact-buttons .btn-outline {
  color: var(--gold-light);
  border-color: var(--gold);
}

.contact-buttons .btn-outline:hover {
  background: var(--gold);
  color: var(--slate);
}

.contact-form {
  padding: 48px 40px;
  background: var(--marble);
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 24px;
  color: var(--slate);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--slate);
  transition: all 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--marble);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.field textarea { resize: vertical; min-height: 110px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--slate-deep);
  color: var(--marble);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
  border-top: 3px solid var(--gold);
}

.footer-ornament {
  text-align: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer .brand-name { color: var(--marble); }
.footer .brand-tag { color: var(--gold); }
.footer .brand-mark {
  background: var(--gradient-gold);
  border-color: var(--gold-light);
}
.footer .mark-inner {
  background: var(--slate);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-col p {
  color: rgba(245, 241, 234, 0.7);
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 340px;
  font-style: italic;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--slate);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a,
.footer-col ul li {
  color: rgba(245, 241, 234, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  text-align: center;
  position: relative;
}

.fb-ornament {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-bottom p {
  color: rgba(245, 241, 234, 0.5);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--marble);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    box-shadow: var(--shadow-md);
  }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat-card:not(:last-child)::after { display: none; }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic-large, .mosaic-wide {
    grid-column: span 2;
  }

  .testi-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .stats-grid-article { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }

  .hero { padding: 120px 0 80px; }
  .hero-shell { padding: 0 20px; }

  .hero-title { font-size: 2rem; }
  .hero-lead { font-size: 1.05rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .mosaic-large, .mosaic-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .stats-grid { grid-template-columns: 1fr; }

  .process-step {
    flex-direction: column;
    gap: 16px;
  }
  .timeline-line { display: none; }

  .contact-info, .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .float-card { display: none; }
  .visual-main { width: 280px; padding: 40px 30px; }

  .pull-quote { padding: 28px 20px; }
  .pull-quote p { font-size: 1.1rem; }
  .journal-cta { padding: 32px 24px; }
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--slate);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--marble); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 10px;
}