/* =========================================================
   LLT CONSULTING — Main Stylesheet
   Champagne gold × deep charcoal × alabaster white
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---------------------------------------------------------
   DESIGN TOKENS
--------------------------------------------------------- */
:root {
  --gold:          #C9A96E;
  --gold-light:    #E2C997;
  --gold-dark:     #9A7A4A;
  --gold-pale:     #F5EDD8;
  --charcoal:      #1A1A24;
  --charcoal-mid:  #2E2E3A;
  --slate:         #4A4A5A;
  --alabaster:     #FAFAF7;
  --white:         #FFFFFF;
  --muted:         #8A8A9A;
  --serif:         'Cormorant Garamond', Georgia, serif;
  --sans:          'Jost', system-ui, sans-serif;
  --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------------------------------------------------------
   RESET & BASE
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--alabaster);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* WordPress alignment classes */
.aligncenter { display: block; margin: 0 auto; }
.alignleft   { float: left; margin-right: 1.5rem; }
.alignright  { float: right; margin-left: 1.5rem; }
.wp-caption  { max-width: 100%; }

/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 36, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

.site-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.site-logo span { color: var(--white); font-weight: 300; }
.site-logo img  { height: 40px; width: auto; }

.main-navigation ul {
  display: flex;
  gap: 36px;
}
.main-navigation a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--gold); }

.nav-cta a {
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: background var(--transition) !important;
}
.nav-cta a:hover { background: var(--gold-light) !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  left: 50%; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
  opacity: 0.3;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.7s 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeUp 0.7s 0.35s both;
}
.hero-name em { font-style: normal; color: var(--gold); }

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.48s both;
}

.hero-tagline {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  margin-bottom: 48px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.58s both;
}
.hero-tagline strong { color: var(--gold-light); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.7s both;
}

.hero-image-panel {
  position: relative;
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--charcoal) 0%, transparent 30%),
    linear-gradient(to top,   var(--charcoal) 0%, transparent 30%);
}

.hero-badge {
  position: absolute;
  bottom: 48px; right: 48px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 18px 28px;
  text-align: center;
}
.hero-badge-line1 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.hero-badge-line2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--charcoal);
}
.btn-outline {
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold-light);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

/* ---------------------------------------------------------
   SECTION UTILITY
--------------------------------------------------------- */
.section {
  padding: 100px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.section-label.centered { justify-content: center; }
.section-label.centered::after { display: none; }

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.section-heading.light { color: var(--white); }
.section-heading em { font-style: italic; color: var(--gold); }

.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate);
  max-width: 640px;
}
.section-lead.light { color: rgba(255,255,255,0.72); }

/* ---------------------------------------------------------
   ABOUT SECTION
--------------------------------------------------------- */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-frame { position: relative; }
.about-image-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--gold-pale);
  z-index: 0;
}
.about-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}

.about-credentials {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--charcoal);
  color: var(--white);
  padding: 24px 28px;
  z-index: 2;
}
.cred-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.cred-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.about-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-principles {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.principle { display: flex; gap: 16px; align-items: flex-start; }
.principle-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}
.principle-text { font-size: 0.95rem; color: var(--slate); line-height: 1.6; }
.principle-text strong { color: var(--charcoal); font-weight: 600; }

/* ---------------------------------------------------------
   PHILOSOPHY SECTION
--------------------------------------------------------- */
.philosophy-section {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: 'LLT';
  position: absolute;
  font-family: var(--serif);
  font-size: 22rem;
  font-weight: 600;
  color: rgba(201,169,110,0.04);
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.philosophy-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.philosophy-body p:last-child { margin-bottom: 0; }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: rgba(201,169,110,0.06);
  margin-top: 40px;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-light);
}

/* ---------------------------------------------------------
   SERVICES SECTION
--------------------------------------------------------- */
.services-section { background: var(--alabaster); }

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,169,110,0.15);
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(26,26,36,0.1);
  z-index: 1;
}

.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: var(--gold-light); }

.service-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}

.service-lead {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 24px;
}

