/*
Theme Name: Heather Rose Consulting
Theme URI: https://heatherdrose.com
Author: Heather Rose
Author URI: https://heatherdrose.com
Description: Custom HR consulting website for Heather Rose Consulting.
Version: 2.0
License: Private
Text Domain: heather-rose-consulting
*/

/* =============================================
   Heather Rose HR Consulting — Theme Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1C2B3A;
  --navy-mid:  #243447;
  --gold:      #C08B40;
  --gold-light:#D4A259;
  --cream:     #F9F7F4;
  --white:     #FFFFFF;
  --text:      #2D2D2D;
  --text-mid:  #555555;
  --text-light:#888888;
  --border:    #E8E3DA;
  --radius:    6px;
  --shadow:    0 2px 20px rgba(28,43,58,0.08);
  --shadow-lg: 0 8px 40px rgba(28,43,58,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Navigation --- */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(28,43,58,0.06);
}

body.admin-bar nav.site-nav { top: 32px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  overflow: hidden;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--navy); }

.nav-brand-text { display: flex; align-items: baseline; gap: 0.5rem; }
.nav-brand-name { color: var(--navy); }
.nav-brand-consulting { color: var(--gold); }

.nav-logo-img {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

/* WordPress auto-generated menu classes */
.nav-links li a,
#primary-menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links li a:hover,
#primary-menu li a:hover,
.nav-links li.current-menu-item a,
#primary-menu li.current-menu-item a,
.nav-links li.current_page_item a,
#primary-menu li.current_page_item a {
  color: var(--navy);
}

.nav-links li.current-menu-item a,
#primary-menu li.current-menu-item a,
.nav-links li.current_page_item a,
#primary-menu li.current_page_item a {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* WordPress menu wrapping ul */
ul#primary-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,139,64,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(28,43,58,0.3);
}

/* --- Section Spacing --- */
section { padding: 5rem 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
}

.gold-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243c52 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold-light); }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 0;
}

/* =============================================
   HOME PAGE
   ============================================= */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243c52 60%, #1a3346 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,139,64,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.hero-strip {
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 0;
}

.hero-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.strip-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.strip-stat strong {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
}

/* Services */
.services-section { background: var(--cream); }

.services-header { margin-bottom: 3.5rem; }

.services-section .services-header .section-sub {
  max-width: 780px;
}

.services-section .services-note {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-section .services-note .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(192,139,64,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Approach */
.approach-section {
  background: var(--white);
  padding-bottom: 2rem;
}

.approach-section + .services-section {
  padding-top: 2.5rem;
}

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

.approach-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #efe5d9 0%, #e6d7c7 100%);
  position: relative;
}

.approach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.approach-image { position: relative; }

.approach-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.approach-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.approach-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.approach-content .section-sub { max-width: 100%; }

.approach-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.approach-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.6rem;
}

/* ===== BUILD / GROW / SCALE GRID ===== */
.bgs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.bgs-col {
  border: 1px solid rgba(28,43,58,0.1);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(28,43,58,0.06);
}
.bgs-header {
  padding: 2rem 1.75rem 1.5rem;
  background: var(--navy);
  color: var(--white);
}
.bgs-header.build  { background: var(--navy); }
.bgs-header.grow   { background: #1e3d56; }
.bgs-header.scale  { background: #162e44; }
.bgs-icon {
  width: 44px;
  height: 44px;
  background: rgba(192,139,64,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.bgs-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bgs-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.bgs-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
}
.bgs-list {
  list-style: none;
  margin: 0;
  padding: 1.5rem 1.75rem;
}
.bgs-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(28,43,58,0.07);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.bgs-list li:last-child { border-bottom: none; }
.bgs-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
@media (max-width: 768px) {
  .bgs-grid { grid-template-columns: 1fr; }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #243c52 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Industries */
.industries-section {
  background: var(--cream);
  padding: 3.5rem 0;
}

.industries-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.industries-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.industries-list span {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.bio-section { background: var(--white); }

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

.bio-photo-col {
  position: sticky;
  top: 90px;
}

.bio-photo-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1C2B3A 0%, #243c52 100%);
}

.bio-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-credentials {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.credential-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon svg {
  width: 15px;
  height: 15px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.credential-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

.bio-content .section-sub { max-width: 100%; font-size: 1.05rem; }
.bio-content p { color: var(--text-mid); line-height: 1.85; }
.bio-content p + p { margin-top: 1.25rem; }
.bio-content h3 { font-size: 1.2rem; margin: 2.5rem 0 1rem; }

/* Expertise */
.expertise-section { background: var(--cream); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.expertise-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.expertise-item h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.expertise-item p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

/* Timeline */
.timeline-section { background: var(--white); }

.timeline {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.timeline-dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.timeline-body h4 { font-size: 1rem; margin-bottom: 0.2rem; }

.timeline-org {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.timeline-body p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

.about-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #243c52 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.about-cta h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.about-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section { background: var(--cream); }

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

.contact-info h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.info-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.info-value a { color: var(--navy); }
.info-value a:hover { color: var(--gold); }

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  background: #0077B5;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.linkedin-btn:hover {
  background: #005f91;
  color: var(--white);
  transform: translateY(-1px);
}

.linkedin-btn svg { width: 16px; height: 16px; fill: white; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }

.form-sub {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192,139,64,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; text-align: center; padding: 1rem; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* WPForms / CF7 overrides — pull these into theme style */
.wpforms-form input,
.wpforms-form textarea,
.wpforms-form select,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  outline: none;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(192,139,64,0.12) !important;
  background: var(--white);
}

.wpforms-submit,
.wpcf7-submit {
  background: var(--gold) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 0.85rem 2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius) !important;
  cursor: pointer;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  transition: all 0.25s !important;
}

.wpforms-submit:hover,
.wpcf7-submit:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* FAQ */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.faq-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* =============================================
   FOOTER
   ============================================= */

footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-brand span { color: var(--gold); }

.footer-tagline {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 860px) {
  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .approach-image { display: none; }
  .bio-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-photo-col { position: static; max-width: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  body.admin-bar nav.site-nav { top: 46px; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-inner { padding-left: 1.25rem; padding-right: 1.25rem; overflow: visible; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-width: 0; }
}

@media (max-width: 580px) {
  .nav-inner { min-height: 70px; position: relative; }
  .nav-logo { font-size: 1.08rem; gap: 0.5rem; min-width: 0; }
  .nav-logo-img { width: 42px !important; height: 42px !important; max-width: 42px !important; max-height: 42px !important; }
  .nav-brand-text { flex-direction: column; align-items: flex-start; gap: 0.1rem; line-height: 1.05; }
  .nav-brand-consulting { font-size: 0.82rem; }
  .nav-toggle { display: block; flex-shrink: 0; }
  ul#primary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 110;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 1.25rem 1rem;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 18px rgba(28,43,58,0.12);
  }
  ul#primary-menu.is-open { display: flex; }
  ul#primary-menu li a { display: block; padding: 0.75rem 0; }
  .hero h1 br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .bgs-grid { gap: 1.25rem; }
  .bgs-header, .bgs-list { padding-left: 1.25rem; padding-right: 1.25rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
