/*
Theme Name: Yellowstone
Theme URI: https://yellowstonewealthgroup.com
Author: Yellowstone Wealth
Description: Custom theme for Yellowstone Wealth — a premier multi-family office in Coral Gables, FL. Classic theme with a token-based design system built to scale across additional pages.
Version: 1.0.9
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yellowstone
Tags: one-column, custom-logo, custom-menu, sticky-post
*/

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --yw-black: #1A1A1A;
  --yw-black-soft: #222222;
  --yw-black-alt: #272727;
  --yw-gold: #B8960C;
  --yw-gold-light: #D4BC6A;
  --yw-cream: #FAFAF5;
  --yw-white: #FFFFFF;

  /* Text colors */
  --yw-text: #333333;
  --yw-text-mid: #555555;
  --yw-text-soft: #666666;
  --yw-text-muted: #777777;
  --yw-text-faint: #888888;
  --yw-text-dim: #999999;

  /* Borders & surfaces */
  --yw-border: #EEEAE0;
  --yw-border-dark: #E4DDCF;
  --yw-footer-bg: #F5F2EA;
  --yw-footer-border: #E8E4D8;
  --yw-dark-line: #2A2A2A;
  --yw-dark-input: #333333;

  /* Typography */
  --yw-font-heading: 'Sora', sans-serif;
  --yw-font-body: 'DM Sans', sans-serif;

  /* Layout */
  --yw-max-width: 1280px;
  --yw-pad-x: 64px;
  --yw-pad-y: 80px;

  /* Misc */
  --yw-radius: 8px;
  --yw-radius-lg: 10px;
  --yw-transition: all 0.25s ease;
}

