:root {
  --bg: #0b0a08;
  --ink: #282828;
  --paper: #dedbd4;
  --paper-2: #f3efe5;
  --cream: #fff1ce;
  --gold: #d9b96e;
  --gold-2: #a77f31;
  --muted: #716d64;
  --dark: #242424;
  --line: rgba(40, 40, 40, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 48%, #fff 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.progress { position: fixed; inset: 0 auto auto 0; z-index: 1000; width: 0; height: 3px; background: linear-gradient(90deg, var(--dark), var(--gold), var(--cream)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: var(--paper-2);
  background: rgba(36, 36, 36, 0.96);
  border-bottom: 1px solid rgba(255, 241, 206, 0.2);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Plus Jakarta Sans", "Manrope", sans-serif; font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; background: var(--paper); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #d8d3c9; font-size: 12px; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.header-cta, .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.header-cta, .btn.primary { color: var(--dark); background: linear-gradient(135deg, var(--cream), var(--gold)); border-color: rgba(255,241,206,0.5); }
.btn.secondary { color: var(--paper-2); background: rgba(36,36,36,0.7); border-color: rgba(255,255,255,0.26); }
.btn.secondary.dark { color: var(--dark); background: rgba(255,255,255,0.7); border-color: var(--line); }
.btn:hover, .header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-light); border-radius: 8px; background: rgba(255,255,255,0.08); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--cream); }

