/* --- Variables --- */
/* -------------------------------------------------- */
/* Navigation link adjustments */
/* -------------------------------------------------- */
[id] {
  scroll-margin-top: 100px;
}

/* -------------------------------------------------- */
/* Header & Navigation Base Styles */
/* -------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.sticky-nav {
  background-color: #fdfbf9;
  border-bottom: 3px solid #fe9400;
  width: 100%;
}
.sticky-nav .nav-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.sticky-nav .nav-logo {
  height: 64px;
  border-radius: 8px;
  transition: height 0.3s ease;
}
@media (max-width: 900px) {
  .sticky-nav .nav-logo {
    height: 52px;
  }
}
@media (max-width: 600px) {
  .sticky-nav .nav-logo {
    height: 45px;
  }
}

/* -------------------------------------------------- */
/* Desktop Navigation */
/* -------------------------------------------------- */
@media (min-width: 901px) {
  .sticky-nav .nav-items {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
  }
  .sticky-nav .nav-items li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    line-height: 1;
  }
  .sticky-nav .nav-item {
    text-decoration: none;
    font-weight: bold;
    color: #010100;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 0;
  }
  .sticky-nav .nav-item:hover {
    color: #fe9400;
  }
  /* Hide mobile nav elements on desktop */
  .nav-trigger,
  label[for=nav-trigger],
  .mobile-nav-group {
    display: none !important;
  }
}
/* -------------------------------------------------- */
/* Tablet and mobile Navigation */
/* -------------------------------------------------- */
@media (max-width: 900px) {
  .sticky-nav .nav-items {
    display: none;
  }
  .mobile-nav-group {
    display: block;
    position: absolute;
    top: calc(1.45rem + 2px);
    right: 1.45rem;
    text-align: right;
    width: 36px;
    height: 36px;
    max-height: 36px;
    overflow: hidden;
    background-color: transparent;
    border: 0px solid transparent;
    border-radius: 0;
    box-shadow: none;
    transition: max-height 0.3s ease-out, box-shadow 0.3s ease-out, width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, border-width 0.3s ease-out, border-radius 0.3s ease-out;
    z-index: 998;
  }
  .nav-trigger {
    display: none;
  }
  label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    cursor: pointer;
    text-align: center;
    line-height: 0;
    padding-top: 18px;
    color: #cccccc;
    transition: all 0.2s ease-in-out;
  }
  label[for=nav-trigger]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0c9";
    font-size: 1.25em;
  }
  #nav-trigger:checked ~ label[for=nav-trigger]::before {
    content: "\f00d";
    font-size: 1.5em;
  }
  #nav-trigger:checked ~ .mobile-nav-group {
    max-height: 300px;
    width: max-content;
    min-width: 150px;
    max-width: 80vw;
    height: auto;
    background-color: #fdfbf9;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  .mobile-nav-group .nav-items {
    clear: both;
    display: block;
    list-style: none;
    margin: 0;
    padding-bottom: 5px;
  }
  .mobile-nav-group .nav-items li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
  }
  .mobile-nav-group .nav-items li:first-child {
    padding-top: 0;
  }
  .mobile-nav-group .nav-items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .mobile-nav-group .nav-item {
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    padding: 5px 10px;
    line-height: 1.6;
    color: #010100;
    transition: background-color 0.2s ease;
    margin-left: 20px;
  }
  .mobile-nav-group .nav-item:hover {
    color: #fe9400;
    background-color: #f0f0f0;
  }
}
/* -------------------------------------------------- */
/* Base Styles & Typography */
/* -------------------------------------------------- */
body {
  font-family: "area", sans-serif;
  background: #fdfbf9;
  color: #010100;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: "area-extended", sans-serif;
  font-weight: 500;
}

h2 {
  margin: 0 0 0.6rem 0;
}

ul li {
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

ul {
  padding-left: 1.2rem;
}

/* -------------------------------------------------- */
/* Text variables */
/* -------------------------------------------------- */
.text-uppercase {
  text-transform: uppercase;
}

/* -------------------------------------------------- */
/* Spacing Utilities 
/* -------------------------------------------------- */
.gap-xxs {
  margin-top: 0.25rem;
}

.gap-xs {
  margin-top: 0.5rem;
}

.gap-sm {
  margin-top: 1rem;
}

.gap-md {
  margin-top: 2rem;
}

/* -------------------------------------------------- */
/* Layout Containers */
/* -------------------------------------------------- */
section {
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  section {
    padding: 1.45rem;
  }
}
section.highlighted {
  background-color: #f7f6f3;
}

section.block {
  display: block;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* -------------------------------------------------- */
/* Images */
/* -------------------------------------------------- */
.section-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 8px;
}

/* -------------------------------------------------- */
/* Image Utilities */
/* -------------------------------------------------- */
img.content-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 1rem 0;
}
img.content-img.img-small {
  max-width: 200px;
}
img.content-img.img-medium {
  max-width: 300px;
}
img.content-img.img-large {
  max-width: 800px;
}

/* Alignment utilities */
.img-left {
  float: left;
  margin-right: 1.5rem;
}

.img-right {
  float: right;
  margin-left: 1.5rem;
}

.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .img-focal-dwn-sml {
    object-fit: cover;
    object-position: center -80px;
  }
}
/* Block-level image utility */
.img-block {
  display: block;
  max-width: 100%;
  width: auto;
  clear: both;
  margin: 2rem 0;
}

/* hairline border */
.img-bordered {
  border: 1px solid #fe9400;
}

