/* =====================================================================
   VANTAGE POINT CREATIVE — design system
   Bespoke print & framing. Distinct from FrameFlow's indigo/violet: a
   boutique navy-and-brass identity carried over from the existing VPC
   mark, rebuilt in a Liquid Glass surface language.

   Dark is the fixed theme (not OS-conditional) — this is one deliberate
   brand look, not a visitor preference toggle. -----------------------
   ===================================================================== */

:root { color-scheme: dark; }

:root {
  /* Brand */
  --navy:        #1c2030;
  --navy-deep:   #12141e;
  --brass:       #c6a15b;
  --brass-bright:#e0c078;
  --cream:       #f6f2ea;

  --bg:            #14161f;
  --bg-alt:        #191c28;
  --surface:       rgba(255, 255, 255, 0.05);
  --surface-solid: #1c2030;
  --border:        rgba(255, 255, 255, 0.10);
  --border-bright: rgba(255, 255, 255, 0.18);
  --text:          #f4f1ea;
  --text-secondary:rgba(244, 241, 234, 0.72);
  --text-muted:    rgba(244, 241, 234, 0.52);
  --shadow:        0 24px 60px -24px rgba(0, 0, 0, 0.6);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0; overflow-x: clip;
  font-family: var(--font-body); color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; margin: 0; }
p { line-height: 1.65; }

::selection { background: var(--brass); color: #1c1608; }

/* --- reveal-on-scroll -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- backdrop decoration ------------------------------------------ */
.page-glow {
  position: fixed; inset: 0; z-index: -1; overflow: clip; pointer-events: none;
}
.glow-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.glow-blob-a { width: 640px; height: 640px; top: -220px; left: -180px; background: radial-gradient(circle, var(--brass) 0%, transparent 70%); opacity: .28; }
.glow-blob-b { width: 560px; height: 560px; bottom: -200px; right: -160px; background: radial-gradient(circle, var(--navy) 0%, transparent 70%); opacity: .28; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 28px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; flex-shrink: 0; border: 2px solid var(--brass); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.logo-mark span {
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .02em; color: var(--brass);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); }
.logo-text small { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; position: relative; }
.main-nav a {
  font-size: 13.5px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none; padding: 9px 15px; border-radius: 999px;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current] { color: var(--text); }
.nav-indicator {
  position: absolute; bottom: 2px; left: 0; height: 2px; width: 0;
  background: var(--brass); border-radius: 2px; opacity: 0; transition: transform .35s ease, width .35s ease;
}
.nav-indicator.is-visible { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: .02em;
  padding: 11px 22px; border-radius: 999px; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brass-bright), var(--brass));
  color: #241a08; box-shadow: 0 10px 26px -12px rgba(198, 161, 91, .6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(198, 161, 91, .75); }
.btn-ghost { background: var(--surface); border-color: var(--border-bright); color: var(--text); }
.btn-ghost:hover { border-color: var(--brass); }
.btn-small { padding: 9px 18px; font-size: 13px; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--surface-solid); border-bottom: 1px solid var(--border); padding: 8px;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav a { padding: 13px 16px; border-radius: 10px; }
  .nav-indicator { display: none; }
  .header-actions .btn-small { display: none; }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; overflow: clip; padding: 84px 0 96px;
  background:
    radial-gradient(ellipse 90% 70% at 20% -10%, rgba(198,161,91,.16) 0%, transparent 60%),
    var(--navy-deep);
  color: var(--cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 60% 55% at 30% 15%, black 25%, transparent 72%);
}
.hero-frame-deco {
  position: absolute; border: 2px solid rgba(198,161,91,.28); border-radius: 6px; pointer-events: none;
}
.hero-frame-deco::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(198,161,91,.16); border-radius: 3px; }
.hfd-1 { width: 150px; height: 200px; top: 18%; left: 4%; transform: rotate(-9deg); }
.hfd-2 { width: 120px; height: 150px; top: 55%; right: 6%; transform: rotate(7deg); }
@media (max-width: 700px) { .hero-frame-deco { display: none; } }

.hero-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brass-bright);
  background: rgba(198,161,91,.12); border: 1px solid rgba(198,161,91,.3);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.06; color: #fff; }