/* -------------------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--yw-white); }
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--yw-font-body); color: var(--yw-text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
input::placeholder { color: var(--yw-text-faint); }
input { -webkit-appearance: none; appearance: none; }

/* Sticky header offset for the WP admin bar */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--yw-font-body);
  font-size: 10.5px;
  color: var(--yw-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow--tight { letter-spacing: 3px; }
.eyebrow--wide { letter-spacing: 4.5px; margin-bottom: 28px; }

.h-hero {
  font-family: var(--yw-font-heading);
  font-size: 62px;
  font-weight: 700;
  color: var(--yw-black);
  line-height: 1.05;
  margin: 0 0 24px;
  text-wrap: balance;
}
.h-lg {
  font-family: var(--yw-font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--yw-black);
  line-height: 1.15;
  margin: 0;
}
.h-lg--md { font-size: 38px; }
.h-md {
  font-family: var(--yw-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--yw-black);
  line-height: 1.3;
  margin: 0 0 16px;
}
.h-sm {
  font-family: var(--yw-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--yw-black);
  line-height: 1.35;
  margin: 0 0 12px;
}
.on-dark { color: var(--yw-white); }

.lead {
  font-family: var(--yw-font-body);
  font-size: 15.5px;
  color: var(--yw-text-soft);
  line-height: 1.85;
  margin: 0 0 40px;
}
.body-lg { font-family: var(--yw-font-body); font-size: 16px; color: var(--yw-text); line-height: 1.9; margin: 0 0 20px; }
.body-md { font-family: var(--yw-font-body); font-size: 15px; color: var(--yw-text-mid); line-height: 1.85; margin: 0 0 24px; }
.body-sm { font-family: var(--yw-font-body); font-size: 14px; color: var(--yw-text-muted); line-height: 1.85; margin: 0; }
.body-sm--soft { color: var(--yw-text-soft); line-height: 1.8; }

/* -------------------------------------------------------------------------
   4. BUTTONS & LINKS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--yw-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 28px;
  cursor: pointer;
  transition: var(--yw-transition);
}
.btn--dark { color: var(--yw-white); background: var(--yw-black); }
.btn--dark:hover { background: var(--yw-gold); }
.btn--outline { color: var(--yw-black); border: 1.5px solid var(--yw-black); font-weight: 500; }
.btn--outline:hover { background: var(--yw-black); color: var(--yw-white); }
.btn--sm { font-size: 13px; padding: 11px 28px; border-radius: 24px; }

.link-dark {
  font-family: var(--yw-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--yw-black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--yw-black);
  padding-bottom: 2px;
  transition: var(--yw-transition);
}
.link-dark--thin { border-bottom-width: 1.5px; }
.link-dark:hover { color: var(--yw-gold); border-color: var(--yw-gold); }
.link-gold {
  font-family: var(--yw-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--yw-gold);
  cursor: pointer;
}

/* -------------------------------------------------------------------------
   5. LAYOUT
   ------------------------------------------------------------------------- */
.site-main {
  max-width: var(--yw-max-width);
  margin: 0 auto;
  background: var(--yw-white);
}
.section { padding: var(--yw-pad-y) var(--yw-pad-x); background: var(--yw-white); }
.section--cream { background: var(--yw-cream); }
.section--dark { background: var(--yw-black); }
.section--flush { padding: 0; }
.section--tight { padding-top: 72px; padding-bottom: 72px; }
.bt { border-top: 1.5px solid var(--yw-border); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head--top { align-items: flex-start; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head__note {
  max-width: 340px;
  font-family: var(--yw-font-body);
  font-size: 14px;
  color: var(--yw-text-muted);
  line-height: 1.85;
  margin: 0;
}
.section-head__note--right { text-align: right; color: var(--yw-text-mid); }
.section-head__note--pad { padding-top: 8px; }

.split { display: flex; gap: 64px; align-items: flex-start; }
.split--wide { gap: 72px; }
.split--about { gap: 68px; }
.split--process { gap: 56px; }

/* -------------------------------------------------------------------------
   6. HEADER / NAV
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 52px;
  background: var(--yw-white);
  border-bottom: 1.5px solid var(--yw-border);
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding img, .site-branding .custom-logo { height: 34px; width: auto; }
.site-branding__name {
  font-family: var(--yw-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--yw-black);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--yw-font-body);
  font-size: 14px;
  color: var(--yw-text-faint);
  cursor: pointer;
  transition: color 0.25s ease;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--yw-black); }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--yw-black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel (hidden on desktop) */
.mobile-nav { display: none; }
@media (max-width: 900px) {
  .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--yw-white);
    border-bottom: 1.5px solid var(--yw-border);
    padding: 8px 24px 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav__links { list-style: none; margin: 0 0 16px; padding: 0; }
  .mobile-nav__links li { border-bottom: 1px solid var(--yw-border); }
  .mobile-nav__links a {
    display: block;
    padding: 15px 2px;
    font-family: var(--yw-font-body);
    font-size: 15px;
    color: var(--yw-text-mid);
  }
  .mobile-nav__links a:hover, .mobile-nav__links .current-menu-item > a { color: var(--yw-black); }
  .mobile-nav__cta { display: block; text-align: center; }
}

/* -------------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------------- */
.hero { display: flex; min-height: 680px; background: var(--yw-white); }
.hero__body { flex: 1; padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.hero__body .lead { max-width: 440px; }
.hero__actions { display: flex; gap: 12px; margin-bottom: 52px; flex-wrap: wrap; }
.hero__media { flex: 0 0 42%; position: relative; overflow: hidden; }
.hero__media-img { position: absolute; inset: 0; background-size: cover; background-position: center; }

.stats { display: flex; gap: 0; border-top: 1.5px solid var(--yw-border); padding-top: 28px; }
.stats__item { flex: 1; padding: 0 20px; }
.stats__item:first-child { padding-left: 0; }
.stats__divider { width: 1.5px; background: var(--yw-border); }
.stats__value { font-family: var(--yw-font-heading); font-size: 30px; font-weight: 700; color: var(--yw-black); margin-bottom: 4px; }
.stats__label { font-family: var(--yw-font-body); font-size: 11px; color: var(--yw-gold); letter-spacing: 2px; text-transform: uppercase; }

/* -------------------------------------------------------------------------
   8. ABOUT
   ------------------------------------------------------------------------- */
.about__aside { flex: 0 0 360px; }
.about__quote { font-family: var(--yw-font-heading); font-size: 27px; font-weight: 700; color: var(--yw-black); line-height: 1.3; margin: 0 0 24px; }
.about__img { width: 100%; height: 256px; object-fit: cover; border-radius: var(--yw-radius); display: block; }
.about__body { flex: 1; padding-top: 4px; }

/* -------------------------------------------------------------------------
   9. SERVICES (feature rows + grid cells)
   ------------------------------------------------------------------------- */
.feature { display: flex; min-height: 360px; border-top: 1.5px solid var(--yw-border); }
.feature__media { flex: 0 0 52%; position: relative; overflow: hidden; }
.feature__media--sm { flex-basis: 48%; }
.feature__media--md { flex-basis: 50%; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature__body {
  flex: 1;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--yw-cream);
}
.feature__body--white { background: var(--yw-white); }
.feature__body .eyebrow { letter-spacing: 3px; }

.callout {
  padding: 16px 20px;
  background: var(--yw-cream);
  border-radius: var(--yw-radius);
  border-left: 3px solid var(--yw-gold);
  margin-bottom: 22px;
}
.callout__title { font-family: var(--yw-font-body); font-size: 11.5px; color: var(--yw-gold); font-weight: 600; margin-bottom: 5px; }
.callout__text { font-family: var(--yw-font-body); font-size: 13px; color: var(--yw-text-mid); line-height: 1.7; }

.cell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1.5px solid var(--yw-border); }
.cell {
  padding: 40px 36px;
  background: var(--yw-white);
  cursor: pointer;
  transition: background 0.25s ease;
}
.cell:not(:last-child) { border-right: 1.5px solid var(--yw-border); }
.cell:hover { background: var(--yw-cream); }

/* -------------------------------------------------------------------------
   10. WHO WE SERVE
   ------------------------------------------------------------------------- */
.serve__aside { flex: 0 0 320px; }
.serve__aside h2 { font-family: var(--yw-font-heading); font-size: 30px; font-weight: 700; color: var(--yw-black); line-height: 1.2; margin: 0 0 20px; }
.serve__aside .body-sm { margin-bottom: 28px; }
.serve__img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--yw-radius); display: block; }
.serve__list { flex: 1; }

