@charset "UTF-8";
/* CSS Document
Client: Blankslate
Author: Site Author
Date: 2025
*/
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
}

:root {
  --primary: #101010;
  --primary-hover: #111111;
  --secondary: #fff;
  --secondary-hover: #f4f4f2;
  --accent: #ff4000;
  --accent-hover: #c44b00;
  --transition: all 0.3s ease;
}

.site-logo {
  height: 50px; /* adjust as needed */
  width: auto; /* keeps aspect ratio */
  display: block; /* removes inline spacing */
}

/* ------- Buttons ------- */
.btn-theme {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 1.65rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

.btn-theme.btn-text {
  padding: 0;
  font-size: 1rem;
}

.btn-text {
  transition: var(--transition);
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 0.9px;
  text-underline-offset: 0.9rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.btn-text:hover {
  color: var(--accent);
}

.btn-text.btn-arrow::after {
  color: var(--accent);
}

.btn-theme.btn-header {
  margin-top: 0rem;
}

.btn-header {
  background-color: var(--accent);
  color: white;
}

.btn-header:hover {
  background-color: var(--accent-hover);
}

.btn-arrow {
  position: relative;
}

.btn-arrow::after {
  content: "→";
  color: #ff6200;
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ------- Fades - Transitions ------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
  transition-delay: 0s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.5s;
}

.delay-4 {
  transition-delay: 0.7s;
}

/* ------- Image Scale on Scroll ------- */
.scroll-scale-image {
  transform: scale(1);
  transition: transform 0.15s linear;
  will-change: transform;
}

/* ------- Video ------- */
.hero-video-wrap {
  width: min(100% - 3rem, 1200px);
  margin-inline: auto;
  overflow: hidden;
  transform-origin: center center;
  transition: all 0.35s ease;
}

/* =============================================================
   PRIMARY NAVIGATION + DROPDOWN
   Add this below the existing WORDPRESS MENUS section in
   assets/css/theme-settings.css
============================================================= */
.primary-menu,
.primary-menu ul,
.mobile-primary-menu,
.mobile-primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Desktop main menu */
.primary-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 2.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #3f3f46;
  text-decoration: none;
  transition: color 0.2s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-parent > a,
.primary-menu > li.current-menu-ancestor > a,
.primary-menu > li.current_page_item > a,
.primary-menu > li.current_page_parent > a,
.primary-menu > li.current_page_ancestor > a {
  color: var(--accent);
}

/* Small chevron on items that have children */
.primary-menu > .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.primary-menu > .menu-item-has-children:hover > a::after,
.primary-menu > .menu-item-has-children:focus-within > a::after {
  transform: translateY(3px) rotate(225deg);
}

/* Desktop dropdown */
.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -1.5rem;
  z-index: 100;
  min-width: 260px;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.primary-menu .sub-menu li {
  margin: 0;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #3f3f46;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible,
.primary-menu .sub-menu .current-menu-item > a {
  color: var(--accent);
  background: #f4f4f5;
}

/* Mobile navigation */
.mobile-primary-menu > li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-primary-menu > li:first-child {
  border-top: 0;
}

.mobile-primary-menu > li > a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--primary);
  text-decoration: none;
}

.mobile-primary-menu .current-menu-item > a,
.mobile-primary-menu .current-menu-parent > a,
.mobile-primary-menu .current-menu-ancestor > a {
  color: var(--accent);
}

/* Keep service children visible and clearly nested on mobile */
.mobile-primary-menu .sub-menu {
  padding: 0 0 1rem 1rem;
}

.mobile-primary-menu .sub-menu li {
  border: 0;
}

.mobile-primary-menu .sub-menu a {
  display: block;
  padding: 0.55rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: #71717a;
  text-decoration: none;
}

.mobile-primary-menu .sub-menu a:hover,
.mobile-primary-menu .sub-menu a:focus-visible,
.mobile-primary-menu .sub-menu .current-menu-item > a {
  color: var(--accent);
}

/* ============================================================
   CONTACT FORM 7 — HANGAR 4
============================================================ */
.wpcf7 {
  width: 100%;
}

/* ============================================================
   FORM LAYOUT
============================================================ */
.wpcf7 form {
  display: grid;
  gap: 1.75rem;
  margin: 0;
}

.wpcf7 p {
  margin: 0;
}

/* ============================================================
   LABELS
============================================================ */
.wpcf7 label {
  display: block;
  margin: 0;
  color: #101010;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================================
   FIELDS
============================================================ */
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 select,
.wpcf7 textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.6rem;
  padding: 1rem 1rem;
  border: 1px solid #dedede;
  border-radius: 0;
  outline: none;
  background: #f7f7f7;
  color: #101010;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

/* ============================================================
   TEXTAREA
============================================================ */
.wpcf7 textarea {
  min-height: 170px;
  resize: vertical;
}

/* ============================================================
   PLACEHOLDERS
============================================================ */
.wpcf7 ::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

/* ============================================================
   FOCUS
============================================================ */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 77, 0, 0.08);
}

