/*
Theme Name: OPS SOLVERE
Theme URI: https://opssolvere.com
Description: Custom theme for OPS SOLVERE - Operational Consulting
Version: 1.0.0
Author: OPS SOLVERE
Author URI: https://opssolvere.com
License: GPL v2 or later
Text Domain: opssolvere
*/

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F5F5F3;
  --gray-100: #EDEDED;
  --gray-400: #999999;
  --gray-600: #555555;
  --accent: #F47920;
  --accent-dark: #D96B0A;
  --font: 'Inter', sans-serif;
  --max: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── UTILITIES ──────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.btn-gold {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.btn-gold:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.accent {
  color: var(--accent);
}

/* ── NAV ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  height: 68px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244, 121, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SECTIONS ───────────────────────────────────────── */
section {
  padding: 112px 0;
}

section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.body-text {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.body-small {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── EXPERTISE ────────────────────────────────────────── */
.expertise-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.placeholder-box {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  min-height: 400px;
  border-radius: var(--radius);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  border-left: 2px solid rgba(244, 121, 32, 0.3);
  padding-left: 16px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ── SERVICES ───────────────────────────────────────── */
.services-section {
  background: var(--off-white);
  padding: 112px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 32px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ── METHODOLOGY ────────────────────────────────────── */
.methodology-section {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.method-step {
  display: flex;
  gap: 16px;
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.step-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
}

.method-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ── CONTACT ────────────────────────────────────────── */
.contact-section {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.contact-info {
  margin-top: 32px;
}

.contact-block {
  margin-bottom: 24px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 14px;
  color: var(--gray-600);
}

.contact-block a {
  color: var(--accent);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row input,
.form-row textarea {
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: inherit;
  background: var(--white);
  color: var(--black);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 40px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────– */
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .navbar .btn {
    padding: 10px 20px;
    font-size: 11px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .method-step {
    flex-direction: column;
  }
}