.serve-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--yw-border);
  cursor: pointer;
  transition: var(--yw-transition);
}
.serve-row:hover { padding-left: 8px; background: rgba(184, 150, 12, 0.02); }
.serve-row__num { font-family: var(--yw-font-heading); font-size: 12px; font-weight: 700; color: var(--yw-gold); min-width: 28px; padding-top: 3px; }
.serve-row__body { flex: 1; }
.serve-row__title { font-family: var(--yw-font-heading); font-size: 17px; font-weight: 600; color: var(--yw-black); margin-bottom: 6px; line-height: 1.3; }
.serve-row__text { font-family: var(--yw-font-body); font-size: 14px; color: var(--yw-text-muted); line-height: 1.75; }

/* -------------------------------------------------------------------------
   11. PROCESS / TIMELINE
   ------------------------------------------------------------------------- */
.timeline { flex: 1; position: relative; }
.timeline__line {
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 56px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--yw-gold), rgba(184, 150, 12, 0.1));
  z-index: 0;
}
.step { display: flex; gap: 32px; align-items: flex-start; padding-bottom: 36px; position: relative; z-index: 1; }
.step__marker {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yw-white);
  border: 2px solid var(--yw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--yw-cream);
  font-family: var(--yw-font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--yw-gold);
}
.step__body { flex: 1; padding-top: 7px; }
.step__title { font-family: var(--yw-font-heading); font-size: 19px; font-weight: 700; color: var(--yw-black); margin: 0 0 8px; line-height: 1.25; }
.step__text { font-family: var(--yw-font-body); font-size: 14px; color: var(--yw-text-soft); line-height: 1.85; margin: 0; }

