/* Just Ross Solutions LLC — Dark Premium Stylesheet */

:root {
  --gold: #B08D57;
  --gold-light: #C9A96E;
  --gold-dim: rgba(176,141,87,0.15);
  --gold-border: rgba(176,141,87,0.25);
  --black: #0B0B0B;
  --surface: #111111;
  --surface-2: #181818;
  --surface-3: #202020;
  --red: #8D1B1B;
  --green: #1F5B3A;
  --white: #FFFFFF;
  --text: rgba(255,255,255,0.88);
  --text-mid: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(176,141,87,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--white);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; font-family: 'Inter', sans-serif; font-weight: 600; }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.75; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

/* ── NAV ── */
nav {
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border-gold);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-logo-pill {
  display: inline-flex; align-items: center; background: var(--white);
  padding: 8px 16px; border-radius: 999px;
}
.nav-logo-pill img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.hero-bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(176,141,87,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
}
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 { margin-bottom: 16px; }
.hero-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 600px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border-gold); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-surface { background: var(--surface-2); color: var(--white); border: 1px solid var(--border); }
.btn-surface:hover { border-color: var(--border-gold); }

/* ── GOLD RULE ── */
.gold-rule {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.gold-rule::before, .gold-rule::after {
  content: ''; flex: 1; height: 1px; background: var(--border-gold);
}
.gold-rule span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 560px; }
.text-center { text-align: center; }
.text-center .label { justify-content: center; }
.text-center .label::before { display: none; }
.text-center .section-header p { margin: 0 auto; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.divider-gold { border: none; border-top: 1px solid var(--border-gold); margin: 0; }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: border-color 0.25s;
  position: relative;
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover { border-color: var(--border-gold); }
.card:hover::after { transform: scaleX(1); }
.card h3 { color: var(--white); margin-bottom: 14px; font-size: 1.1rem; }
.card p { font-size: 0.93rem; margin-bottom: 28px; }
.card-link {
  font-size: 0.72rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-link:hover { gap: 12px; color: var(--gold-light); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.grid-3 .card { background: var(--surface); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
.grid-2 .card { background: var(--surface); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border-gold); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items { display: flex; gap: 0; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim);
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── PILLARS ── */
.pillar-card {
  background: var(--surface);
  padding: 36px 28px;
  border-top: 2px solid var(--gold);
  position: relative;
}
.pillar-card.red-accent { border-top-color: var(--red); }
.pillar-card.green-accent { border-top-color: var(--green); }
.pillar-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.pillar-card.red-accent .pillar-label { color: #c0504f; }
.pillar-card.green-accent .pillar-label { color: #4a9e6e; }
.pillar-card h4 { color: var(--white); margin-bottom: 10px; font-size: 0.95rem; }
.pillar-card p { font-size: 0.85rem; line-height: 1.65; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-gold);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-mid); font-size: 1.05rem; max-width: 580px; }

/* ── SERVICE BLOCKS ── */
.service-block { padding: 72px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.service-num::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); }
.flagship-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px;
  border: 1px solid var(--border-gold);
  margin-left: 12px; vertical-align: middle;
}

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 40px; }
.tier-card {
  background: var(--surface);
  padding: 32px 28px;
  border-top: 2px solid transparent;
  transition: border-top-color 0.2s;
}
.tier-card:hover { border-top-color: var(--gold); }
.tier-card.featured { background: var(--surface-3); border-top-color: var(--gold); }
.tier-card h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 10px; }
.tier-card p { font-size: 0.875rem; line-height: 1.7; }
.cta-tag {
  display: inline-block; margin-top: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
}
.deliverables {
  margin-top: 32px; padding: 20px 24px;
  background: var(--surface); border-left: 2px solid var(--gold);
}
.deliverables strong {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.deliverables span { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
.note-bar { margin-top: 20px; font-size: 0.825rem; color: var(--text-dim); line-height: 1.65; }
.note-bar strong { color: var(--text-mid); }

/* ── MAINTENANCE ── */
.maintenance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 40px; }
.maintenance-card { background: var(--surface); padding: 32px 28px; border-top: 2px solid transparent; }
.maintenance-card.featured { background: var(--surface-3); border-top-color: var(--gold); }
.maintenance-card h4 { color: var(--white); margin-bottom: 8px; }
.maintenance-card .tier-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
}
.maintenance-card p { font-size: 0.875rem; line-height: 1.7; }

