:root{
  --bg:#ffffff;
  --surface:#f6f8fb;
  --text:#0f172a;
  --muted:#475569;
  --primary:#0b5ea8;
  --primary-2:#0ea5a4;
  --border:#e5e7eb;
  --shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:var(--primary); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-row{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand-mark{
  width:38px; height:38px; border-radius:12px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff; display:grid; place-items:center;
  font-weight:800;
}
.brand-name{font-weight:800; letter-spacing:0.2px; color:var(--text)}
.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--text); font-weight:600}
.nav a.nav-cta{
  padding:10px 14px; border-radius:999px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
}
.nav a.nav-cta:hover{text-decoration:none; filter:brightness(0.98)}

.nav-dropdown{position:relative}
.nav-dropbtn{
  appearance:none; border:0; background:transparent;
  font:inherit; color:var(--text); font-weight:600;
  cursor:pointer; padding:8px 10px; border-radius:10px;
}
.nav-dropbtn:hover{background:rgba(2,6,23,0.04)}
.nav-dropmenu{
  position:absolute; top:44px; left:0;
  min-width: 260px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:8px;
  display:none;
}
.nav-dropmenu a{
  display:block; padding:10px 12px; border-radius:10px;
  color:var(--text); font-weight:600;
}
.nav-dropmenu a:hover{background:rgba(2,6,23,0.04); text-decoration:none}
.nav-dropdown.open .nav-dropmenu{display:block}

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  align-items:center; justify-content:center;
  gap:5px; cursor:pointer;
}
.nav-toggle span{display:block; width:18px; height:2px; background:var(--text); border-radius:4px}


.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.90), rgba(255,255,255,0.65)),
    url('assets/img/home-hero.png') center/cover no-repeat;
  filter:saturate(1.05);
}
.hero .container{position:relative}
.hero h1{
  margin:0;
  font-size: clamp(30px, 4vw, 44px);
  line-height:1.15;
  letter-spacing:-0.4px;
}
.hero p{
  margin:14px 0 0;
  max-width: 820px;
  font-size: 18px;
  color: var(--muted);
}
.hero .hero-card{
  margin-top:22px;
  background:rgba(255,255,255,0.82);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  background: var(--surface);
  border:1px solid var(--border);
  border-radius:999px;
  font-weight:700;
  color:var(--text);
}
.badge-dot{
  width:10px; height:10px; border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
}

.section{
  padding:42px 0;
}
.section.alt{background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section-title{
  margin:0;
  font-size: 26px;
  letter-spacing:-0.2px;
}
.section-subtitle{
  margin:10px 0 0;
  color:var(--muted);
  max-width: 900px;
}
.grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(12, 1fr);
  margin-top:18px;
}
.card{
  grid-column: span 4;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}
.card h3{margin:0; font-size:18px}
.card p{margin:8px 0 0; color:var(--muted)}
.list{
  margin:14px 0 0; padding:0; list-style:none;
  display:grid; gap:10px;
}
.list li{display:flex; gap:10px; align-items:flex-start; color:var(--text)}
.list li .badge-dot{margin-top:7px}

.content{
  padding:28px 0 10px;
}
.content h1{
  margin:0 0 12px;
  font-size: 34px;
  letter-spacing:-0.3px;
}
.content h2{
  margin:22px 0 10px;
  font-size: 22px;
}
.content p{color:var(--muted)}
.content ul{
  color:var(--text);
}
.content .boxes{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.box{
  grid-column: span 4;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}
.box h3{margin:0; font-size:18px}
.box p{margin:8px 0 0; color:var(--muted)}

.form{
  max-width: 760px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}
.field{display:grid; gap:6px; margin-top:12px}
.field label{font-weight:700}
.field input,.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  font:inherit;
}
.field textarea{min-height:140px; resize:vertical}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  padding:12px 16px;
  border-radius: 999px;
  font-weight:800;
  cursor:pointer;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
}
.btn:hover{filter:brightness(0.98)}

.notice{
  margin-top:12px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display:none;
}
.notice.show{display:block}

.site-footer{
  margin-top:40px;
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-row{
  padding:22px 0;
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
.footer-brand{font-weight:900}
.footer-note{color:var(--muted); max-width:520px; margin-top:6px}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted); font-weight:700}
.footer-bottom{padding:12px 0 24px; color:var(--muted); font-weight:700}