.process__media { flex: 0 0 360px; position: relative; border-radius: var(--yw-radius-lg); overflow: hidden; }
.process__media img { width: 100%; height: 500px; object-fit: cover; display: block; }
.process__media-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  font-family: var(--yw-font-body);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

/* -------------------------------------------------------------------------
   12. ALLIANCE (light partner grid)
   ------------------------------------------------------------------------- */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--yw-border); }
.partner-cell { background: var(--yw-white); padding: 24px 22px; cursor: pointer; transition: background 0.25s ease; }
.partner-cell:hover { background: var(--yw-cream); }
.partner-cell__brand { display: flex; align-items: center; min-height: 60px; margin-bottom: 12px; }
.partner-cell__logo { max-height: 61px; width: auto; max-width: 80%; object-fit: contain; display: block; }
.partner-cell__tag { font-family: var(--yw-font-body); font-size: 10px; font-weight: 700; color: var(--yw-gold); letter-spacing: 2px; text-transform: uppercase; }
.partner-cell__name { font-family: var(--yw-font-heading); font-size: 14px; font-weight: 700; color: var(--yw-black); margin-bottom: 7px; line-height: 1.3; }
.partner-cell__text { font-family: var(--yw-font-body); font-size: 12px; color: var(--yw-text-soft); line-height: 1.6; }

/* Alliance banner: full-width emphasized cell tying the partner grid together */
.partner-cell--alliance { grid-column: 1 / -1; text-align: center; padding: 36px 24px; cursor: default; background: color-mix(in srgb, var(--yw-gold) 6%, var(--yw-white)); border-top: 2px solid var(--yw-gold-light); }
.partner-cell--alliance:hover { background: color-mix(in srgb, var(--yw-gold) 6%, var(--yw-white)); }
.partner-cell--alliance .partner-cell__brand { justify-content: center; }
.partner-cell--alliance .partner-cell__name { font-size: 17px; }
.partner-cell--alliance .partner-cell__text { max-width: 620px; margin: 0 auto; }

/* -------------------------------------------------------------------------
   13. TEAM
   ------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
  background: var(--yw-cream);
  border-radius: var(--yw-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.team-card:hover { box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.team-card__photo { background-size: cover; background-position: top center; height: 320px; width: 100%; }
.team-card__body { padding: 20px 24px 24px; }
.team-card__name { font-family: var(--yw-font-heading); font-size: 17px; font-weight: 700; color: var(--yw-black); margin-bottom: 3px; }
.team-card__role { font-family: var(--yw-font-body); font-size: 11px; color: var(--yw-gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.team-card__bio { font-family: var(--yw-font-body); font-size: 13px; color: var(--yw-text-soft); line-height: 1.75; margin-bottom: 14px; }
.team-card__email { font-family: var(--yw-font-body); font-size: 12px; color: var(--yw-gold); }

/* -------------------------------------------------------------------------
   14. TESTIMONIAL
   ------------------------------------------------------------------------- */
.testimonial {
  position: relative;
  padding: 100px var(--yw-pad-x);
  background: var(--yw-cream);
  border-top: 1.5px solid var(--yw-border);
  text-align: center;
  overflow: hidden;
}
.testimonial__bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0.1; }
.testimonial__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 40px;
  background: color-mix(in srgb, var(--yw-white) 70%, transparent);
  border: 1px solid var(--yw-border);
  border-radius: var(--yw-radius-lg);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.testimonial__mark { font-family: var(--yw-font-heading); font-size: 88px; font-weight: 700; color: var(--yw-gold); line-height: 0.7; margin-bottom: 24px; opacity: 0.3; }
