/* =======================
   Variables / Resets
======================= */

:root{
  --bg-dark: #faf8f5;
  --bg-light: #ffffff;
  --accent: #af2400;
  --accent-soft: rgba(255, 59, 59, 0.12);
  --text-main: #111214;
  --text-muted: #5f646d;
  --text-dark: #111214;
  --border-subtle: #e4ddd4;
  --max-width: 1100px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.14);
  --stickyHeaderH: 86px; /* adjust if needed */
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #faf8f5;
  color: var(--text-main);
  line-height: 1.6;
}

h3{
  color: var(--text-muted);	
}

img{
  max-width: 100%;
  display: block;
  height: auto;
}

a{
  color: inherit;
  text-decoration: none;
}

ul{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

h1{
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1.2;
}

/* =======================
   Layout helpers
======================= */

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem;
}

/* Your sections were set to 0 padding — keeping your intent */
.section{
  padding: 1.25rem;

}

.section-header{
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* removed duplicate margin-bottom */
.section-eyebrow-top{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 0.5;
  margin-bottom: 0.7rem;
}

.section-title{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle{
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.25rem auto 0;
  font-size: 0.95rem;
}

/* IMPORTANT: this was affecting ALL <p> inside .container everywhere.
   If that was intentional, keep it. If it caused weird spacing, you can remove it. */
.container p{
  color: var(--text-muted);
  margin: 0.25rem auto 0;
  font-size: 0.95rem;
}

/* =======================
   Pills
======================= */

.pill{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  margin: .25rem 0rem .25rem 0rem;
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 59, 59, 0.45);
}

.pill2{
  display: none; /* will be enabled on mobile */
}

.pill-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.2);
}

/* =======================
   Header / Nav
======================= */

header{
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.95), rgba(250, 248, 245, 0.85));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 10%, #ff8a00, #ff3400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.brand-text-main{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand-text-sub{
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  padding: 10px;
}

