/*
Theme Name: Light Point Pro
Theme URI: https://lightpointpro.com
Author: Light Point Pro Inc
Description: Legacy institutional theme for Light Point Pro Inc — quiet power, extreme restraint, global-elite standard.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Text Domain: lightpointpro
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:            #080808;
  --surface:       #111111;
  --surface-2:     #161616;
  --border:        #1f1f1f;
  --gold:          #c8956c;
  --gold-dim:      #a07850;
  --cream:         #f0ebe3;
  --muted:         #8a8075;
  --text:          #d4cfc7;
  --white:         #ffffff;

  --font-serif:    "Playfair Display", "Times New Roman", serif;
  --font-sans:     "Inter", "Helvetica Neue", Arial, sans-serif;

  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      2rem;
  --space-lg:      4rem;
  --space-xl:      7rem;
  --space-2xl:     11rem;

  --max:           1180px;
  --narrow:        720px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 36em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--narrow);
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 8, 8, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--gold);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  position: absolute;
  left: 0;
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 6rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(200, 149, 108, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.75rem;
  max-width: 14ch;
}

.hero .lead {
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 520px;
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.hero-meta-item span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-intro {
  margin-bottom: var(--space-lg);
  max-width: 32em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover {
  border-color: #2a2a2a;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.portfolio-card:hover::after {
  height: 100%;
}

.portfolio-card .eyebrow {
  margin-bottom: 1.25rem;
}

.portfolio-card h3 {
  margin-bottom: 1rem;
}

.portfolio-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 28em;
}

.portfolio-card .card-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-card .card-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.portfolio-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ============================================================
   APPROACH / PRINCIPLES
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}

.principle {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.principle-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.principle h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.principle p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   PRINCIPAL
   ============================================================ */
.principal-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.principal-label {
  margin-bottom: 1rem;
}

.principal-bio p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.principal-bio p:first-of-type {
  color: var(--text);
  font-size: 1.05rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-block {
  max-width: 480px;
}

.contact-block .eyebrow {
  margin-bottom: 1.5rem;
}

.contact-block h2 {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.contact-item label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-item a,
.contact-item span {
  font-size: 1.05rem;
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: var(--space-xl);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; gap: 0; }
  .principal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-meta { flex-direction: column; gap: 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 1.25rem; }
}

/* ============================================================
   COMBINED THEME ADDITIONS
   Hero with DMV imagery + Services grid
   ============================================================ */

.hero--image {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8, 8, 0.75) 50%,
    rgba(8, 8, 8, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
  color: var(--bg);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240, 235, 227, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Services */
.section-header {
  margin-bottom: var(--space-lg);
  max-width: 36em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: #2a2a2a;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-note {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card--cta {
  border-color: rgba(200, 149, 108, 0.25);
}

.service-card--cta .card-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Steps */
.section--alt {
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive additions */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 7rem 1.25rem 4rem; }
  .hero h1 { font-size: 2.1rem; }
}

/* ============================================================
   CONTACT FORM & LEAD CAPTURE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.25rem;
}

.contact-form .form-row {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease;
  border-radius: 0;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%8a8075' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-privacy {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.form-notice {
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border: 1px solid;
}

.form-notice--success {
  background: rgba(45, 90, 61, 0.15);
  border-color: rgba(45, 90, 61, 0.4);
  color: #a8d5b5;
}

.form-notice--error {
  background: rgba(120, 40, 40, 0.15);
  border-color: rgba(120, 40, 40, 0.4);
  color: #e0a0a0;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}