.testimonial__quote { font-family: var(--yw-font-heading); font-size: 24px; font-weight: 600; color: var(--yw-black); line-height: 1.55; margin: 0 0 28px; }
.testimonial__rule { width: 32px; height: 2px; background: var(--yw-gold); margin: 0 auto 18px; }
.testimonial__source { font-family: var(--yw-font-body); font-size: 14px; font-weight: 600; color: var(--yw-gold); margin-bottom: 4px; }
.testimonial__place { font-family: var(--yw-font-body); font-size: 13px; color: var(--yw-text-soft); }

/* -------------------------------------------------------------------------
   15. FAQ
   ------------------------------------------------------------------------- */
/* FAQ (editorial accordion) */
.faq-accordion { border-top: 1.5px solid var(--yw-border); border-bottom: 1.5px solid var(--yw-border); }
.faq-accordion .faq-item { border-bottom: 1.5px solid var(--yw-border); }
.faq-accordion .faq-item:last-child { border-bottom: none; }
.faq-accordion .faq-item__head { display: flex; align-items: center; gap: 20px; width: 100%; padding: 28px 24px; background: none; border: none; cursor: pointer; text-align: left; font: inherit; transition: background 0.25s ease; }
.faq-accordion .faq-item__head:hover { background: var(--yw-cream); }
.faq-accordion .faq-item__q { flex: 1; min-width: 0; font-family: var(--yw-font-heading); font-size: 17px; font-weight: 600; color: var(--yw-black); line-height: 1.4; padding-right: 12px; }
.faq-accordion .faq-item__icon { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--yw-gold); }
.faq-accordion .faq-item__icon::before, .faq-accordion .faq-item__icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 11px; height: 1.5px; background: var(--yw-gold); transform: translate(-50%, -50%); transition: opacity 0.3s ease; }
.faq-accordion .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-accordion .faq-item__head[aria-expanded="true"] .faq-item__icon::after { opacity: 0; }
.faq-accordion .faq-item__panel { padding: 0 24px 28px; }
.faq-accordion .faq-item__panel[hidden] { display: none; }
.faq-accordion .faq-item__a { margin: 0; padding-top: 16px; border-top: 1px solid var(--yw-border); font-family: var(--yw-font-body); font-size: 14px; color: var(--yw-text-soft); line-height: 1.85; }

/* -------------------------------------------------------------------------
   16. CONTACT / CTA
   ------------------------------------------------------------------------- */
.contact { background: var(--yw-cream); }
.contact .eyebrow { margin-bottom: 20px; }
.contact__info { flex: 1; }
.contact__info h2 { margin-bottom: 20px; }
.contact__blurb { font-family: var(--yw-font-body); font-size: 15px; color: var(--yw-text-soft); line-height: 1.85; margin: 0 0 36px; max-width: 380px; }
.contact__details { display: flex; flex-direction: column; gap: 10px; }
.contact__details a, .contact__details div { font-family: var(--yw-font-body); font-size: 13px; color: var(--yw-text-mid); }

.inquiry-form { flex: 0 0 420px; display: flex; flex-direction: column; gap: 10px; }
.inquiry-form__label { font-family: var(--yw-font-body); font-size: 10.5px; color: var(--yw-text-dim); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.inquiry-form__row { display: flex; gap: 10px; }
.inquiry-form input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: var(--yw-white);
  border: 1px solid var(--yw-border-dark);
  border-radius: var(--yw-radius);
  color: var(--yw-text);
  font-family: var(--yw-font-body);
  font-size: 14px;
  outline: none;
}
.inquiry-form__row input { flex: 1; }
.submit-btn {
  padding: 15px;
  background: var(--yw-gold);
  border: none;
  border-radius: var(--yw-radius);
  font-family: var(--yw-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--yw-white);
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease;
  margin-top: 4px;
}
.submit-btn:hover { background: var(--yw-gold-light); }

/* Contact Form 7 rendered inside .inquiry-form--cf7 */
/* CF7 outputs the submit as <input type="submit">, so it needs more
   specificity than the generic .inquiry-form input field styling. */