.nav-links a{
  color: var(--text-muted);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav-links a:hover{
  color: #111214;
  opacity: 0.9;
}

.nav-highlight{
  font-weight: 500;
  color: var(--accent);
}

.nav-cta{
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-cta span{
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Second-row nav (default hidden; shown only on mobile) */
.nav-subrow{
  display: none;
}

/* =======================
   Hero
======================= */

.hero{
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* soft overlay for readability */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 245, 0.78),
    rgba(250, 248, 245, 0.90)
  );
  pointer-events: none;
}

/* ensure content sits above overlay */
.hero > *{
  position: relative;
  z-index: 1;
}


.hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-main-eyebrow{
  margin-bottom: 0.8rem;
}

.hero-title{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 1.9rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.hero-title span{
  color: var(--accent);
}

.hero-subtitle{
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 510px;
  margin-bottom: 1.5rem;
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  font-size: 0.82rem;
}

.hero-badge{
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn-primary{
  background: linear-gradient(135deg, #ff3400, #ff8a00);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.btn-outline{
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--text-main);
}

.btn-outline:hover{
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-1px);
}

.hero-contact-meta{
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-contact-meta a{
  color: #111214;
  font-weight: 500;
}

.hero-visual{
  position: relative;
}

.hero-card{
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-card-tag{
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-tag span{
  color: var(--accent);
  font-weight: 500;
}

.hero-image-placeholder{
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #eee7de;
  margin-bottom: 0.7rem;
}

.hero-image-placeholder img{
  width: 100%;
  height: 100%;
  display: block;
  
  object-position: center 35%;
}

.hero-card-metadata{
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-card-metadata strong{
  color: var(--text-main);
}

.hero-float-badge{
  position: absolute;
  right: -8px;
  bottom: -8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 0.6rem 0.9rem;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-float-badge strong{
  color: var(--accent);
  font-size: 0.78rem;
}

.hero-float-badge span{
  color: var(--text-muted);
}

/* =======================
   Services
======================= */

.services{
  background: #f3ede3;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card{
  background: linear-gradient(145deg, #ffffff, #f7f2ea);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* --- Services: consistent image height --- */
.service-card img{
  width: 100%;
  height: 169px;
  object-fit: cover;
  border-radius: 12px;
}

.service-label{
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}

.service-title{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.service-subtitle{
  font-size: 0.86rem;
  color: var(--text-muted);
}

.service-list{
  list-style: none;
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.service-list li{
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.3rem;
}

.service-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 59, 59, 0.7);
}

/* =======================
   Portfolio
======================= */

.portfolio{
  background: radial-gradient(circle at top left, #f4efe6, #faf8f5 58%);
}

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.portfolio-item{
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.portfolio-image{
  height: 190px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.portfolio-image video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.portfolio-body{
  padding: 0.9rem 1rem 1rem;
  font-size: 0.85rem;
}

.portfolio-title{
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.portfolio-meta{
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* =======================
   About
======================= */

.about{
  background: #faf8f5;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text h3{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.about-text p{
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.about-list{
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.4rem 0 0.8rem;
}

.about-list li{
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about-list li span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.16);
}

.about-photo{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: radial-gradient(circle at top, #f0e9df, #e6dfd6);
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.about-photo::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/pilot-photo-small.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.about-photo-content{
  position: relative;
  z-index: 1;
}

.about-photo-title{
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.about-photo-meta{
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =======================
   Testimonials
======================= */

.testimonials{
  background: #f3ede3;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card{
  background: linear-gradient(150deg, #ffffff, #f7f2ea);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 0.87rem;
  color: var(--text-muted);
}

.testimonial-card p{
  margin-bottom: 0.7rem;
}

.testimonial-author{
  font-size: 0.82rem;
  color: #111214;
  font-weight: 500;
}

.testimonial-role{
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* =======================
   Contact
======================= */

.contact{
  background: radial-gradient(circle at top right, #f4efe6, #faf8f5 60%);
}

.contact-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
}

.contact-card{
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-card h3{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-card p{
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-form{
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.field-group{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
}

.field-group label{
  color: var(--text-muted);
}

.field-group input,
.field-group textarea,
.field-group select{
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 0.5rem 0.9rem;
  font-family: inherit;
  font-size: 0.87rem;
  color: #111214;
  outline: none;
}

.field-group textarea{
  border-radius: 14px;
  min-height: 90px;
  resize: vertical;
  padding-top: 0.6rem;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.28);
}

.contact-meta{
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact-meta strong{
  color: #111214;
}

.contact-side{
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-list{
  list-style: none;
  padding-left: 0;
  font-size: 0.86rem;
}

.contact-list li{
  margin-bottom: 0.35rem;
}

.contact-highlight{
  color: #111214;
  font-weight: 500;
}

.map-placeholder{
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 0.9rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-muted);
}

.contact-block{ margin: 0; }
.contact-block strong{ display: inline-block; margin-bottom: 0.25rem; }

.contact-paragraph{
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

#contact.section{
  padding-top: 0;
}

/* =======================
   Footer
======================= */

footer{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
}

.footer-links{
  display: flex;
  gap: 1rem;
}

.footer-links a{
  color: var(--text-muted);
}

.footer-links a:hover{
  color: #111214;
}

/* =======================
   Added by Ted
======================= */

.logo-title{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  padding: 0 0 0 10px;
}

.logo-title span{
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 10px;
}

.pp{
  color: var(--accent);
}

/* =======================
   FAQ Page Styling
======================= */

.faq-section{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem;
  background: radial-gradient(circle at top left, #f4efe6, #faf8f5 58%);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
}

.faq-header{
  text-align: center;
  padding: 1.25rem 0 1rem;
}

.faq-header h1{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}

.faq-intro{
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.25rem auto 0;
  font-size: 0.95rem;
}

.faq-list{
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-bottom: 0.75rem;
}

.faq-item{
  background: linear-gradient(145deg, #ffffff, #f7f2ea);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  padding: 10px;
}

.faq-question{
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--text-main);
  padding: 1rem 1.05rem 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.16);
  margin-top: 0.35rem;
  flex: 0 0 auto;
}

.faq-answer{
  padding: 0.9rem 1.05rem 1.05rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-answer p{
  margin: 0;
}

.faq-answer strong{
  color: var(--text-main);
  font-weight: 500;
}

.faq-answer a{
  color: #111214;
  text-decoration: underline;
  text-decoration-color: rgba(255,59,59,0.45);
  text-underline-offset: 3px;
}

.faq-answer a:hover{
  color: var(--accent);
  text-decoration-color: rgba(255,59,59,0.8);
}

.faq-item:hover{
  border-color: rgba(255,59,59,0.35);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  transform: translateY(-1px);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

/* =======================
   Sticky header spacing
======================= */
/* If you truly want sticky header on desktop, use the variable.
   If you keep header position:static in mobile queries, this won't hurt. */
main{
  padding-top: 0rem; /* or: var(--stickyHeaderH) */
}

/* =======================
   Responsive (single set only)
======================= */

@media (max-width: 900px){
  .hero-inner,
  .about-inner,
  .contact-inner{
    grid-template-columns: minmax(0, 1fr);
  }

  .hero{
    padding-top: 1rem;
  }

  header{
    position: static;
  }

  .hero-visual{
    order: 0;
    margin-bottom: 0;
    margin-top: 4rem;
  }

  .services-grid,
  .portfolio-grid,
  .testimonials-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .nav-links{
    display: none;
  }

  header{
    position: static;
  }

  .hero-inner{
    gap: 0;
  }

  .services-grid,
  .portfolio-grid,
  .testimonials-grid{
    grid-template-columns: minmax(0, 1fr);
  }

  .section{
    padding: 3rem 0;
	
  }

  .brand{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
  }

  .nav-cta2{
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .pill2{
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 59, 59, 0.08);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 59, 59, 0.45);
  }

  /* FAQ section tweaks */
  .faq-section{
    padding: 1rem;
    border-radius: 14px;
  }

  /* SECOND ROW NAV (mobile only) */
  .nav-subrow{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    padding: 0.35rem 0 0.75rem;
    font-size: 0.9rem;
  }

  .nav-subrow a{
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.18s ease, opacity 0.18s ease;
  }

  .nav-subrow a:hover{
    color: #111214;
    opacity: 0.9;
  }

  .nav-subrow a::after{
    content: "";
    display: block;
    height: 1px;
    width: 0;
    background: var(--accent);
    transition: width 0.2s ease;
    margin-top: 2px;
  }

  .nav-subrow a:hover::after{
    width: 100%;
  }

  .faq-question{
    font-size: 1rem;
    padding: 0.95rem 0.95rem 0.8rem;
  }

  .faq-answer{
    padding: 0.85rem 0.95rem 0.95rem;
    font-size: 0.9rem;
  }
}

.footer-meta{
  text-align: right;
}

@media (max-width: 480px){
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .footer-links{
    width: 100%;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
  }

  .footer-meta{
    width: 100%;
    text-align: left;
  }

  .footer-links a{
    white-space: nowrap;
  }
  
  .pill {
	  margin: .25rem 0rem .25rem 0rem;
  }
  
}