.hero, .page-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  align-items: end;
  gap: 32px;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 5vw, 70px) clamp(54px, 7vw, 86px);
  overflow: hidden;
}
.home-hero { color: var(--paper-2); background: var(--dark); }
.hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.34; filter: grayscale(1) contrast(1.05); }
.hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(36,36,36,0.98), rgba(36,36,36,0.76) 55%, rgba(36,36,36,0.4)); }
.hero-copy, .hero-card, .page-copy, .identity-card, .contact-form { position: relative; z-index: 2; }
.tag-mark { width: min(560px, 88vw); margin-bottom: 28px; filter: drop-shadow(0 22px 36px rgba(0,0,0,0.34)); }
.logo-lockup { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 28px; padding: 10px 18px 10px 10px; border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; background: rgba(0,0,0,0.22); box-shadow: 0 18px 45px rgba(0,0,0,0.26); }
.logo-lockup img { width: 78px; height: 78px; object-fit: contain; border-radius: 50%; background: var(--paper); }
.logo-lockup span { color: var(--cream); font-family: "Syne", sans-serif; font-size: clamp(22px, 4vw, 44px); font-weight: 800; line-height: 1; }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.home-hero .eyebrow { color: var(--cream); }
h1, h2, h3, p { letter-spacing: 0; }
h1, h2, h3 { font-family: "Plus Jakarta Sans", "Manrope", sans-serif; }
h1 { margin: 0; max-width: 980px; font-size: clamp(46px, 7vw, 104px); line-height: 0.92; letter-spacing: -0.05em; }
h2 { margin: 0; max-width: 880px; font-size: clamp(30px, 4.3vw, 58px); line-height: 1; letter-spacing: -0.04em; }
h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.2; }
p { line-height: 1.72; }
.hero-copy p, .page-copy p, .section-head p, .copy-block p, .info-card p, .link-card p, .process-step p, .service-row p, .work-card p { color: var(--muted); font-size: 1.05rem; }
.home-hero .hero-copy p { color: #d4cec3; }
.motto { color: var(--cream) !important; font-weight: 900; font-size: 1.3rem !important; }
.actions, .social-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-card, .identity-card, .contact-form, .link-card, .info-card, .process-step, .work-card, .service-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.62);
  box-shadow: var(--shadow);
}
.hero-card { padding: 24px; color: var(--paper-2); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.hero-card img { width: 100px; height: 100px; object-fit: contain; border-radius: 50%; margin-bottom: 18px; background: var(--paper); }
.hero-card strong { display: block; font-family: "Plus Jakarta Sans", "Manrope", sans-serif; font-size: 24px; line-height: 1.15; }
.hero-card span { display: block; margin-top: 12px; color: #d4cec3; line-height: 1.6; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--cream); }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { padding: 17px 28px; color: var(--dark); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.ticker span::after { content: "/"; margin-left: 28px; color: var(--gold-2); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.stats article { padding: 38px 22px; text-align: center; border-right: 1px solid var(--line); background: #f8f5ee; }
.stats article:last-child { border-right: 0; }
.stats strong { display: block; font-family: "Plus Jakarta Sans", "Manrope", sans-serif; font-size: clamp(36px, 4.8vw, 64px); line-height: 1; }
.stats span { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }

.section { padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px); }
.soft-band { background: #f8f5ee; }
.section-head { max-width: 900px; margin-bottom: 34px; }
.link-grid, .card-band, .process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.work-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.link-card, .info-card, .process-step { padding: 26px; transition: transform 0.2s ease; }
.link-card:hover, .info-card:hover, .process-step:hover, .work-card:hover { transform: translateY(-4px); }
.link-card span, .info-card span, .process-step span, .service-row span { color: var(--gold-2); font-family: "Plus Jakarta Sans", "Manrope", sans-serif; font-size: clamp(2rem, 2vw, 2.6rem); font-weight: 800; }
.split-cta, .two-col, .contact-page { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr); align-items: center; gap: clamp(28px, 6vw, 82px); }
.split-cta { color: var(--paper-2); background: var(--dark); }
.split-cta p { color: #d4cec3; }

.page-hero { min-height: auto; background: linear-gradient(135deg, var(--paper), var(--paper-2)); }
.page-hero.narrow { grid-template-columns: 1fr; }
.identity-card { padding: clamp(18px, 4vw, 34px); }
.identity-card img { width: 100%; height: auto; }
.copy-block { max-width: 720px; }
.service-list { display: grid; gap: 18px; }
.service-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 30px; }
.service-row b { display: inline-flex; margin: 14px 8px 0 0; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.work-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.work-card { overflow: hidden; background: var(--dark); color: var(--paper-2); }
.work-card video, .work-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.work-card div { display: flex; justify-content: space-between; gap: 16px; padding: 18px; border-top: 1px solid var(--line-light); }
.work-card span { color: var(--cream); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.work-card p { margin: 0; padding: 0 18px 20px; color: #d4cec3; }
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-list { display: grid; gap: 12px; margin: 26px 0; }
.contact-list a, .contact-list span { font-weight: 900; color: var(--dark); }
.social-row a { padding: 10px 13px; border: 1px solid var(--line); border-radius: 8px; font-weight: 900; }
.social-row a:hover { background: var(--dark); color: var(--cream); }
.contact-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.contact-link { display: grid; gap: 6px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,0.52); box-shadow: 0 18px 40px rgba(20,20,18,0.08); }
.contact-link span { color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-link strong { overflow-wrap: anywhere; font-family: "Plus Jakarta Sans", "Manrope", sans-serif; font-size: 1rem; line-height: 1.4; }
.contact-link.static { background: rgba(36,36,36,0.04); }
.contact-panel { position: relative; padding: clamp(20px, 4vw, 30px); border: 1px solid var(--line); border-radius: 18px; background: rgba(15,15,15,0.96); box-shadow: var(--shadow); }
.panel-head { margin-bottom: 18px; }
.panel-head .eyebrow { margin-bottom: 8px; color: var(--gold); }
.panel-head h2 { color: var(--paper-2); font-size: clamp(30px, 3.4vw, 44px); }
.contact-form { display: grid; gap: 16px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.contact-form label { display: grid; gap: 8px; color: var(--paper-2); font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; background: rgba(255,255,255,0.04); color: var(--paper-2); outline: 0; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.52); }
.contact-form select option { color: var(--ink); }
.contact-form .btn.primary { width: 100%; }
.form-status { min-height: 22px; margin: 0; color: var(--cream); font-weight: 900; }
.contact-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

.site-footer { padding: 54px clamp(18px, 5vw, 72px) 24px; color: var(--paper-2); background: linear-gradient(180deg, #151513 0%, #0c0c0b 100%); }
.site-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(220px, 1.4fr) minmax(160px, 0.8fr) minmax(180px, 0.9fr) minmax(200px, 0.9fr); gap: 28px; }
.site-footer .brand { margin-bottom: 12px; }
.footer-column { display: grid; align-content: start; gap: 16px; }
.footer-column h3 { margin: 0; font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); }
.site-footer p, .footer-contact, .footer-links a { color: #d4cec3; }
.footer-copy { margin: 0; max-width: 400px; line-height: 1.7; font-size: 0.98rem; }
.footer-links, .footer-social { display: flex; flex-wrap: wrap; gap: 10px 16px; align-content: start; }
.footer-links a, .footer-social a, .footer-contact a, .footer-contact span { display: inline-block; position: relative; color: #e8e0d2; text-decoration: none; transition: color 0.2s ease; }
.footer-links a::after, .footer-social a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--gold-2); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease; }
.footer-links a:hover::after, .footer-social a:hover::after { transform: scaleX(1); }
.footer-links a:hover, .footer-social a:hover, .footer-contact a:hover { color: var(--cream); }
.footer-contact { display: grid; gap: 10px; }
.footer-contact a, .footer-contact span { line-height: 1.6; }
.footer-meta { max-width: 1200px; margin: 26px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.copyright { margin: 0; color: #d4cec3; }
.site-footer.compact { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 18px clamp(18px, 5vw, 72px); background: #10100e; border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer.compact p { margin: 0; color: #d4cec3; }
.compact-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 18px; }
.site-footer.compact a { font-weight: 900; color: var(--cream); }
.site-footer.compact a:hover { color: var(--gold-2); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.62s ease, transform 0.62s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { position: absolute; top: 82px; right: 18px; left: 18px; display: flex; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line-light); border-radius: 8px; background: var(--dark); }
  .hero, .page-hero, .split-cta, .two-col, .contact-page { grid-template-columns: 1fr; }
  .contact-page { align-items: start; }
  .link-grid, .card-band, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .site-header { min-height: 74px; padding-inline: 14px; }
  .brand span { font-size: 14px; }
  .brand img { width: 40px; height: 40px; }
  .header-cta { display: none; }
  .nav-links.open { top: 74px; }
  .hero, .page-hero { padding-inline: 18px; }
  .contact-page { gap: 42px; padding-top: 54px; padding-bottom: 54px; }
  h1 { font-size: clamp(40px, 13vw, 62px); }
  .link-grid, .card-band, .process-grid, .work-gallery, .stats, .service-row { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
  .service-row { gap: 8px; }
  .stats article { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats article:last-child { border-bottom: 0; }
  .work-card div { flex-direction: column; }
  .copyright { grid-column: auto; }
}
@media (max-width: 540px) {
  .site-header { gap: 10px; }
  .brand { gap: 8px; }
  .brand span { font-size: 12px; }
  .logo-lockup { padding: 10px 12px 10px 8px; }
  .logo-lockup span { font-size: 22px; }
  .actions, .social-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .header-cta, .btn, .social-row a { width: 100%; }
  .contact-meta-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .contact-link { padding: 15px 16px; }
  .contact-panel { padding: 20px 16px; border-radius: 12px; }
  .contact-form { gap: 14px; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; }
  .site-footer { padding-inline: 16px; }
  .site-footer.compact { padding-inline: 16px; }
  .compact-links { width: 100%; justify-content: space-between; }
}