/* ── STANDARDS ── */
.standards-stack { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.standard-row {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px; background: var(--surface);
  border-left: 2px solid var(--gold);
  transition: background 0.2s;
}
.standard-row:hover { background: var(--surface-2); }
.std-badge {
  width: 56px; height: 56px; background: var(--surface-3);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.std-badge span { color: var(--gold); font-weight: 700; font-size: 0.7rem; text-align: center; line-height: 1.3; }
.standard-row strong { display: block; font-size: 0.93rem; color: var(--white); margin-bottom: 3px; }
.standard-row em { font-style: normal; font-size: 0.82rem; color: var(--text-dim); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-sidebar h3 { color: var(--white); margin-bottom: 12px; }
.contact-sidebar > p { margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item-icon {
  width: 44px; height: 44px; background: var(--surface);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.contact-item span { font-size: 0.9rem; color: var(--text-mid); }
.good-fit { margin-top: 40px; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--gold); }
.good-fit h5 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.good-fit ul { list-style: none; }
.good-fit li { display: flex; gap: 12px; font-size: 0.875rem; color: var(--text-mid); margin-bottom: 12px; line-height: 1.5; }
.good-fit li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 48px 44px;
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
input, textarea, select {
  width: 100%; padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.93rem; font-family: inherit;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.08);
}
select option { background: var(--surface-2); color: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.82rem; }
.form-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 14px; text-align: center; }
.form-success {
  display: none; background: rgba(31,91,58,0.2);
  border: 1px solid rgba(74,158,110,0.4);
  padding: 20px; color: #4a9e6e; font-size: 0.95rem;
  margin-top: 16px; text-align: center;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 32px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.faq-item p { font-size: 0.93rem; line-height: 1.75; }

/* ── CTA ── */
.cta-section {
  background: var(--surface);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(176,141,87,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 18px; position: relative; }
.cta-section p { font-size: 1.05rem; max-width: 480px; margin: 0 auto 44px; position: relative; }
.cta-section .label { justify-content: center; position: relative; }
.cta-section .label::before { display: none; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 34px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-dim); font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ── HIGHLIGHT BLOCK ── */
.highlight {
  padding: 28px 32px;
  background: var(--surface);
  border-left: 2px solid var(--gold);
  margin-bottom: 14px;
}
.highlight .hl-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block;
}
.highlight p { font-size: 0.93rem; color: var(--text); }

/* ── UTILITY ── */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-3, .grid-5, .tier-grid, .maintenance-grid { grid-template-columns: 1fr; gap: 1px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { flex-wrap: wrap; }
  .trust-item { border-right: none; padding: 8px 0; width: 50%; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--black); padding: 24px 32px 32px; gap: 20px;
    border-bottom: 1px solid var(--border-gold);
  }
  nav { position: relative; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .contact-form-wrap { padding: 28px 24px; }
  section { padding: 72px 0; }
  .trust-item { width: 100%; }
}

/* ── Hybrid additions: colored highlight/border variants ── */
.highlight-red { border-left-color: var(--red); }
.highlight-green { border-left-color: var(--green); }
.quote-center { max-width: 720px; margin: 0 auto; text-align: center; }
.quote-center p {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--white); line-height: 1.45;
}
.section-tight { padding: 56px 0; }
.contact-info-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--border); margin-bottom: 56px;
}
.contact-info-row > div { background: var(--surface); border-left: 2px solid var(--gold); padding: 24px 28px; }
.contact-info-row .label { margin-bottom: 8px; }
.contact-info-row p { color: var(--white); margin: 0; font-size: 0.95rem; }
@media (max-width: 720px) { .contact-info-row { grid-template-columns: 1fr; } }

/* ── Additions for restructured Home/About content ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

.narrative { max-width: 760px; margin: 0 auto; }
.narrative p { font-size: 1rem; line-height: 1.85; margin-bottom: 20px; color: var(--text-mid); }
.narrative p:last-child { margin-bottom: 0; }

.training-highlight {
  margin-top: 28px; padding: 32px 30px; background: var(--surface-2);
  border-left: 3px solid var(--gold);
}
.training-highlight h4 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.training-highlight p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 0; }
.training-highlight strong { color: var(--gold); }

.page-hero-logo { margin-bottom: 26px; }
.page-hero-logo img { height: 34px; }

/* FAQ / Common Questions wrapper (reuses existing .faq-item styling) */
.faq-section { padding: 96px 0; }
.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 64px; }
.faq-side p { margin: 16px 0 26px; font-size: 0.95rem; max-width: 34ch; color: var(--text-mid); }
.faq-list { }
.faq-item:first-child { border-top: 1px solid var(--border); }
@media (max-width: 820px) { .faq-layout { grid-template-columns: 1fr; gap: 32px; } }
