/* ===== TOKENS ===== */
:root {
  --bg: #08090c;
  --bg-elevated: #0d0e12;
  --bg-card: #111318;
  --panel: rgba(14, 15, 20, 0.96);
  --text: #f5f3ee;
  --text-secondary: #9e9588;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-dark: #a07c2e;
  --gold-glow: rgba(201, 168, 76, 0.10);
  --gold-line: rgba(201, 168, 76, 0.12);
  --white-line: rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 40px 80px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1180px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  width: min(calc(100% - 3rem), var(--max-w));
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(32px) saturate(1.6);
  border-bottom: 1px solid var(--gold-line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--bg);
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px rgba(160, 124, 46, 0.35);
}

.brand-mark-sm {
  width: 36px;
  height: 36px;
  font-size: 0.78rem;
}

.brand-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a { transition: color 200ms ease; }
.nav-links a:hover { color: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 2.25rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 58px;
  padding: 0 3rem;
  font-size: 0.9rem;
}

.btn-primary {
  color: var(--bg);
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 8px 24px rgba(160, 124, 46, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(160, 124, 46, 0.45);
}

.btn-outline {
  color: var(--gold-light);
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.5);
}

.btn-full { width: 100%; }
.nav-cta { white-space: nowrap; min-height: 40px; padding: 0 1.5rem; font-size: 0.78rem; }

/* ===== EYEBROW ===== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg, rgba(8, 9, 12, 0.15) 0%, rgba(8, 9, 12, 0.95) 100%),
    linear-gradient(135deg, #0a0c10 0%, #14161c 50%, #0a0b0f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 25%, rgba(201, 168, 76, 0.07), transparent),
    radial-gradient(ellipse 400px 400px at 15% 85%, rgba(201, 168, 76, 0.04), transparent);
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 10rem 0 6rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  background: rgba(201, 168, 76, 0.04);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-line), transparent);
  margin: 4rem auto 0;
}

/* ===== PROOF BAR ===== */
.proof-bar {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: var(--bg-elevated);
  padding: 3rem 0;
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-item {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--gold-line);
  flex-shrink: 0;
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proof-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== SECTIONS ===== */
.section {
  padding: 8rem 0;
}

.section-dark {
  background: var(--bg-elevated);
}

.section-head {
  margin-bottom: 4rem;
}
.section-head.center { text-align: center; }

.section-head h2,
.about-left h2,
.ideal-left h2,
.contact-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-head h2 em,
.about-left h2 em,
.ideal-left h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.section-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 5rem;
  align-items: start;
}

.body-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.body-text + .body-text { margin-top: 1.25rem; }

.body-text-accent {
  color: var(--text);
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

.about-cta { margin-top: 2.5rem; }

/* ===== PILLAR CARDS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.blog-card {
  min-height: 220px;
}

.blog-card .pillar-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}
.pillar-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pillar-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--gold-line);
  flex-shrink: 0;
}

.pillar-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.pillar-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== PHILOSOPHY ===== */
.philosophy-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 50% 50%, rgba(201, 168, 76, 0.06), transparent),
    var(--bg);
}

.philosophy-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-inner .eyebrow {
  margin-bottom: 2.5rem;
}

.philosophy-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.philosophy-quote em {
  color: var(--gold-light);
  font-style: italic;
}

.philosophy-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.attr-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ===== CREDIBILITY GRID ===== */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cred-card {
  background: var(--panel);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}
.cred-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.cred-featured {
  grid-column: 1 / -1;
  border-color: var(--gold-line);
  background:
    radial-gradient(ellipse 400px 200px at 0% 0%, rgba(201, 168, 76, 0.06), transparent),
    var(--panel);
}

.cred-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-line);
  margin-bottom: 1rem;
}

.cred-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cred-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ===== IDEAL CLIENT ===== */
.ideal-section {
  background: var(--bg);
}

.ideal-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 5rem;
  align-items: start;
}

.ideal-left .body-text {
  margin-top: 1.25rem;
}

.ideal-list {
  display: grid;
  gap: 0.75rem;
}

.ideal-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-sm);
  transition: background 300ms ease, border-color 300ms ease;
}
.ideal-list li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ideal-list li:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--gold-line);
}

/* ===== QUOTE STRIP ===== */
.quote-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: var(--bg-elevated);
}

.quote-strip-inner {
  text-align: center;
}

.quote-strip-inner p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== CONTACT ===== */
.contact-section {
  background:
    radial-gradient(ellipse 600px 400px at 50% 0%, rgba(201, 168, 76, 0.04), transparent),
    var(--bg);
}

.contact-header {
  margin-bottom: 4rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  gap: 0.75rem;
}

.info-card {
  background: var(--panel);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

.info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.info-value {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 0.75rem;
}

.form-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.88rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(158, 149, 136, 0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.02);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

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

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  max-width: 38ch;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links a { transition: color 200ms ease; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-line);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .about-layout,
  .ideal-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pillars-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-featured { grid-column: 1; }
  .nav-links { display: none; }
  .proof-grid { flex-wrap: wrap; }
  .proof-divider { display: none; }
  .proof-item { flex: 0 0 50%; }
}

@media (max-width: 760px) {
  .section { padding: 5rem 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 7rem 0 4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .hero-accent { display: none; }
  .hero-scroll-line { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer-brand-block { flex-direction: column; }
  .nav-cta { display: none; }
  .container { width: min(calc(100% - 2rem), var(--max-w)); }
  .philosophy-section { padding: 5rem 0; }
  .btn-lg { min-height: 52px; padding: 0 2rem; }
  .quote-strip { padding: 3rem 0; }
}
