/*
Theme Name: Valiant Law Group
Theme URI: https://valiantlawgrp.com
Author: Valiant Law Group
Author URI: https://valiantlawgrp.com
Description: A professional personal injury law firm WordPress theme featuring a bold navy and gold design. Includes a full homepage template with hero section, services, team values, community commitment, and contact form.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valiant-law
Tags: law, legal, personal-injury, responsive, one-page
*/

/* ====================================================
   CSS CUSTOM PROPERTIES
   ==================================================== */
:root {
  --navy: #0d1b3e;
  --navy-light: #152347;
  --gold: #c9a84c;
  --gold-dark: #b8932f;
  --gold-light: #e2c570;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --light-gray: #e8e9ec;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --container-width: 1200px;
  --container-pad: 0 24px;
}

/* ====================================================
   RESET & BASE
   ==================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

/* ====================================================
   CONTAINER
   ==================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ====================================================
   TYPOGRAPHY
   ==================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  line-height: 1.75;
  color: var(--text-mid);
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

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

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

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

/* ====================================================
   NAVIGATION
   ==================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ── Logo layout variants ── */

/* side-by-side (default): logo left, title right — handled by base .site-logo flex row */

/* logo-above: logo on top, title below */
.site-logo.layout-logo-above {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.site-logo.layout-logo-above .logo-text {
  text-align: center;
  font-size: 0.95rem;
}

/* logo-only: show logo image, hide the text */
.site-logo.layout-logo-only .logo-text {
  display: none;
}

/* title-only: show text, hide the icon box */
.site-logo.layout-title-only .logo-icon {
  display: none;
}

/* no-bg: transparent background on the icon box */
.logo-icon.no-bg {
  background: transparent !important;
  border-radius: 0 !important;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: font-size 0.2s ease, font-weight 0.2s ease;
}

/* ── Title size variants (applied via data-title-size on .site-logo) ── */
.site-logo[data-title-size="xs"] .logo-text { font-size: 0.85rem; }
.site-logo[data-title-size="sm"] .logo-text { font-size: 1.1rem;  }
.site-logo[data-title-size="md"] .logo-text { font-size: 1.45rem; }
.site-logo[data-title-size="lg"] .logo-text { font-size: 1.85rem; }
.site-logo[data-title-size="xl"] .logo-text { font-size: 2.4rem;  }

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#primary-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

#primary-menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-menu ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all var(--transition);
  text-decoration: none;
}

#primary-menu ul li a:hover,
#primary-menu ul li.current-menu-item > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

#primary-menu ul li.current-menu-item > a {
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  background: transparent;
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====================================================
   HERO SECTION
   ==================================================== */
#hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px 8px 0 0;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--navy), transparent);
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}

/* ====================================================
   WHY ATTORNEYS SECTION
   ==================================================== */
#why-attorneys {
  padding: 100px 0;
  background: var(--white);
}

.why-attorneys-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
}

.why-attorneys-text .section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-attorneys-text .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.why-attorneys-text h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.why-attorneys-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-card {
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.3);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ====================================================
   WHY FORMED SECTION
   ==================================================== */
#why-formed {
  padding: 100px 0;
  background: var(--off-white);
}

.why-formed-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
  text-align: center;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.why-formed-inner h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.why-formed-inner > p {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: var(--text-mid);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.pillar-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.25);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ====================================================
   COMMUNITY SECTION
   ==================================================== */
#community {
  padding: 100px 0;
  background: var(--white);
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
}

.community-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.community-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.community-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 3px solid var(--gold);
  pointer-events: none;
  transform: translate(12px, 12px);
  z-index: -1;
}

.community-content .section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.community-content .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.community-content h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.community-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.community-quote {
  position: relative;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: rgba(201, 168, 76, 0.04);
  border-radius: 0 6px 6px 0;
}

.community-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}

.community-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-dark);
  line-height: 1.7;
  margin: 0;
}

/* ====================================================
   CONTACT / FOOTER SECTION
   ==================================================== */
#contact {
  background: var(--navy);
  padding: 80px 0 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-pad);
  padding-bottom: 80px;
}

.contact-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-shield {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shield-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.shield-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.shield-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 40px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.9375rem;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ── Form response message ── */
.form-response {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  animation: fadeInUp 0.35s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-response--success {
  background: rgba(72, 187, 120, 0.15);
  border: 1px solid rgba(72, 187, 120, 0.45);
  border-left: 4px solid #68d391;
  color: #ffffff;
}

.form-response--success::before {
  content: '✓  ';
  font-weight: 700;
  color: #68d391;
}

.form-response--error {
  background: rgba(252, 129, 74, 0.15);
  border: 1px solid rgba(252, 129, 74, 0.4);
  border-left: 4px solid #fc814a;
  color: #ffffff;
}

.form-response--error::before {
  content: '⚠  ';
  font-weight: 700;
  color: #fc814a;
}

/* Contact Form 7 compatibility */
.wpcf7-response-output {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  border-left-width: 4px;
  border-left-style: solid;
}

.wpcf7-mail-sent-ok {
  background: rgba(72, 187, 120, 0.12);
  border-color: rgba(72, 187, 120, 0.3);
  border-left-color: #48bb78;
  color: #c6f6d5;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: rgba(252, 129, 74, 0.1);
  border-color: rgba(252, 129, 74, 0.3);
  border-left-color: #fc814a;
  color: #fed7aa;
}

/* ====================================================
   SITE FOOTER
   ==================================================== */
#site-footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-left {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-left a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

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

.footer-right {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

/* ====================================================
   SECTION DIVIDER / UTILITY
   ==================================================== */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}

.section-divider.center {
  margin: 20px auto;
}

/* ====================================================
   SCROLL ANIMATIONS
   ==================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ====================================================
   WORDPRESS NAVIGATION
   ==================================================== */
.wp-pagenavi {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 40px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  padding: 8px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  color: var(--text-mid);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ====================================================
   RESPONSIVE — TABLET (max 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px 60px;
  }

  .hero-image {
    justify-content: center;
  }

  .why-attorneys-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .community-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ====================================================
   RESPONSIVE — MOBILE (max 768px)
   ==================================================== */
@media (max-width: 768px) {
  #primary-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  #primary-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  #primary-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  #primary-menu ul li {
    width: 100%;
  }

  #primary-menu ul li a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 6px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .hamburger-desktop {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ====================================================
   ADMIN BAR OFFSET
   ==================================================== */
.admin-bar #site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
}

/* ====================================================
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   ==================================================== */
.wp-block-image img {
  border-radius: 8px;
}

.wp-block-quote {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}

/* ====================================================
   SKIP LINK ACCESSIBILITY
   ==================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
  transition: top 0.2s;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}
