/*
Theme Name: Rolarg Consulting
Theme URI: https://rolarg.com
Author: Rolarg Consulting LLC
Author URI: https://rolarg.com
Description: Custom WordPress theme for Rolarg Consulting LLC.
Version: 1.0.0
License: All rights reserved
Text Domain: rolarg-consulting
*/

/* === Reset & Root === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #1C1C1E; --surface: #2A2A2C; --text: #E8E8E8; --muted: #888;
  --line: rgba(232,232,232,0.1);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.6; font-weight: 300; }

/* === Nav === */
nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--line); padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { font-family: var(--serif); font-size: 18px; letter-spacing: -0.3px; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-back { font-size: 13px; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-back:hover { color: var(--text); }

/* === Footer === */
footer { padding: 28px 5vw; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: var(--serif); font-size: 15px; color: var(--text); }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-policy { font-size: 12px; color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(136,136,136,0.3); padding-bottom: 1px; transition: color 0.2s; }
.footer-policy:hover { color: var(--text); }

/* === Fade-in animation === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* === Front Page — Sections === */
section { padding: 100px 5vw; }

/* Hero */
.hero { min-height: calc(100vh - 60px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding-top: 80px; padding-bottom: 80px; }
.hero-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.hero-tag::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--muted); }
.hero-title { font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); line-height: 1.08; letter-spacing: -1px; margin-bottom: 28px; color: var(--text); }
.hero-title em { font-style: italic; color: #666; }
.hero-body { font-size: 17px; color: var(--muted); max-width: 400px; margin-bottom: 44px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.btn-primary { background: var(--text); color: var(--bg); padding: 14px 28px; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.8; }

.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: var(--surface); padding: 28px 24px; }
.stat-card.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; }
.stat-num { font-family: var(--serif); font-size: 52px; line-height: 1; margin-bottom: 8px; color: var(--text); }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.hero-badge { background: var(--surface); padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; }
.hero-badge-text { font-family: var(--serif); font-size: 20px; line-height: 1.3; font-style: italic; color: var(--muted); }

/* Section divider */
.divider { border: none; border-top: 1px solid var(--line); margin: 0 5vw; }

/* What We Do */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.section-title { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 48px); letter-spacing: -0.5px; line-height: 1.1; color: var(--text); }
.section-subtitle { font-size: 14px; color: var(--muted); max-width: 280px; text-align: right; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-item { background: var(--bg); padding: 40px 32px; transition: background 0.2s; }
.service-item:hover { background: var(--surface); }
.service-num { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 32px; }
.service-name { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; color: var(--text); }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* About */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.about-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--muted); }
.about-title { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 28px; color: var(--text); }
.about-body { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.skill-tag { font-size: 12px; letter-spacing: 0.04em; padding: 6px 14px; border: 1px solid var(--line); color: var(--muted); }

.about-stats { display: flex; flex-direction: column; gap: 12px; }
.about-stat-card { background: var(--surface); padding: 32px 28px; }
.about-stat-num { font-family: var(--serif); font-size: 52px; line-height: 1; margin-bottom: 8px; color: var(--text); }
.about-stat-label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.about-stat-card.quote { padding: 32px 28px; }
.about-stat-card.quote p { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--muted); line-height: 1.4; }

/* Contact */
.contact-inner { background: var(--surface); padding: 80px 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px; color: var(--text); }
.contact-body { font-size: 15px; color: var(--muted); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea { background: var(--bg); border: 1px solid var(--line); color: var(--text); padding: 14px 18px; font-family: var(--sans); font-size: 14px; font-weight: 300; outline: none; transition: border-color 0.2s; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); opacity: 0.6; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(232,232,232,0.35); }
.btn-send { background: var(--text); color: var(--bg); border: none; padding: 14px 28px; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; align-self: flex-start; transition: opacity 0.2s; }
.btn-send:hover { opacity: 0.85; }

/* === Privacy Policy Page Styles === */
.container { max-width: 720px; margin: 0 auto; padding: 80px 5vw 120px; }

.page-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.page-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--muted); }

.container h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 52px); line-height: 1.1; letter-spacing: -0.5px; color: var(--text); margin-bottom: 16px; }
.effective { font-size: 13px; color: var(--muted); margin-bottom: 60px; }

.container h2 { font-family: var(--serif); font-size: 24px; color: var(--text); margin: 48px 0 16px; font-weight: 400; }
.container p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.container ul { margin: 0 0 16px 20px; }
.container ul li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.container a { color: var(--text); }
.container .divider { border: none; border-top: 1px solid var(--line); margin: 48px 0; }

/* === Responsive === */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
