/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
 /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;*/
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== COLORS (V3 Lite: Wilcoxon main-site palette aligned with metro EMD) ===== */
:root {
  --navy: #061f5c;
  --navy-dark: #051642;
  --navy-soft: #293a66;
  --gold: #cd954f;
  --gold-soft: #e6a65a;
  --warm-bg: #F4EFE5;
  --paper: #FAF6ED;
  --light-bg: #FAF6ED;
  --border: #E0D9C7;
  --border-strong: #C9C0AB;
  --text: #2A2620;
  --text-muted: #6B5F50;
  --text-soft: #8A7E6F;
  --link: #061f5c;
}

a { color: var(--link); /*! text-decoration: underline; */ }
a:hover { 
    /*color: var(--gold-soft); */
    }

/* ===== HEADER ===== */
.top-bar {
  background: var(--navy-dark);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }

.main-header {
  background: #fff;
  border-bottom: 3px solid var(--gold);
  padding: 16px 0;
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.logo-text {
  /*font-family: 'Source Serif 4', Georgia, serif;*/
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-text .small { display: block; font-size: 12px; font-weight: 400; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover { border-bottom-color: var(--gold); }

.btn-quote-header {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  /*font-family: 'Inter', sans-serif;*/
  font-weight: 600 !important;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-bottom: none !important;
  transition: background 0.15s;
}
.btn-quote-header:hover { background: var(--gold-soft); }

/* ===== CONTAINER ===== */


/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.85)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
 /* font-family: 'Source Serif 4', Georgia, serif;*/
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.hero p.subhead {
 /* font-family: 'Inter', sans-serif;*/
  font-size: 19px;
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.30);
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: left;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
 /* font-family: 'Inter', sans-serif;*/
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.btn-primary::after { content: " \2192"; }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--navy); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  /*font-family: 'Inter', sans-serif;*/
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  
}
.btn-secondary:hover { background: #fff; color: var(--navy); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  /*! background: var(--warm-bg); */
  /*! padding: 14px 0; */
  /*! font-family: 'Inter', sans-serif; */
  /*! font-size: 13px; */
  /*! color: var(--text-muted); */
  /*! border-bottom: 1px solid var(--border); */
  /*! letter-spacing: 0.02em; */
}
.breadcrumb a { color: var(--navy); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
  /*! padding: 60px 0; */
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
.content-layout {
  display: block;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

}

/* ===== CONTENT BLOCKS ===== */
.content-main h2 {
  /*! font-family: 'Source Serif 4', Georgia, serif; */
  /*! color: var(--navy); */
  /*! font-size: 32px; */
  /*! font-weight: 600; */
  line-height: 1.22;
  /*! letter-spacing: -0.015em; */
  /*! margin: 48px 0 20px; */
  padding-bottom: 14px;
  position: relative;
}

.underline-word{
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
	font-weight: 600 !important;
	color: #2c2c2c !important;
	padding-bottom: 20px;
}

.underline-word::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 73px;
    height: 2px;
    background: #B8923A;
}
.underline-word2{
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
	font-weight: 600 !important;
	color: #2c2c2c !important;
	padding-bottom: 20px;
}

.underline-word2::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 56px;
    height: 2px;
    background: #B8923A;
}
.content-main h2::after {
  /*! content: ""; */
  /*! position: absolute; */
  /*! left: 0; */
  /*! bottom: 0; */
  /*! width: 56px; */
  /*! height: 2px; */
  /*! background: var(--gold); */
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  /*! font-family: 'Source Serif 4', Georgia, serif; */
  /*! color: var(--navy); */
  /*! font-size: 23px; */
  font-weight: 600;
  /*! line-height: 1.3; */
  /*! letter-spacing: -0.01em; */
  /*! margin: 32px 0 14px; */
  
  color: #393939;
  font-size: 22px;
}
.content-main p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
}
.content-main p.lead {
  /*! font-family: 'Source Serif 4', Georgia, serif; */
  /*! font-size: 22px; */
  /*! color: var(--navy); */
  font-weight: 400;
  /*! line-height: 1.45; */
  /*! letter-spacing: -0.005em; */
  /*! margin-bottom: 24px; */
}
.content-main ul {
  /*! margin: 16px 0 16px 24px; */
}
.content-main ul li {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.6;
}
.content-main strong {
  /*! color: var(--navy); */
  font-weight: 600;
}