@media (max-width: 980px){
  .card,.box{grid-column: span 6}
}
@media (max-width: 720px){
  .nav-toggle{display:inline-flex}
  .nav{
    position:fixed; top:68px; right:14px; left:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .nav.open{display:flex}
  .nav a, .nav-dropbtn{padding:12px 12px; border-radius: 14px}
  .nav a:hover, .nav-dropbtn:hover{background:rgba(2,6,23,0.04); text-decoration:none}
  .nav-dropmenu{
    position:static; display:none; box-shadow:none;
    border:0; padding:0; margin-top:6px;
  }
  .nav-dropdown.open .nav-dropmenu{display:block}
  .nav-dropmenu a{padding:10px 12px}
  
  .hero p{font-size:16px}
  .card,.box{grid-column: span 12}
}

/* Index-only orange footer */
.site-footer.footer-orange{
  background:#f59e0b;
  border-top:0;
}
.site-footer.footer-orange .footer-brand,
.site-footer.footer-orange .footer-note,
.site-footer.footer-orange .footer-links a,
.site-footer.footer-orange .footer-bottom{
  color:#ffffff;
}
.site-footer.footer-orange .footer-links a:hover{
  text-decoration:underline;
}


/* --- Layout fix: keep footer at bottom on short pages --- */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}




