:root {
  --slv-dark: #111111;
  --slv-deep: #0a0a0a;
  --slv-light: #F7F4EE;
  --slv-light-alt: #EDE9E0;
  --slv-text: #1A1814;
  --slv-muted: rgba(26,24,20,0.62);
  --slv-gold: #C9A84C;
  --slv-white: #F5F0E8;
  --slv-border: rgba(201,168,76,0.18);
  --slv-shadow: 0 2px 24px rgba(26,24,20,0.06);
  --slv-max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.slv-theme {
  margin: 0;
  background: var(--slv-dark);
  color: var(--slv-white);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.slv-container { width: min(calc(100% - 48px), var(--slv-max)); margin: 0 auto; }
.site-main { min-height: 60vh; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(18,18,18,.92);
  backdrop-filter: blur(16px);
  border-color: rgba(201,168,76,.15);
}
.slv-header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.slv-brandmark, .site-branding .custom-logo-link { display: flex; align-items: center; gap: 12px; }
.site-branding .custom-logo { max-height: 44px; width: auto; }
.slv-brandmark-icon {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,.35); color: var(--slv-gold); font-size: 12px; letter-spacing: .28em;
}
.slv-brandmark-text { display: flex; flex-direction: column; line-height: 1; }
.slv-brandmark-top { color: var(--slv-gold); font-size: 11px; letter-spacing: .35em; text-transform: uppercase; }
.slv-brandmark-bottom { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; }
.site-navigation { display: flex; align-items: center; gap: 28px; }
.slv-nav, .slv-footer-nav { list-style: none; display: flex; gap: 24px; padding: 0; margin: 0; }
.slv-nav li a, .slv-footer-nav li a { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,240,232,.78); }
.slv-button {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px;
  background: var(--slv-gold); color: var(--slv-dark); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700;
}
.slv-button-outline { background: transparent; color: var(--slv-gold); border: 1px solid var(--slv-gold); }
.slv-button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.slv-menu-toggle { display: none; background: none; border: 0; padding: 0; width: 40px; height: 40px; }
.slv-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--slv-gold); margin: 4px auto; }
.slv-hero {
  position: relative; min-height: 72vh; display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,168,76,.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(201,168,76,.14), transparent 24%),
    linear-gradient(180deg, rgba(10,10,10,.35), rgba(10,10,10,.75)),
    linear-gradient(135deg, #181818 0%, #111111 38%, #232323 100%);
}
.slv-hero-home { min-height: 100vh; }
.slv-hero-services, .slv-hero-portfolio, .slv-hero-about, .slv-hero-contact {
  min-height: 60vh;
}
.slv-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,.55), transparent 20%),
    linear-gradient(to top, rgba(8,8,8,.9), transparent 32%);
}
.slv-hero-home::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 35%;
  background: linear-gradient(to top, rgba(8,8,8,.92), rgba(8,8,8,.35), transparent);
}
.slv-hero-content { position: relative; z-index: 2; padding: 140px 0 80px; max-width: 900px; }
.slv-hero-bottom { align-self: end; }
.slv-eyebrow { color: var(--slv-gold); text-transform: uppercase; letter-spacing: .35em; font-size: 12px; margin: 0 0 18px; }
.slv-hero h1, .slv-section-heading h2, .slv-card h3, .slv-portfolio-meta h3, .slv-testimonial footer strong, .slv-content-area h1, .slv-content-area h2, .slv-content-area h3, .slv-process-step h3, .slv-two-col h2 {
  font-family: 'Cormorant Garamond', serif;
}
.slv-hero h1 { font-size: clamp(54px, 8vw, 104px); line-height: .92; margin: 0 0 24px; }
.slv-hero-lead, .slv-section-lead { color: rgba(245,240,232,.72); max-width: 700px; font-size: 18px; }
.slv-stats-bar { background: var(--slv-deep); }
.slv-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.slv-stat-item { padding: 34px 20px; border-left: 1px solid rgba(255,255,255,.05); }
.slv-stat-item:first-child { border-left: 0; }
.slv-stat-item strong { display: block; font-size: 34px; color: var(--slv-gold); margin-bottom: 4px; }
.slv-stat-item span { color: rgba(245,240,232,.65); font-size: 14px; }
.slv-section { padding: 100px 0; }
.slv-section-light { background: var(--slv-light); color: var(--slv-text); }
.slv-section-light-alt { background: var(--slv-light-alt); color: var(--slv-text); }
.slv-section-dark { background: var(--slv-dark); color: var(--slv-white); }
.text-light .slv-section-lead { color: rgba(245,240,232,.65); }
.slv-section-heading { max-width: 860px; margin-bottom: 42px; }
.slv-section-heading h2 { font-size: clamp(38px, 5vw, 64px); line-height: 1; margin: 0 0 18px; }
.slv-cards-3, .slv-testimonial-grid, .slv-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.slv-card, .slv-testimonial, .slv-contact-card {
  background: #fff; border: 1px solid var(--slv-border); box-shadow: var(--slv-shadow); color: var(--slv-text);
  padding: 32px;
}
.slv-card-tier, .slv-card-tag { display: inline-block; color: var(--slv-gold); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; }
.slv-card h3 { font-size: 36px; line-height: 1; margin: 18px 0 10px; }
.slv-portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.slv-portfolio-grid-large { grid-template-columns: repeat(3, minmax(0,1fr)); }
.slv-portfolio-card {
  position: relative; min-height: 460px; overflow: hidden;
  border: 1px solid rgba(201,168,76,.16);
  background: linear-gradient(135deg, #807258 0%, #3b3124 55%, #191919 100%);
}
.slv-portfolio-fill { position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(245,240,232,.10), transparent 35%), linear-gradient(to top, rgba(0,0,0,.62), transparent 42%); }
.slv-portfolio-1 { background: linear-gradient(135deg, #876648, #2a1d17 60%, #111); }
.slv-portfolio-2 { background: linear-gradient(135deg, #5e4c53, #20171d 60%, #111); }
.slv-portfolio-3 { background: linear-gradient(135deg, #7a684e, #2f241c 60%, #111); }
.slv-portfolio-4 { background: linear-gradient(135deg, #4d555d, #171c22 60%, #111); }
.slv-portfolio-meta { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.slv-portfolio-meta h3 { font-size: 34px; margin: 0 0 8px; }
.slv-portfolio-meta p { margin: 0; color: rgba(245,240,232,.74); }
.slv-testimonial p { font-size: 22px; line-height: 1.5; margin: 0 0 28px; }
.slv-testimonial footer { display: flex; flex-direction: column; gap: 4px; }
.slv-testimonial footer span { color: var(--slv-muted); }
.slv-cta-band { background: var(--slv-deep); color: var(--slv-white); padding: 72px 0; border-top: 1px solid rgba(201,168,76,.16); }
.slv-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer { background: var(--slv-dark); color: var(--slv-white); border-top: 1px solid rgba(201,168,76,.2); }
.slv-footer-topline { height: 1px; background: linear-gradient(90deg, transparent, var(--slv-gold), transparent); }
.slv-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 70px 0 44px; }
.site-branding-footer .slv-brandmark-bottom { font-size: 24px; }
.slv-footer-copy, .slv-contact-list li, .slv-contact-list a, .slv-footer-bottom, .slv-footer-legal a { color: rgba(245,240,232,.52); }
.slv-footer-grid h4 { color: var(--slv-gold); letter-spacing: .3em; text-transform: uppercase; font-size: 12px; margin: 0 0 18px; }
.slv-footer-nav { display: flex; flex-direction: column; gap: 12px; }
.slv-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.slv-footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; border-top: 1px solid rgba(201,168,76,.1); padding: 26px 0 34px; font-size: 12px; }
.slv-footer-legal { display: flex; gap: 18px; }
.slv-content-area { max-width: 900px; }
.slv-content-area h1 { font-size: 52px; }
.slv-content-area h2 { font-size: 38px; margin-top: 1.5em; }
.slv-content-area p { color: var(--slv-muted); }
.slv-process-step { background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.16); padding: 28px; }
.slv-process-step span { color: var(--slv-gold); display: inline-block; margin-bottom: 14px; letter-spacing: .2em; }
.slv-process-step h3 { margin: 0; font-size: 32px; }
.slv-two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: start; }
.slv-values-list { display: grid; gap: 14px; }
.slv-value-item { background: #fff; border: 1px solid var(--slv-border); padding: 18px 22px; box-shadow: var(--slv-shadow); }
.slv-team-avatar { width: 84px; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(135deg, rgba(201,168,76,.42), rgba(201,168,76,.08)); margin-bottom: 18px; }
.slv-contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.slv-form-placeholder { margin-top: 18px; padding: 16px; background: var(--slv-light-alt); border: 1px dashed rgba(26,24,20,.2); color: var(--slv-muted); }
.slv-contact-stack li strong { color: var(--slv-text); }
@media (max-width: 1024px) {
  .site-navigation { position: fixed; inset: 80px 0 auto 0; background: rgba(18,18,18,.97); backdrop-filter: blur(20px); border-top: 1px solid rgba(201,168,76,.15); padding: 24px; display: none; flex-direction: column; align-items: stretch; }
  .site-navigation.is-open { display: flex; }
  .slv-menu-toggle { display: inline-block; }
  .slv-nav { flex-direction: column; gap: 12px; }
  .slv-button-outline { text-align: center; }
  .slv-stats-grid, .slv-cards-3, .slv-testimonial-grid, .slv-process-grid, .slv-footer-grid, .slv-contact-grid, .slv-two-col, .slv-portfolio-grid-large { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .slv-container { width: min(calc(100% - 32px), var(--slv-max)); }
  .slv-hero-content { padding: 130px 0 64px; }
  .slv-hero h1 { font-size: clamp(42px, 13vw, 66px); }
  .slv-stats-grid, .slv-cards-3, .slv-testimonial-grid, .slv-process-grid, .slv-footer-grid, .slv-contact-grid, .slv-two-col, .slv-portfolio-grid, .slv-portfolio-grid-large { grid-template-columns: 1fr; }
  .slv-stat-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.05); }
  .slv-stat-item:first-child { border-top: 0; }
  .slv-cta-inner, .slv-footer-bottom { flex-direction: column; align-items: flex-start; }
  .slv-brandmark-bottom { font-size: 16px; }
}

.slv-hero h1 span { color: var(--slv-gold); }
.slv-service-split, .slv-feature-project { display:grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items:center; }
.slv-service-split.is-reversed .slv-service-media { order:2; }
.slv-service-split.is-reversed .slv-service-copy { order:1; }
.slv-service-media, .slv-feature-visual {
  position: relative; min-height: 560px; overflow:hidden; border:1px solid var(--slv-border);
  background: linear-gradient(135deg, #7a684e, #2a1f18 55%, #111 100%);
}
.slv-service-media-01 { background: linear-gradient(135deg, #876648, #2a1d17 58%, #111); }
.slv-service-media-02 { background: linear-gradient(135deg, #5e4c53, #20171d 58%, #111); }
.slv-service-media-03, .slv-feature-visual { background: linear-gradient(135deg, #4d555d, #171c22 58%, #111); }
.slv-service-media-fill, .slv-feature-visual::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top left, rgba(245,240,232,.18), transparent 32%), linear-gradient(to top, rgba(0,0,0,.68), transparent 45%);
}
.slv-service-media-badge { position:absolute; top:24px; left:24px; z-index:2; color:var(--slv-gold); letter-spacing:.3em; font-size:12px; }
.slv-service-copy h2, .slv-feature-copy h2 { font-size: clamp(40px, 5vw, 64px); line-height: .96; margin: 0 0 18px; font-family: 'Cormorant Garamond', serif; }
.slv-inline-meta { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:18px; }
.slv-inline-meta span, .slv-highlight-note, .slv-filter-chip { display:inline-flex; align-items:center; padding:10px 14px; border:1px solid var(--slv-border); background:#fff; color:var(--slv-text); font-size:12px; letter-spacing:.18em; text-transform:uppercase; }
.slv-service-lead { color: var(--slv-muted); font-size: 18px; margin-bottom: 20px; }
.slv-check-list { list-style:none; padding:0; margin:0 0 20px; display:grid; gap:10px; }
.slv-check-list li { position:relative; padding-left:28px; color:var(--slv-text); }
.slv-check-list li::before { content:'+'; position:absolute; left:0; top:0; color:var(--slv-gold); font-weight:700; }
.slv-ideal { border-top:1px solid var(--slv-border); padding-top:18px; color:var(--slv-muted); }
.slv-faq-list { display:grid; gap:16px; }
.slv-faq-item, .slv-value-card, .slv-timeline-item { background:#fff; border:1px solid var(--slv-border); box-shadow: var(--slv-shadow); padding:24px; color:var(--slv-text); }
.slv-faq-item h3, .slv-value-card h3 { margin:0 0 10px; font-size:28px; font-family: 'Cormorant Garamond', serif; }
.slv-value-grid { display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.slv-timeline { display:grid; gap:16px; }
.slv-timeline-item span { display:inline-block; margin-bottom:12px; color:var(--slv-gold); letter-spacing:.25em; font-size:12px; }
.slv-card-team { background: rgba(255,255,255,.06); color: var(--slv-white); border-color: rgba(201,168,76,.16); box-shadow: none; }
.slv-card-team p { color: rgba(245,240,232,.72); }
.slv-card-team .slv-card-tag { color: var(--slv-gold); }
.slv-filter-row { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:24px; }
.slv-filter-chip { background: transparent; color: var(--slv-muted); }
.slv-filter-chip.is-active { background: var(--slv-gold); color: var(--slv-dark); border-color: var(--slv-gold); }
.slv-feature-copy .slv-card-tag { margin-bottom:16px; }
.slv-portfolio-meta span { display:block; margin-top:10px; color: var(--slv-gold); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.slv-form-demo { margin-top:20px; }
.slv-form-row { margin-bottom:16px; }
.slv-form-row label { display:block; margin-bottom:8px; color:var(--slv-text); font-size:12px; letter-spacing:.16em; text-transform:uppercase; }
.slv-form-split { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.slv-form-field { height:48px; border:1px solid rgba(26,24,20,.14); background: linear-gradient(180deg, #fff, #f3efe7); }
.slv-form-field-large { height:160px; }
.slv-form-field-select { position:relative; }
.slv-form-field-select::after { content:'▾'; position:absolute; right:16px; top:50%; transform:translateY(-50%); color:var(--slv-muted); }
.slv-service-pills { list-style:none; padding:12px 0 0; margin:0; display:flex; flex-wrap:wrap; gap:10px; }
.slv-service-pills li { padding:8px 12px; background: var(--slv-light-alt); border:1px solid rgba(26,24,20,.08); font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--slv-text); }
.slv-form-helper { color: var(--slv-muted); font-size: 14px; margin-top: 16px; }
.slv-contact-note { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--slv-border); color: var(--slv-muted); }
@media (max-width: 1024px) {
  .slv-service-split, .slv-feature-project, .slv-value-grid, .slv-form-split { grid-template-columns:1fr; }
  .slv-service-split.is-reversed .slv-service-media, .slv-service-split.is-reversed .slv-service-copy { order: initial; }
}

/* Motion System v4 */
body.js-motion-enabled [data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
body.js-motion-enabled [data-reveal="up"] { transform: translate3d(0, 32px, 0); }
body.js-motion-enabled [data-reveal="down"] { transform: translate3d(0, -32px, 0); }
body.js-motion-enabled [data-reveal="left"] { transform: translate3d(-42px, 0, 0); }
body.js-motion-enabled [data-reveal="right"] { transform: translate3d(42px, 0, 0); }
body.js-motion-enabled [data-reveal="scale"] { transform: scale(0.96); filter: saturate(.88); }
body.js-motion-enabled [data-reveal="zoom"] { transform: scale(1.04); filter: blur(2px); }
body.js-motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
body.js-motion-enabled .slv-hero-content [data-reveal] { transition-duration: 1s; }
body.js-motion-enabled .slv-button-row a[data-reveal],
body.js-motion-enabled .slv-nav li[data-reveal] a { transition-duration: .7s; }
body.js-motion-enabled .slv-portfolio-card[data-reveal],
body.js-motion-enabled .slv-card[data-reveal],
body.js-motion-enabled .slv-process-step[data-reveal],
body.js-motion-enabled .slv-testimonial[data-reveal],
body.js-motion-enabled .slv-contact-card[data-reveal],
body.js-motion-enabled .slv-value-card[data-reveal],
body.js-motion-enabled .slv-faq-item[data-reveal],
body.js-motion-enabled .slv-timeline-item[data-reveal],
body.js-motion-enabled .slv-filter-chip[data-reveal] { transition-duration: .95s; }
body.js-motion-enabled .slv-hero-content.is-visible {
  animation: slvHeroFloat 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slvHeroFloat {
  from { opacity: 0; transform: translate3d(0, 44px, 0); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.js-motion-enabled [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  body.js-motion-enabled .slv-hero-content.is-visible { animation: none !important; }
}
