/* VALCO GRAPHICS — edit colors here if needed */
:root { color-scheme: dark; --background: #090909; --text: #f7f7f7; --muted: #b8b8b8; --accent: #e32632; }
* { box-sizing: border-box; }
html { min-height: 100%; }
body { margin: 0; background: var(--background); color: var(--text); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; }
.page-shell { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; position: relative; overflow: hidden; background: radial-gradient(ellipse 55% 46% at 50% 48%, #222 0%, #111 40%, #090909 82%); }
.page-shell::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, #0677c7, #bf2787 38%, #e32632 65%, #f1bf32); }
.site-header, .site-footer { width: min(100% - 80px, 1280px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.site-header { height: 100px; border-bottom: 1px solid #292929; }
.brand { display: block; width: 192px; height: 94px; overflow: hidden; position: relative; }
.brand img { display: block; width: 192px; height: 192px; max-width: none; position: absolute; top: -53px; left: 0; }
.header-link { font-size: 12px; letter-spacing: .22em; text-decoration: none; font-weight: 700; padding: 16px 0; border-bottom: 1px solid #6b6b6b; }
.header-link span { color: var(--accent); font-size: 19px; margin-left: 10px; }
.header-link:hover, .header-link:focus-visible { border-color: var(--accent); }
.hero { flex: 1; display: grid; place-items: center; padding: 20px 24px 74px; text-align: center; }
.hero-content { width: min(100%, 1000px); }
.eyebrow { margin: 0 0 13px; color: #c8c8c8; font-size: 12px; font-weight: 700; letter-spacing: .27em; }
.red-line { display: inline-block; height: 2px; width: 30px; background: var(--accent); vertical-align: middle; margin-right: 12px; }
.hero-visual { width: min(100%, 620px); margin: 0 auto 24px; position: relative; display: grid; place-items: center; }
.hero-art { display: block; width: clamp(280px, 30vw, 400px); height: auto; margin: 0 auto; position: relative; mix-blend-mode: screen; }
h1 { margin: 0; font-size: clamp(27px, 3.3vw, 46px); font-weight: 400; letter-spacing: -.035em; line-height: 1.2; }
.services { color: var(--muted); font-size: clamp(16px, 1.55vw, 20px); line-height: 1.6; margin: 18px auto 35px; }
.services span { color: var(--accent); padding: 0 4px; }
.quote-button { display: inline-flex; gap: 20px; align-items: center; justify-content: center; min-height: 56px; padding: 0 31px; border-radius: 100px; background: var(--text); color: #101010; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; }
.quote-button span { color: var(--accent); font-size: 21px; line-height: 1; }
.quote-button:hover, .quote-button:focus-visible { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px #e3263233; }
.site-footer { min-height: 70px; border-top: 1px solid #383838; color: #969696; font-size: 12px; letter-spacing: .05em; }
.footer-right { display: flex; gap: 32px; align-items: center; }
.footer-tagline { letter-spacing: .18em; }
.instagram-link { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; color: #c8c8c8; font-size: 12px; letter-spacing: .13em; text-decoration: none; transition: color .2s; }
.instagram-link:hover, .instagram-link:focus-visible { color: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .hero-art { animation: reveal .8s ease-out both; }
  .hero h1, .hero .services, .hero .quote-button { animation: reveal .7s ease-out both; }
  .hero h1 { animation-delay: .12s; }
  .hero .services { animation-delay: .22s; }
  .hero .quote-button { animation-delay: .32s; }
  @keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 650px) {
  .site-header, .site-footer { width: min(100% - 36px, 1280px); }
  .site-header { height: 86px; }
  .brand { width: 148px; height: 78px; }
  .brand img { width: 148px; height: 148px; top: -41px; }
  .header-link { font-size: 10px; letter-spacing: .12em; }
  .header-link span { margin-left: 3px; }
  .hero { padding: 48px 20px 64px; }
  .eyebrow { font-size: 10px; line-height: 1.7; letter-spacing: .16em; }
  .red-line { width: 19px; margin-right: 6px; }
  .hero-visual { margin-bottom: 22px; }
  .hero-art { width: min(82vw, 335px); }
  .desktop-break { display: none; }
  .services { max-width: 390px; margin: 20px auto 30px; }
  .site-footer { min-height: 74px; gap: 12px; align-items: flex-start; flex-direction: column; justify-content: center; font-size: 11px; }
  .footer-right { gap: 18px; flex-wrap: wrap; }
  .instagram-link { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) { .quote-button { transition: none; } }