.hero h1 em { font-style: normal; color: var(--brass-bright); }
.hero-sub { font-size: 18px; line-height: 1.6; color: rgba(246,242,234,.78); margin: 22px auto 0; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

.hero-ctas .btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.hero-ctas .btn-ghost:hover { border-color: var(--brass); }

@media (max-width: 700px) { .hero { padding: 56px 0 68px; } }

/* ===================================================================
   PAGE HEAD (subpages)
   =================================================================== */
.page-head {
  position: relative; overflow: clip; padding: 74px 0 46px; text-align: center;
  background: radial-gradient(ellipse 90% 70% at 30% -10%, rgba(198,161,91,.14) 0%, transparent 60%), var(--navy-deep);
  color: var(--cream);
}
.page-head .hero-eyebrow { margin-bottom: 18px; }
.page-head h1 { font-size: clamp(32px, 4.4vw, 48px); color: #fff; line-height: 1.1; }
.page-head p { font-size: 16px; color: rgba(246,242,234,.76); max-width: 560px; margin: 16px auto 0; }

/* ===================================================================
   SECTIONS & COMPONENTS
   =================================================================== */
section { position: relative; padding: 78px 0; }
.section-eyebrow {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-secondary); max-width: 560px; line-height: 1.6; margin-bottom: 44px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.glass-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

/* two-up service cards (Home) */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-card {
  padding: 34px 30px; display: flex; flex-direction: column; gap: 14px; text-decoration: none;
  transition: transform .3s ease, border-color .3s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--brass); }
.svc-card i { font-size: 26px; color: var(--brass); width: 52px; height: 52px; border-radius: 14px;
  background: rgba(198,161,91,.14); display: flex; align-items: center; justify-content: center; }
.svc-card h3 { font-size: 21px; color: var(--text); }
.svc-card p { font-size: 14.5px; color: var(--text-secondary); margin: 0; }
.svc-card .svc-link { margin-top: auto; font-size: 13.5px; font-weight: 700; color: var(--brass); }
@media (max-width: 700px) { .svc-grid { grid-template-columns: 1fr; } }

/* step list (Frame / Print process) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(198,161,91,.14); color: var(--brass);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 16.5px; color: var(--text); }
.step p { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.55; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* feature/options grid */
.opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.opt-card { padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; }
.opt-card i { font-size: 21px; color: var(--brass); }
.opt-card h4 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text); margin: 4px 0 0; }
.opt-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
@media (max-width: 820px) { .opt-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .opt-grid { grid-template-columns: 1fr; } }

/* gallery (Get Inspired) — CSS-drawn placeholder frames until real
   photography replaces them */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-tile {
  aspect-ratio: 4 / 5; border-radius: 16px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(150deg, var(--bg-alt), var(--surface-solid));
  display: flex; align-items: center; justify-content: center;
}
.gal-tile::before {
  content: ''; position: absolute; inset: 14px; border: 1.5px solid rgba(198,161,91,.3); border-radius: 8px;
}
.gal-tile-icon { color: var(--brass); font-size: 30px; opacity: .55; }
.gal-tile-label {
  position: absolute; bottom: 12px; left: 0; right: 0; text-align: center;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 820px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: 1fr; } }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.contact-card { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.contact-card i { font-size: 22px; color: var(--brass); width: 46px; height: 46px; border-radius: 13px;
  background: rgba(198,161,91,.14); display: flex; align-items: center; justify-content: center; }
.contact-card h3 { font-size: 16.5px; color: var(--text); }
.contact-card p { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.55; }
.contact-card a { color: var(--brass); font-weight: 700; text-decoration: none; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* software callout strip (Home) */
.callout {
  display: flex; align-items: center; gap: 24px; padding: 30px 32px; flex-wrap: wrap;
}
.callout-icon {
  width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px;
}
.callout-text { flex: 1; min-width: 220px; }
.callout-text b { display: block; font-size: 15.5px; color: var(--text); margin-bottom: 3px; }
.callout-text span { font-size: 13.5px; color: var(--text-muted); }

/* placeholder note (visible reminder to swap real content in) */
.placeholder-note { font-size: 12.5px; color: var(--text-muted); font-style: italic; margin-top: 18px; }

/* final CTA band */
.final-cta {
  text-align: center; padding: 90px 0; position: relative; overflow: clip;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(198,161,91,.18) 0%, transparent 65%), var(--navy-deep);
  color: #fff;
}
.final-cta h2 { font-size: clamp(26px, 3.6vw, 38px); color: #fff; }
.final-cta p { font-size: 15.5px; color: rgba(246,242,234,.76); margin: 14px 0 30px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { border-top: 1px solid var(--border); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner p { margin: 0; font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--brass); }

/* ===================================================================
   BUILD MARKER (temporary — remove before launch)
   =================================================================== */
.vpc-ver {
  position: fixed; bottom: 14px; right: 14px; z-index: 200;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brass-bright); background: rgba(18,20,30,.82); border: 1px solid rgba(198,161,91,.4);
  border-radius: 999px; padding: 5px 12px; pointer-events: none;
}