.inquiry-form input.submit-btn,
.inquiry-form input[type="submit"] {
  background: var(--yw-gold);
  border: none;
  color: var(--yw-white);
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
}
.inquiry-form input.submit-btn:hover,
.inquiry-form input[type="submit"]:hover { background: var(--yw-gold-light); }
.inquiry-form--cf7 { display: block; }
.inquiry-form--cf7 .wpcf7-form { display: flex; flex-direction: column; gap: 10px; }
.inquiry-form--cf7 .wpcf7-form p { margin: 0; display: contents; }
.inquiry-form--cf7 .wpcf7-form br { display: none; }
.inquiry-form--cf7 .submit-btn { width: 100%; }
.inquiry-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.inquiry-form__row .wpcf7-form-control-wrap { flex: 1; min-width: 0; }
.inquiry-form .wpcf7-not-valid-tip {
  font-family: var(--yw-font-body);
  font-size: 12px;
  color: #E08585;
  margin-top: 4px;
}
.inquiry-form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 16px;
  border: 1px solid var(--yw-gold) !important;
  border-radius: var(--yw-radius);
  font-family: var(--yw-font-body);
  font-size: 13px;
  color: #EEE;
}
.inquiry-form .wpcf7-form.invalid .wpcf7-response-output,
.inquiry-form .wpcf7-form.failed .wpcf7-response-output { border-color: #E08585 !important; color: #E08585; }
.inquiry-form .wpcf7-spinner { margin: 0 auto; }

/* -------------------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  padding: 26px var(--yw-pad-x);
  background: var(--yw-cream);
  border-top: 1.5px solid var(--yw-footer-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--yw-max-width);
  margin: 0 auto;
}
.site-footer .site-branding img, .site-footer .site-branding .custom-logo { height: 26px; }
.site-footer .site-branding__name { font-size: 12px; }
.site-footer__copy { font-family: var(--yw-font-body); font-size: 11px; color: #AAA; }

/* -------------------------------------------------------------------------
   18. INNER PAGES (default page/post content)
   ------------------------------------------------------------------------- */
.page-content { padding: var(--yw-pad-y) var(--yw-pad-x); max-width: 860px; margin: 0 auto; }
.page-content h1.entry-title { font-family: var(--yw-font-heading); font-size: 42px; font-weight: 700; color: var(--yw-black); line-height: 1.15; margin: 0 0 32px; }
.entry-content { font-family: var(--yw-font-body); font-size: 15.5px; color: var(--yw-text); line-height: 1.85; }
.entry-content h2 { font-family: var(--yw-font-heading); font-size: 28px; font-weight: 700; color: var(--yw-black); line-height: 1.25; margin: 40px 0 16px; }
.entry-content h3 { font-family: var(--yw-font-heading); font-size: 21px; font-weight: 700; color: var(--yw-black); line-height: 1.3; margin: 32px 0 12px; }
.entry-content a { color: var(--yw-gold); border-bottom: 1px solid var(--yw-gold); }
.entry-content img { border-radius: var(--yw-radius); }
.entry-content blockquote {
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--yw-cream);
  border-left: 3px solid var(--yw-gold);
  border-radius: var(--yw-radius);
}

/* -------------------------------------------------------------------------
   18b. ABOUT PAGE
   ------------------------------------------------------------------------- */
.about-hero { display: flex; gap: 64px; align-items: center; }
.about-hero__body { flex: 1; }
.about-hero__body .h-lg { margin-bottom: 24px; }
.about-hero__media { flex: 0 0 44%; border-radius: var(--yw-radius-lg); overflow: hidden; }
.about-hero__media img { width: 100%; height: 420px; object-fit: cover; display: block; }

.alliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.alliance-card {
  background: var(--yw-cream);
  border-radius: var(--yw-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.alliance-card:hover { box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.alliance-card__photo { height: 220px; width: 100%; background-size: cover; background-position: center; }
.alliance-card__body { padding: 20px 24px 24px; }
.alliance-card__name { font-family: var(--yw-font-heading); font-size: 17px; font-weight: 700; color: var(--yw-black); margin-bottom: 6px; line-height: 1.35; }
.alliance-card__meta { font-family: var(--yw-font-body); font-size: 11px; color: var(--yw-gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.alliance-card__text { font-family: var(--yw-font-body); font-size: 13px; color: var(--yw-text-soft); line-height: 1.75; }

.cta-band { text-align: center; }
.cta-band .h-lg { margin-bottom: 16px; }
.cta-band p { max-width: 520px; margin: 0 auto 32px; }

/* -------------------------------------------------------------------------
   18c. INNER PAGE COMPONENTS (services, who-we-serve, team, process, faq)
   ------------------------------------------------------------------------- */
.page-intro { max-width: 720px; }
.page-intro .h-lg { margin-bottom: 20px; }

/* FAQ accordion (markup wired to main.js) */
.faq-list { max-width: 860px; }
.faq-list .faq-item { border: 1.5px solid var(--yw-border); border-radius: var(--yw-radius-lg); margin-bottom: 12px; overflow: hidden; transition: var(--yw-transition); }
.faq-list .faq-item:hover { border-color: var(--yw-gold); }
.faq-list .faq-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  background: var(--yw-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--yw-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--yw-black);
  line-height: 1.4;
}
.faq-list .faq-item__head::after {
  content: '+';
  font-family: var(--yw-font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--yw-gold);
  flex: none;
  transition: transform 0.25s ease;
}
.faq-list .faq-item__head[aria-expanded="true"] { background: var(--yw-cream); }
.faq-list .faq-item__head[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-list .faq-item__panel { padding: 0 28px 24px; background: var(--yw-cream); font-family: var(--yw-font-body); font-size: 14px; color: var(--yw-text-soft); line-height: 1.8; }

/* Partner logo cards (team & partners page) */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-card { background: var(--yw-white); border-radius: var(--yw-radius-lg); padding: 24px 20px; text-align: center; transition: var(--yw-transition); }
.logo-card:hover { box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.logo-card__img { height: 72px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.logo-card__img img { max-height: 72px; max-width: 100%; width: auto; object-fit: contain; }
.logo-card__name { font-family: var(--yw-font-heading); font-size: 14px; font-weight: 700; color: var(--yw-black); margin-bottom: 6px; line-height: 1.3; }
.logo-card__name a { color: inherit; }
.logo-card__name a:hover { color: var(--yw-gold); }
.logo-card__tag { font-family: var(--yw-font-body); font-size: 11.5px; color: var(--yw-text-muted); line-height: 1.5; }

/* Image strip + ticker (boutique band) */
.img-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0 32px; }
.img-strip img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--yw-radius-lg); display: block; }
.ticker { text-align: center; font-family: var(--yw-font-body); font-size: 12px; font-weight: 600; color: var(--yw-gold); letter-spacing: 3.5px; text-transform: uppercase; }

/* -------------------------------------------------------------------------
   19. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --yw-pad-x: 24px; }
  .split, .feature, .hero { flex-direction: column; }
  .cell-grid, .team-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .h-hero { font-size: 40px; }
  .h-lg { font-size: 32px; }
  .hero__media, .feature__media { flex: none; width: 100%; min-height: 300px; }
  .feature__media img { height: 300px; }
  .about__aside, .serve__aside, .process__media, .inquiry-form { flex: none; width: 100%; }
  .cell:not(:last-child) { border-right: none; border-bottom: 1.5px solid var(--yw-border); }
  .about-hero { flex-direction: column; }
  .about-hero__media { flex: none; width: 100%; }
  .about-hero__media img { height: 300px; }
  .alliance-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .img-strip { grid-template-columns: repeat(2, 1fr); }
  .section-head__note--right { text-align: left; max-width: none; }
  .feature__media { order: 0 !important; }
  .site-header { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: 1fr; }
  .h-hero { font-size: 34px; }
  .inquiry-form__row { flex-direction: column; }
  .testimonial__inner { padding: 40px 24px; }
}