/* -------------------------------------------------- */
/* Footer */
/* -------------------------------------------------- */
footer {
  background: #010100;
  color: #fdfbf9;
  padding: 2rem 0;
  font-size: 1rem;
}
footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
footer .footer-left {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
footer .footer-left .footer-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
  margin-right: 1rem;
}
footer .footer-left .footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}
footer .footer-left .footer-contact .footer-get-in-touch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-left .footer-contact .footer-get-in-touch span {
  font-weight: 500;
  font-size: 1rem;
}
footer .footer-left .footer-contact .footer-get-in-touch .footer-linkedin {
  color: #fe9400;
  font-size: 1.3rem;
  margin-left: 0.5rem;
  transition: color 0.2s;
}
footer .footer-left .footer-contact .footer-get-in-touch .footer-linkedin:hover {
  color: rgb(255, 169.4488188976, 50);
}
footer .footer-left .footer-contact .footer-slogan {
  font-size: 1.05rem;
  color: #fdfbf9;
  opacity: 0.85;
  margin-top: 0.2rem;
}
footer .footer-right {
  text-align: right;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.85;
  min-width: 210px;
}
footer a {
  color: #fe9400;
  text-decoration: none;
}

@media (max-width: 600px) {
  footer .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer-right {
    font-size: 0.65rem;
    text-align: center;
    min-width: 0;
    align-self: center;
  }
}
/* -------------------------------------------------- */
/* Hero Section */
/* -------------------------------------------------- */
/* Hero Section */
.hero-video-wrapper {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 400px;
  overflow: hidden;
}
.hero-video-wrapper .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  box-sizing: border-box;
}
.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.hero-content > * {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-block-start: 1rem;
  margin-bottom: 1rem;
  color: inherit;
  text-shadow: 0 2px 8px rgba(196, 106, 45, 0.25), 0 2px 16px rgba(254, 148, 0, 0.18), 0 2px 24px rgba(1, 1, 0, 0.15);
  -webkit-text-stroke: 0.105px #010100;
  paint-order: stroke fill;
}
.hero-content p {
  font-size: 1.6rem;
  font-weight: 500;
  color: inherit;
  text-shadow: 0 2px 8px rgba(196, 106, 45, 0.25), 0 2px 16px rgba(254, 148, 0, 0.18), 0 2px 24px rgba(1, 1, 0, 0.15);
  -webkit-text-stroke: 0.95px #010100;
  paint-order: stroke fill;
}

.hero-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-video-wrapper {
    height: 300px;
  }
  .hero-content {
    padding: 1.2rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .hero-video-wrapper {
    height: 180px;
  }
  .hero-content {
    padding: 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.85rem;
  }
}
/* -------------------------------------------------- */
/* Section Title Styling */
/* -------------------------------------------------- */
.section-title {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem 0.1rem 0rem;
}

.section-title h2 {
  font-weight: 600 !important;
}

/* -------------------------------------------------- */
/* Section Flex Layout */
/* -------------------------------------------------- */
.section-flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 0.1rem;
}

.section-flex .text {
  flex: 1 1 60%;
  min-width: 0;
}

.section-flex .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* -------------------------------------------------- */
/* Section Split Layouts */
/* -------------------------------------------------- */
.section-split .section-flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  flex-direction: row;
}

.section-split .text {
  flex: 1 1 60%;
}

.section-split .image {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
}

.section-split .image img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .section-split .section-flex {
    flex-direction: column;
    gap: 1rem;
  }
  .section-split .image {
    order: -1;
    text-align: center;
  }
  .section-split .image img {
    height: auto;
    width: auto;
    max-width: none;
    max-height: 180px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .section-split .text {
    text-align: left;
  }
}
@media (max-width: 900px) {
  .section-split .image img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* -------------------------------------------------- */
/* Services Section */
/* -------------------------------------------------- */
.section-services {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.section-services .service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.section-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.section-services .service-card h3 {
  color: #010100;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.section-services .service-card ul {
  margin: 0;
  padding-left: 1.2rem;
}
.section-services .service-card ul li {
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #010100;
}

@media (max-width: 900px) {
  .section-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .section-services {
    padding: 2rem 1rem;
  }
  .section-services .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .section-services .service-card {
    padding: 1.5rem;
  }
  .section-services .section-title {
    padding-left: 0.5rem;
  }
}
/* -------------------------------------------------- */
/* Experience (wv brand logos) */
/* -------------------------------------------------- */
.brand-logo-scroll {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 0;
  background: #fdfbf9;
}
.brand-logo-scroll .scroll-track {
  display: flex;
  width: fit-content;
  animation: scroll 40s linear infinite;
}
.brand-logo-scroll .logo-group {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
}
.brand-logo-scroll img {
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.brand-logo-scroll img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-logo-scroll:hover .scroll-track {
  animation-play-state: paused;
}

@media (max-width: 600px) {
  #experience.section-split {
    padding: 2rem 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  #experience .section-flex {
    flex-direction: column;
  }
  #experience .text {
    width: 100%;
    flex: 1 1 auto;
    word-break: break-word;
  }
}
/* -------------------------------------------------- */
/* Why Section */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* How Section */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* Contact Form Styling */
/* -------------------------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 500;
}
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form button {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  background: #fe9400;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-text-stroke: 0.75px #010100;
  paint-order: stroke fill;
}
.contact-form button:hover {
  background: rgb(203, 118.2834645669, 0);
}
@media (max-width: 600px) {
  .contact-form {
    padding-right: 1.45rem;
  }
}

/*# sourceMappingURL=main.css.map */