/* ===== INDUSTRY GRID ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.industry-card {
  background: var(--light-bg);
  padding: 24px;
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.industry-card h4 {
  /*! color: var(--navy); */
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ===== SPECIALIST CALLOUT ===== */
.specialist-callout {
  background: var(--navy);
  color: #fff;
  padding: 36px;
  border-radius: 4px;
  margin: 48px 0;
  border-left: 2px solid var(--gold);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.15);
}
.specialist-callout h2 {
  /*! font-family: 'Source Serif 4', Georgia, serif !important; */
  color: #fff !important;
  margin-top: 0 !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  padding-bottom: 0 !important;
}
.specialist-callout h2::after {
  display: none !important;
}
.specialist-callout p {
  /*! font-family: 'Inter', sans-serif; */
  color: #e8e0d0;
  font-size: 17px;
  line-height: 1.65;
}
.specialist-callout a.emd-link {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}
.specialist-callout a.emd-link:hover { color: #fff; }

/* ===== FAQ ===== */
.faq-section {
  margin: 40px 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  background: var(--paper);
  padding: 18px 22px;
  /*! font-family: 'Inter', sans-serif; */
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--warm-bg); }
.faq-question:hover { background: #efeee8; }
.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: "−";
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  padding: 16px 20px;
  max-height: 500px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ===== SIDEBAR ===== */
.sidebar .sidebar-block {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar h3 {
  /*! font-family: 'Source Serif 4', Georgia, serif; */
  /*! color: var(--navy); */
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.sidebar h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.sidebar p, .sidebar li {
  font-size: 15px;
  line-height: 1.6;
}
.sidebar ul {
  list-style: none;
  margin: 0;
}
.sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar ul li:last-child { border-bottom: none; }
.sidebar .contact-item {
  margin-bottom: 12px;
  font-size: 15px;
}
.sidebar .contact-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.btn-sidebar-quote {
  display: block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background 0.2s;
}
.btn-sidebar-quote:hover { background: var(--gold-soft); color: var(--navy); }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.final-cta h2 {
  /*! font-family: 'Source Serif 4', Georgia, serif; */
  font-size: 36px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
.final-cta p {
  font-size: 19px;
  max-width: 700px;
  margin: 30px auto;
  color: #e8e0d0;
}
.final-cta .hero-cta { justify-content: center; }
.final-cta-meta {
  font-size: 14px;
  margin-top: 24px;
  color: #b8b0a0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: #c5c5c5;
  padding: 48px 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.footer h4 { color: var(--gold); font-size: 16px; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { padding: 4px 0; }
.footer a { color: #c5c5c5; text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #1a3358;
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 37, 69, 0.75);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-window {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  margin: 40px auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-header {
  background: var(--navy);
  color: #fff;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 4px solid var(--gold);
}
.modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.modal-header p {
  font-size: 14px;
  color: #c8d0db;
  margin: 0;
}
.modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  margin-left: 16px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 1; }
.modal-body {
  padding: 28px 32px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}
.form-group .required {
  color: #C0392B;
  margin-left: 2px;
}
.form-group .helper-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 59, 0.15);
}
.form-group .other-industry {
  margin-top: 8px;
  display: none;
}
.form-group .other-industry.visible {
  display: block;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
.modal-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  margin-top: 8px;
}
.modal-submit:hover { background: var(--gold-soft); }
.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.modal-privacy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.modal-success {
  display: none;
  padding: 40px 32px;
  text-align: center;
}
.modal-success.active {
  display: block;
}
.modal-success h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}
.modal-success p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.modal-success .checkmark {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 32px;
  font-weight: 700;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 700px) {
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero p.subhead { font-size: 17px; }
  .content-main h2 { font-size: 24px; }
  .content-main p { font-size: 16px; }
  nav.main-nav ul { gap: 12px; }
  nav.main-nav a { font-size: 14px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 15px; }
  .main-content { padding: 40px 0; }
  .modal-window { margin: 20px auto; }
  .modal-header { padding: 20px; }
  .modal-header h2 { font-size: 20px; }
  .modal-body { padding: 20px; }
  .lead{
	font-size: 17px !important;
  }
}
.sidebar{
	margin-top: 30px;
}
.new-works .quote-box h2{
	font-size: 36px !important;
}
.new-works .quote-box p{
	color: #fff !important;
}
.banner-btn{
	background: #061f5c !important;
  border: 1px solid #061f5c !important;
  color: #fff !important;
  font-size: 18px !important;
  padding: 8px 50px;
  text-transform: uppercase;
  margin: 8px 0;
  border-radius: 0;
  font-weight: 400  !important;
}
.banner-call-btn{
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 8px 32px;
 /*font-family: 'Inter', sans-serif;*/
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  transition: all 0.2s;
  margin: 8px 0 !important;
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.lead{
	font-size: 21px !important;
  color: var(--navy);
  font-weight: 600 !important;
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}