/* ============================================
   BARTEL CONSULTING — Main Stylesheet
   ============================================ */

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

:root {
  --navy: #0f1f38;
  --navy-light: #1a3055;
  --gold: #c8a84b;
  --gold-light: #e2c97e;
  --cream: #f7f4ef;
  --white: #ffffff;
  --gray: #6b7280;
  --text: #1c2b3a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,31,56,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.25rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 6rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,168,75,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 80%, rgba(26,48,85,0.8) 0%, transparent 60%);
}

.hero-lines {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%;
  pointer-events: none;
}
.hero-lines svg { width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
h1 em { color: var(--gold); font-style: normal; }

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,168,75,0.08); color: var(--white); }

.hero-contact-strip {
  position: absolute; bottom: 2.5rem; left: 5%; right: 5%;
  display: flex; gap: 2.5rem; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  animation: fadeUp 1.1s ease 0.2s both;
  flex-wrap: wrap;
}
.hero-contact-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-contact-item a { color: var(--gold-light); text-decoration: none; }
.hero-contact-item a:hover { color: var(--white); }

/* ── SECTIONS ── */
section { padding: 6rem 5%; }

.section-eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--gold);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
}

/* ── SERVICES ── */
.services { background: var(--white); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: #e5e0d8;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: #faf8f4; }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.75; }
.service-card:hover .service-icon svg { stroke: var(--navy); }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── ABOUT ── */
.about { background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-card {
  background: var(--navy);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 50%;
}
.about-card-eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-card-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-card-role {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.about-stats {
  display: flex; gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.75rem;
}
.about-stat-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.about-offset {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80%; height: 80%;
  border: 1px solid rgba(200,168,75,0.3);
  z-index: -1;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* ── WHY ── */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 50%, rgba(200,168,75,0.06) 0%, transparent 65%);
}
.why .section-eyebrow::before { background: var(--gold); }
.why h2 { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.5); margin-bottom: 3.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-item {
  border-left: 2px solid rgba(200,168,75,0.3);
  padding-left: 1.5rem;
  transition: border-color 0.3s;
}
.why-item:hover { border-color: var(--gold); }
.why-num {
  font-family: 'Playfair Display', serif;
  color: rgba(200,168,75,0.2);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-title {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.why-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }

.contact-info { padding-top: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.contact-detail-text { font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.contact-detail-text a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-detail-text a:hover { color: var(--gold); }

/* Contact Form 7 overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  width: 100%;
  margin-bottom: 1rem;
}
.wpcf7 input[type="submit"] {
  background: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.25s;
  border-radius: 0;
}
.wpcf7 input[type="submit"]:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200,168,75,0.15);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-logo span { color: var(--gold); }
footer p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
footer a { color: rgba(255,255,255,0.3); font-size: 0.8rem; text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-offset { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    border-top: 1px solid rgba(200,168,75,0.15);
  }
  .nav-mobile-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .hero-contact-strip { flex-direction: column; gap: 0.75rem; bottom: 1.5rem; }
  .hero-lines { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1rem; }
  footer { flex-direction: column; text-align: center; }
}