/* Slim orange footer for home page */
.site-footer.footer-orange.slim {
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-footer.footer-orange.slim .footer-row {
  display: none; /* hide descriptive block */
}


/* --- Orange footer sizing --- */
.site-footer.footer-orange{
  min-height: 90px; /* ~1.25 inch */
  background:#f59e0b;
}
.site-footer.footer-orange .footer-row{
  padding: 14px 0;
  align-items:center;
}
.site-footer.footer-orange .footer-links a,
.site-footer.footer-orange .footer-bottom,
.site-footer.footer-orange .footer-brand{
  color:#ffffff;
  font-weight:600;
}
.site-footer.footer-orange .footer-links a:hover{
  text-decoration:underline;
}
.site-footer.footer-orange .footer-left,
.site-footer.footer-orange .footer-note{
  display:none;
}
.site-footer.footer-orange .footer-row{
  padding: 12px 0;
}
.site-footer.footer-orange .footer-note,
.site-footer.footer-orange .footer-left{
  display:none;
}
.site-footer.footer-orange .footer-bottom{
  padding: 8px 0 12px;
}



/* page-accounting-card-reduce */
.page-accounting .card h3{font-size:15px;}
.page-accounting .card p{font-size:13px;}
.page-accounting .card-list span{font-size:13px;}


/* FORCE 2 ROWS x 3 COLUMNS FOR ACCOUNTING SERVICES */
.page-accounting .card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.page-accounting .card {
  padding: 14px !important;
}

.page-accounting .card h3 {
  font-size: 15px !important;
}

.page-accounting .card p {
  font-size: 13px !important;
}

.page-accounting .card li {
  font-size: 13px !important;
}

@media (max-width: 1024px) {
  .page-accounting .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .page-accounting .card-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Accounting page card layout: 2 rows of 3 on desktop */
.page-accounting .card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-accounting .card{
  grid-column: auto !important; /* override span rules used elsewhere */
  padding: 14px;
}

.page-accounting .card h3{
  font-size: 16px;
  margin-bottom: 6px;
}

.page-accounting .card p{
  font-size: 14px;
}

.page-accounting .card-list li{
  font-size: 14px;
}

/* Tablet: 2 columns */
@media (max-width: 980px){
  .page-accounting .card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phone: 1 column */
@media (max-width: 720px){
  .page-accounting .card-grid{
    grid-template-columns: 1fr;
  }
}


/* About page typography tightening */
.page-about h2 { font-size: 1.6rem; }
.page-about h3 { font-size: 1.15rem; }
.page-about p  { font-size: 0.95rem; line-height: 1.5; }


/* About page profile card alignment */
.page-about .profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page-about .profile-card {
  padding: 18px;
}

.page-about .profile-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.page-about .profile-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-about .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-about .profile-grid {
    grid-template-columns: 1fr;
  }
}





/* About page card alignment – side by side */
.page-about .boxes{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.page-about .box{
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.page-about .box h3{
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.page-about .box p{
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 980px){
  .page-about .boxes{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 720px){
  .page-about .boxes{
    grid-template-columns: 1fr;
  }
}


/* Team grid – About page */
.page-about .team-grid{
  margin-top:18px !important;
  display:flex !important;
  gap:18px !important;
  align-items:stretch !important;
}
.page-about .team-grid .team-card{
  flex: 1 1 0 !important;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}
.page-about .team-grid .team-card h3{
  font-size: 1.1rem !important;
  margin-bottom:10px !important;
}
.page-about .team-grid .team-card p{
  font-size: 0.95rem !important;
  line-height:1.5 !important;
}

/* Wrap on smaller screens */
@media (max-width: 980px){
  .page-about .team-grid{
    flex-wrap: wrap !important;
  }
  .page-about .team-grid .team-card{
    flex: 1 1 calc(50% - 18px) !important;
  }
}
@media (max-width: 720px){
  .page-about .team-grid .team-card{
    flex: 1 1 100% !important;
  }
}




/* Home services cards */
.home-services{
  padding: 28px 0 22px;
  background: #ffffff;
}
.home-services .container{ position: relative; }


.home-service-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.home-service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
}

.home-service-card h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.home-service-card h3 a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-service-card h3 a:hover{
  text-decoration-thickness: 2px;
}

.home-service-card p{
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 980px){
  .home-service-grid{ grid-template-columns: 1fr; }
}


/* Home Who We Serve */
.home-who-we-serve{
  padding: 10px 0 34px;
  background: #ffffff;
}
.home-who-we-serve .two-col{
  margin-top: 0 !important;
}
.home-who-we-serve .card-list{
  margin-top: 8px;
}


/* Logo tagline visibility */
.brand small{
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f172a;
  display: block;
  margin-top: 2px;
}
.brand img{
  height: 68px;
}


/* Logo + tagline fix */
.logo{
  height:80px;
}
.brand small{
  display:block;
  font-size:1rem;
  font-weight:600;
  margin-top:4px;
  color:#111;
}



/* Ensure logo isn't clipped */
.brand{
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 720px){
  .site-logo{ height: 86px !important; }
}


/* Site logo sizing (swap assets/img/logo.png with Modus Logo4 if desired) */
.site-logo{
  height: 74px !important;
  width: auto !important;
  display: block !important;
}

.header{
  padding: 6px 0 !important;
}

.nav{
  align-items: center !important;
}

.brand{
  display: flex !important;
  align-items: center !important;
}

/* Home page above-the-fold tightening */
.page-home 
.page-home .hero h1{
  font-size: 2.05rem !important;
  line-height: 1.08 !important;
}
.page-home .hero p{
  font-size: 1.02rem !important;
  line-height: 1.35 !important;
  margin-top: 10px !important;
}
.page-home .home-services{
  padding: 14px 0 10px !important;
}
.page-home .home-service-card{
  padding: 12px !important;
}
.page-home .home-service-card h3{
  font-size: 1.0rem !important;
  margin-bottom: 6px !important;
}
.page-home .home-service-card p{
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
}
.page-home .home-service-grid{
  gap: 12px !important;
  margin-top: 12px !important;
}
.page-home .home-who-we-serve{
  padding: 6px 0 22px !important;
}
.page-home .home-who-we-serve .section-kicker{
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
}
.page-home .home-who-we-serve .section-title{
  font-size: 1.15rem !important;
}
.page-home .home-who-we-serve .section-subtitle{
  font-size: 0.9rem !important;
}

@media (max-width: 720px){
  .site-logo{ height: 64px !important; }
  .page-home 
  .page-home .hero h1{ font-size: 1.7rem !important; }
}


/* Site logo sizing (Modus Logo4) */
.site-logo{
  height: 62px !important;
  width: auto !important;
  display: block !important;
}
.header{
  padding: 6px 0 !important;
}

.page-home .hero .hero-content{
  padding: 0 !important;
}
.page-home .hero h1{
  font-size: 1.65rem !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
}
.page-home .hero p{
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  margin-top: 6px !important;
}
.page-home .home-services{
  padding-top: 12px !important;
}

/* Keep cards readable but tighter */
.page-home .home-service-card{
  padding: 14px !important;
}
.page-home .home-service-card p{
  font-size: 0.94rem !important;
}

/* Mobile */
@media (max-width: 720px){
  .site-logo{ height: 56px !important; }
  .page-home 
  .page-home .hero h1{ font-size: 1.45rem !important; }
}


/* Home hero – ultra compact */
.page-home 
.page-home .hero p{
  font-size: 1.0rem !important;
  line-height: 1.35 !important;
}
.page-home .home-services{
  margin-top: 4px !important;
}
.page-home .home-who-we-serve{
  margin-top: 4px !important;
}


/* Home content lift-up cleanup */
.page-home 
.page-home .hero-text{
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
.page-home .home-services{
  margin-top: 6px !important;
}
.page-home .home-who-we-serve{
  margin-top: 6px !important;
}


/* Home hero background image */
.page-home 


/* FORCE Home hero background image */



/* Home hero fixed height (approx 1.5 inches) */





/* Home hero background + height lock */




/* Lift 'Our Services' section closer to hero */



/* Home hero removed – minimal spacer only */
body.page-home section.hero{
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.page-home section.hero::before{
  display:none !important;
}

/* Lift all content under hero */

body.page-home .home-who-we-serve{
  margin-top: 0 !important;
}


/* Contact page UX */
.page-contact main{
  padding-top: 10px;
}
.page-contact .section-title{
  font-size: 1.55rem;
  line-height: 1.2;
}
.page-contact p,
.page-contact label{
  font-size: 0.95rem;
}
.page-contact .contact-grid{
  gap: 16px;
}
.page-contact .form-card{
  padding: 16px;
}
.page-contact input,
.page-contact textarea,
.page-contact select{
  width: 100%;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

/* Dropdown polish */
.page-contact select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #0f172a 50%),
    linear-gradient(135deg, #0f172a 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px),
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

/* Footer links align */
.site-footer .footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .footer-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom{
  padding: 10px 0 6px;
  text-align: center;
  font-size: 0.92rem;
}


/* FIX: Ensure footer links show (previous rules hid .footer-row in slim variant) */
.site-footer.footer-orange.slim .footer-row{
  display:flex !important;
  padding: 12px 0 !important;
  align-items:center !important;
  justify-content: space-between !important;
}
.site-footer.footer-orange.slim .footer-note{
  display:none !important; /* keep footer compact while showing links */
}
.site-footer.footer-orange.slim{
  min-height: 64px !important;
}

/* FIX: Footer links styling (restore prior look) */
.site-footer.footer-orange .footer-links a{
  color:#ffffff !important;
  font-weight:600 !important;
}

/* FIX: Home services no overlap with hero */



/* Home: ensure sections do NOT overlap hero */
body.page-home .home-services{
  margin-top: 0 !important;
  padding-top: 26px !important;
}
body.page-home .home-who-we-serve{
  margin-top: 0 !important;
  padding-top: 12px !important;
}


/* Contact page: tighten spacing and typography */
.page-contact .section-title{ font-size: 1.35rem !important; }
.page-contact p, .page-contact label{ font-size: 0.9rem !important; }
.page-contact input, .page-contact textarea, .page-contact select{ font-size: 0.9rem !important; padding: 9px 10px !important; }
.page-contact .form-card{ padding: 14px !important; }
.page-contact .contact-grid{ gap: 12px !important; }

/* Contact page: smaller submit button and reduced spacing below */
.page-contact button, .page-contact .btn{
  font-size: 0.92rem !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
}
.page-contact .form-actions{ margin-top: 10px !important; }

/* Footer consistency */
.site-footer{ padding-bottom: 0 !important; }





}


/* Footer: single-line address/phone, left aligned, black text (mobile friendly) */
.site-footer .footer-bottom{
  color: #0f172a !important;
  opacity: 1 !important;
  padding: 6px 0 4px !important;
  border-top: 0 !important;
  text-align: left !important;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 4px;
  margin-bottom: 6px; /* lift above footer bottom */
}

.site-footer.footer-orange.slim{
  min-height: 84px !important;
}

@media (max-width: 720px){
  .site-footer .footer-bottom{
    font-size: 0.78rem;
    padding-top: 4px !important;
    padding-bottom: 6px !important;
    margin-bottom: 8px;
  }
}


/* Contact: smaller Submit Inquiry */
.page-contact .form-card button[type="submit"]{
  font-size: 0.86rem !important;
  padding: 8px 12px !important;
}


/* FINAL OVERRIDE: footer bottom line */
footer.site-footer.footer-orange .footer-bottom{
  color: #0f172a !important;
  text-align: left !important;
  padding: 4px 0 2px !important;
  margin-top: 2px !important;
  margin-bottom: 8px !important;
  transform: translateY(-4px);
}


/* FINAL OVERRIDE: contact submit button size */
.page-contact button.btn.btn-primary{
  font-size: 0.84rem !important;
  padding: 7px 12px !important;
}