/* ============================================================
   SELECT
============================================================ */
.wpcf7 select {
  cursor: pointer;
  padding-right: 2.75rem;
  background-image: linear-gradient(45deg, transparent 50%, #101010 50%), linear-gradient(135deg, #101010 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* ============================================================
   CHECKBOXES + RADIO BUTTONS
============================================================ */
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.wpcf7 .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

/* ============================================================
   SUBMIT BUTTON
============================================================ */
.wpcf7 input[type=submit],
.wpcf7 button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 54px;
  margin-top: 0.25rem;
  padding: 1rem 1.8rem;
  border: 2px solid #101010;
  border-radius: 0;
  background: #101010;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wpcf7 input[type=submit]:hover,
.wpcf7 button[type=submit]:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   VALIDATION
============================================================ */
.wpcf7 .wpcf7-not-valid {
  border-color: #c62828 !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  color: #c62828;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   RESPONSE MESSAGE
============================================================ */
.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 1rem 1.25rem;
  border: 0;
  border-left: 4px solid var(--accent);
  background: #f7f7f7;
  color: #101010;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #c62828;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--accent);
}

/* ============================================================
   SPINNER
============================================================ */
.wpcf7 .wpcf7-spinner {
  margin: 0 0 0 0.75rem;
  vertical-align: middle;
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 767px) {
  .wpcf7 form {
    gap: 1.4rem;
  }
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=tel],
  .wpcf7 input[type=url],
  .wpcf7 input[type=number],
  .wpcf7 input[type=date],
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 16px;
  }
  .wpcf7 input[type=submit],
  .wpcf7 button[type=submit] {
    width: 100%;
  }
}
/* ============================================================
   INSIGHTS — ARTICLE CONTENT
============================================================ */
.hangar4-article-content {
  color: #2b2b2b;
  font-size: 1.125rem;
  line-height: 1.8;
}