.service-bullets { display: flex; flex-direction: column; gap: 8px; }
.service-bullets li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------------------------------------------------------
   PILLARS SECTION
--------------------------------------------------------- */
.pillars-section { background: var(--charcoal); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.pillar {
  border-top: 1px solid rgba(201,169,110,0.25);
  padding-top: 32px;
}
.pillar-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.pillar p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.55); }

.pillar-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pillar-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 5px 12px;
}

/* ---------------------------------------------------------
   TESTIMONIALS SECTION
--------------------------------------------------------- */
.testimonials-section { background: var(--white); }

.testimonials-header { text-align: center; margin-bottom: 64px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 40px 36px;
  background: var(--alabaster);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 28px;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-pale);
  font-weight: 300;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 32px;
}
.testimonial-attr {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.testimonial-featured {
  background: var(--charcoal);
  padding: 60px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
  color: rgba(201,169,110,0.06);
  font-weight: 300;
  pointer-events: none;
}
.testimonial-featured blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}
.testimonial-featured cite {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ---------------------------------------------------------
   EXPERIENCE SECTION
--------------------------------------------------------- */
.experience-section { background: var(--alabaster); }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}

.experience-col h3 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.exp-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,26,36,0.06);
}
.exp-item:last-child { border-bottom: none; }
.exp-role { font-weight: 600; font-size: 0.92rem; color: var(--charcoal); margin-bottom: 4px; }
.exp-org  { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--slate); margin-bottom: 4px; }
.exp-location { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; }

/* ---------------------------------------------------------
   TEAM SECTION
--------------------------------------------------------- */
.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold-pale);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-avatar-placeholder {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
}

.team-info h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.team-info p { font-size: 0.9rem; line-height: 1.78; color: var(--slate); }

/* ---------------------------------------------------------
   CONTACT SECTION
--------------------------------------------------------- */
.contact-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.contact-info-block { margin-bottom: 32px; }
.contact-info-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info-value { font-size: 1rem; color: rgba(255,255,255,0.8); }
.contact-info-note  { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

.social-links { display: flex; gap: 16px; margin-top: 40px; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* Contact form styles — works with CF7 and WPForms */
.contact-form,
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group,
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label,
label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
}
.form-group textarea,
.wpcf7-form textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--charcoal-mid); }

.wpcf7-submit,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  border-radius: 0;
}
.wpcf7-submit:hover,
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* CF7 response messages */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 20px;
  font-size: 0.85rem;
  border: none !important;
}
.wpcf7-mail-sent-ok { background: rgba(201,169,110,0.15); color: var(--gold-light); }
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors { background: rgba(220,50,50,0.1); color: #ff9999; }
.wpcf7-not-valid-tip { font-size: 0.72rem; color: #ff9999; margin-top: 4px; }
.wpcf7-spinner { display: none; }

/* ---------------------------------------------------------
   SITE FOOTER
--------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* WordPress footer widget area */
.footer-widgets {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.footer-widget h3 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-widget p,
.footer-widget li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-widget a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-widget a:hover { color: var(--gold); }

/* ---------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
--------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   WORDPRESS CORE
--------------------------------------------------------- */
/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 8px 16px;
  font-size: 0.8rem;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-section::after { display: none; }
  .hero-content { padding: 140px 40px 60px; }
  .hero-image-panel { display: none; }
  .about-grid,
  .philosophy-grid,
  .contact-grid,
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .main-navigation { display: none; }
  .menu-toggle { display: flex; }
  .footer-widgets { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-navigation.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--charcoal-mid);
    padding: 24px 32px;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .main-navigation.is-open ul {
    flex-direction: column;
    gap: 20px;
  }
  .main-navigation.is-open a {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .site-header { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
  .hero-content { padding: 120px 24px 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { padding: 0 24px; }
  .hero-badge { display: none; }
  .about-credentials { position: static; margin-top: 24px; display: inline-block; }
  .about-image-frame::before { display: none; }
  .testimonial-featured { padding: 40px 28px; }
  .footer-widgets { padding: 40px 24px 24px; }
}