/* Gregory Harvey Law — cleaned static rebuild
   Colors, fonts and sizes below are the real values pulled from the
   original Bridge theme's customizer CSS, not a redesign — this file
   just replaces ~14 theme/plugin stylesheets and jQuery with the ~80
   rules actually used by this 2-page site. */

@font-face{
  font-family: 'Arimo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/arimo-400.ttf') format('truetype');
}
@font-face{
  font-family: 'Arimo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/arimo-700.ttf') format('truetype');
}
@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/opensans-400.ttf') format('truetype');
}

:root{
  --blue:      #0054a6;   /* headings */
  --nav-blue:  #0048a8;   /* nav active */
  --nav-hover: #1e73be;   /* nav hover */
  --gold:      #f4c465;   /* hero title / footer links */
  --navy:      #012a53;   /* footer top background */
  --navy-dark: #000e47;   /* footer bottom background */
  --text:      #333333;
  --nav-text:  #424242;
  --footer-text: #b8bdc6;

  --sans:  'Arimo', Arial, Helvetica, sans-serif;      /* headings + nav */
  --serif: Georgia, 'Times New Roman', serif;          /* body copy */
  --ui:    'Open Sans', -apple-system, sans-serif;     /* small UI text */

  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
}

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

.container{
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 var(--gap);
}

h1, h2, h3, h4{
  font-family: var(--sans);
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 0.6em;
}
h2{ font-size: 2.2rem; line-height: 1.1; }
h3{ font-size: 1.8rem; line-height: 1.15; margin-top: 1.6em; }
h4{ font-size: 1.15rem; line-height: 1.4; margin-top: 1.4em; }
h3:first-child, h4:first-child{ margin-top: 0; }

p{ margin: 0 0 1em; }
ul{ margin: 0 0 1em; padding-left: 1.3em; }

/* ---------- Header ---------- */
.site-header{
  border-bottom: 1px solid #e5e5e5;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.1rem var(--gap);
}
.logo img{ height: 43px; width: auto; }
.logo .mobile-logo{ display: none; }

.site-nav ul{
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-family: var(--ui);
  font-size: 1.2rem;
}
.site-nav a{
  color: var(--nav-text);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover{ color: var(--nav-hover); }
.site-nav a[aria-current="page"]{
  color: var(--nav-blue);
  border-bottom-color: var(--nav-blue);
}

@media (max-width: 640px){
  .logo .desktop-logo{ display: none; }
  .logo .mobile-logo{ display: block; }
  .site-nav ul{ gap: 1.25rem; font-size: 0.88rem; }
}

/* ---------- Home hero (full-width template — edge to edge, no container) ---------- */
.hero{
  background: #352622 url('images/home-header-background.jpg');
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero .hero-text{
  padding: 20%;
  align-self: center;
}
.hero .hero-portrait{
  padding: 0px;
  align-self: center;
  border: none;
  margin: 0;
}
.hero h1{
  font-family: var(--sans);
  color: var(--gold);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.hero .subtitle{
  font-family: var(--sans);
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}
@media (max-width: 700px){
  .hero{ grid-template-columns: 1fr; }
  .hero .hero-text{ padding: 12% 8%; text-align: center; }
  .hero .hero-portrait{ padding: 0 8% 8%; }
}

/* ---------- Home intro row (also full-width, edge to edge) ---------- */
.intro-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.intro-row .banner-image{ margin: 0; align-self: start; }
.intro-row .banner-image img{ width: 100%; height: 100%; object-fit: cover; }
.intro-row .intro-text{
  padding: 50px 12%;
}
@media (max-width: 700px){
  .intro-row{ grid-template-columns: 1fr; }
  .intro-row .banner-image{ display: none; } /* matches vc_hidden-xs in the original */
  .intro-row .intro-text{ padding: 8%; }
}

/* ---------- About page banner ---------- */
.page-banner{
  height: clamp(140px, 25vw, 250px);
  background: #3b5998 center/cover no-repeat;
}

/* ---------- Page layout: main + sidebar (About) ---------- */
.page-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
  padding: clamp(2rem, 5vw, 3.5rem) var(--gap);
  max-width: 68rem;
  margin: 0 auto;
}
@media (max-width: 760px){
  .page-layout{ grid-template-columns: 1fr; }
}

.bio-portrait{
  float: right;
  width: 200px;
  max-width: 45%;
  margin: 0 0 1rem 1.25rem;
}

.sidebar{
  align-self: start;
}
.sidebar h4{ margin-top: 1.4em; }
.sidebar h4:first-child{ margin-top: 0; }

/* ---------- Footer ---------- */
.footer-widgets{
  background: var(--navy);
  color: var(--footer-text);
}
.footer-widgets .container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  padding: 2.5rem var(--gap) 2rem;
}
.footer-widgets h5{
  font-family: var(--sans);
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.7rem;
}
.footer-widgets p{ margin: 0; }
.footer-widgets a{ color: var(--gold); text-decoration: none; }
.footer-widgets a:hover{ color: #fff; }
@media (max-width: 600px){
  .footer-widgets .container{ grid-template-columns: 1fr; gap: 1.5rem; }
}

.footer-bottom{
  background: var(--navy-dark);
  color: var(--footer-text);
  text-align: center;
  padding: 0.9rem 0;
  font-family: var(--ui);
  font-size: 11px;
}
.footer-bottom a{ color: var(--gold); text-decoration: none; }
.footer-bottom a:hover{ color: #fff; }