.hangar4-article-content > * {
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.hangar4-article-content h2,
.hangar4-article-content h3,
.hangar4-article-content h4 {
  color: #101010;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hangar4-article-content h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.hangar4-article-content h3 {
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.hangar4-article-content p {
  margin-bottom: 1.6rem;
}

.hangar4-article-content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hangar4-article-content ul,
.hangar4-article-content ol {
  margin: 1.75rem 0;
  padding-left: 1.5rem;
}

.hangar4-article-content li {
  margin-bottom: 0.65rem;
}

.hangar4-article-content blockquote {
  margin: 3rem 0;
  padding-left: 1.75rem;
  border-left: 4px solid var(--accent);
  color: #101010;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.hangar4-article-content img,
.hangar4-article-content figure {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 2.5rem auto;
}

.hangar4-article-content figcaption {
  margin-top: 0.75rem;
  color: #777;
  font-size: 0.875rem;
  line-height: 1.5;
}

.page-template-page-insights .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-template-page-insights a.page-numbers,
.page-template-page-insights span.page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0 0.75rem;
  border: 1px solid #d4d4d4;
  color: #101010;
  font-weight: 700;
  text-decoration: none;
}

.page-template-page-insights a.page-numbers:hover,
.page-template-page-insights span.page-numbers.current {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   SINGLE POST — ARTICLE CONTENT
   Scoped so nothing leaks into navigation / footer / CTA
============================================================ */
body.single-post .hangar4-article-content {
  color: #2b2b2b;
  font-size: 1.125rem;
  line-height: 1.8;
  /* --------------------------------------------------------
     PARAGRAPHS
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content p {
  margin-top: 0;
  margin-bottom: 1.75rem;
}
body.single-post .hangar4-article-content > p:first-child {
  color: #454545;
  font-size: 1.25rem;
  line-height: 1.7;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     HEADINGS
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content h2,
body.single-post .hangar4-article-content h3,
body.single-post .hangar4-article-content h4 {
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
body.single-post .hangar4-article-content h2 {
  margin-top: 4rem;
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
body.single-post .hangar4-article-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body.single-post .hangar4-article-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     LINKS
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
body.single-post .hangar4-article-content a:hover, body.single-post .hangar4-article-content a:focus-visible {
  color: var(--accent-hover);
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     STRONG / BOLD
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content strong {
  color: var(--primary);
  font-weight: 700;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     LISTS
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content ul,
body.single-post .hangar4-article-content ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
body.single-post .hangar4-article-content ul {
  list-style: disc;
}
body.single-post .hangar4-article-content ol {
  list-style: decimal;
}
body.single-post .hangar4-article-content li {
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}
body.single-post .hangar4-article-content li::marker {
  color: var(--accent);
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     BLOCKQUOTES
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content blockquote {
  margin: 3.5rem 0;
  padding: 0 0 0 2rem;
  border-left: 3px solid var(--accent);
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
body.single-post .hangar4-article-content blockquote p {
  margin: 0;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     IMAGES
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content figure {
  margin: 3.5rem 0;
}
body.single-post .hangar4-article-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
body.single-post .hangar4-article-content figcaption {
  margin-top: 0.75rem;
  color: #777;
  font-size: 0.875rem;
  line-height: 1.5;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     WORDPRESS IMAGE ALIGNMENT
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content .alignleft {
  float: left;
  margin: 0.5rem 2rem 1.5rem 0;
}
body.single-post .hangar4-article-content .alignright {
  float: right;
  margin: 0.5rem 0 1.5rem 2rem;
}
body.single-post .hangar4-article-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body.single-post .hangar4-article-content .alignwide {
  width: 100%;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     HORIZONTAL RULE
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content hr {
  margin: 4rem 0;
  border: 0;
  border-top: 1px solid #dedede;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     TABLES
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content table {
  width: 100%;
  margin: 2.5rem 0;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.6;
}
body.single-post .hangar4-article-content th,
body.single-post .hangar4-article-content td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #dedede;
  text-align: left;
  vertical-align: top;
}
body.single-post .hangar4-article-content th {
  color: var(--primary);
  font-weight: 700;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     EMBEDS / VIDEO
  -------------------------------------------------------- */
}
body.single-post .hangar4-article-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
}
body.single-post .hangar4-article-content {
  /* --------------------------------------------------------
     MOBILE
  -------------------------------------------------------- */
}
@media (max-width: 767px) {
  body.single-post .hangar4-article-content {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  body.single-post .hangar4-article-content > p:first-child {
    font-size: 1.15rem;
  }
  body.single-post .hangar4-article-content h2 {
    margin-top: 3rem;
    font-size: 2rem;
  }
  body.single-post .hangar4-article-content h3 {
    margin-top: 2.5rem;
  }
  body.single-post .hangar4-article-content blockquote {
    margin: 2.75rem 0;
    padding-left: 1.25rem;
  }
  body.single-post .hangar4-article-content .alignleft,
  body.single-post .hangar4-article-content .alignright {
    float: none;
    width: 100%;
    margin: 2rem 0;
  }
}/*# sourceMappingURL=app.min.css.map */