/* =========================================
   1. GLOBAL RESET & FONTS
========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #111;
  line-height: 1.6;
  padding-top: 80px; /* Space for fixed header */
  background-color: #fff;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0; /* Standard desktop vertical breathing room */
}

/* =========================================
   2. GLOBAL TYPOGRAPHY
========================================= */
/* MOBILE TOP GAP REDUCTION */
@media (max-width: 768px) {
  /* 1. Reduce the main wrapper's top margin/padding */
  .bcg-wrapper, 
  main, 
  .content-section {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }
}
/* HERO SMALL STYLING */
.hero-small {
  padding: 60px 0 20px 0; /* Tightened bottom padding to fix big space */
  background-color: #ffffff;
  text-align: center; /* Left aligned per instructions [cite: 2026-02-26] */
}

/* section-container keeps content from hitting the screen edges */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-small h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px; 
  letter-spacing: -0.02em;
  /* Add this to allow the H1 itself to spread wider if needed */
  max-width: 1000px; 
}

.hero-small .sub-text {
  font-size: 1.25rem;
  color: #444444; 
  line-height: 1.4;
  /* CHANGE THIS: Increase from 650px to 1000px or more */
  max-width: 1100px; 
  margin-bottom: 0; 
  /* Ensures it stays left-aligned as it spreads [cite: 2026-02-26] */
  text-align: left; 
}

/* MOBILE FIX */
@media (max-width: 768px) {
  /* 1. Target any hero-style section on the homepage or about page */
  .hero, .hero-small, .hero-section, .centered-header {
    padding-top: 10px !important;    /* Forces top space to 10px */
    margin-top: 0 !important;
  }
  /* 2. Target the H1 directly to remove the hidden browser margin */
  .hero h1, .hero-small h1, .hero-section h1 {
    margin-top: 0 !important;       /* Removes the invisible push above text */
    padding-top: 0 !important;
    line-height: 1.1;               /* Prevents tall line-height from adding space */
  }

  /* 3. Ensure the main content wrapper isn't pushing it down */
  main, .bcg-wrapper {
    padding-top: 0 !important;
  }
/* Remove the default "push" from headings */
  h2, h3 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    text-align: left; /* Keeps text left-aligned under headers [cite: 2026-02-26] */
  }

  /* Adjust the eyebrow to sit higher */
  .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 5px; /* Tightens the gap to the header below it */
  }

  /* Ensure the paragraph below h3 is flush left and close */
  h3 + p {
    margin-top: 5px !important;
    text-align: left; [cite: 2026-02-26]
  }
}
/* H2 */
h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111827;
}

.eyebrow {
  color: #C00000;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  display: block;
}

/* =========================================
   3. HEADER & NAVIGATION
========================================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #C00000;
}
/* Header Centering for Windows */
.centered-header {
  text-align: center;
  margin-bottom: 60px;
}

/* 4-Column Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 grid as seen in LIKE.png */
  gap: 25px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center; /* Centered for Desktop like LIKE.png */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* First card unique background */
.light-blue-bg {
  background-color: #f0f4ff;
  border: none;
}

/* Icon Styling */
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.icon-circle.blue { background: #e0e7ff; color: #4f46e5; }
.icon-circle.green { background: #dcfce7; color: #16a34a; }
.icon-circle.orange { background: #ffedd5; color: #ea580c; }
.icon-circle.light-blue { background: #e0f2fe; color: #0284c7; }

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
}

.resource-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Button Styling from LIKE.png */
.btn.outline-red {
  border: 1px solid #d32f2f;
  color: #d32f2f;
  background: transparent;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
}

.btn.primary.red {
  background: #e53935;
  color: white;
  border: none;
}

/* =========================================
   4. BUTTONS
========================================= */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: #C00000;
  color: #fff;
}

.btn.primary:hover {
  background: #a00000;
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: #C00000;
  border: 1.5px solid #C00000;
}

.btn.secondary:hover {
  background: #fff5f5;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.centered-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}
.centered-btn-wrapper {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  width: 100%;             /* Spans the full width of the section */
  margin-top: 50px;        /* Pushes it away from the cards for breathing room */
}
/* Centers the Products header on Desktop/Windows */
.centered-header {
  text-align: center;
  margin-bottom: 50px;
}

.centered-header .eyebrow {
  margin: 0 auto 10px;
}

.centered-header h2 {
  margin: 0 auto 20px;
}

.centered-header .sub-text {
  margin: 0 auto;
  max-width: 600px; /* Keeps the description easy to read */
}
/* =========================================
   5. SECTIONS (ALTERNATING COLORS)
========================================= */

/* Hero - White */
.hero {
  background-color: #ffffff;
  text-align: center;
  padding: 120px 0 80px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  max-width: 1000px;
  margin: 0 auto 20px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 1.25rem;
  color: #555;
  max-width: 1100px;
  margin: 0 auto 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Process - Light Gray */
.process {
  background-color: #f9fafb;
}
/* Centers the eyebrow and H2 in the Process section on Windows */
.process .section-container {
  text-align: center;
}

.process .eyebrow {
  margin: 0 auto 10px;
}

.process h2 {
  margin: 0 auto 50px;
  max-width: 700px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-item {
  display: flex;
  gap: 20px;
  text-align: left;
}

.process-icon {
  flex-shrink: 0;          /* Keeps icon box square */
  width: 50px;
  height: 50px;
  background: #5b5bf7;
  border-radius: 8px;      /* Slightly rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

/* Featured Products - White */
.featured-products {
  background-color: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-img-holder img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
}

.price {
  font-weight: 600;
  font-size: 1.2rem;
}

.price small {
  display: block;
  font-size: 0.8rem;
  color: #777;
  font-weight: 400;
}

.btn-buy {
  background: #74c660;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
}

/* CTA Band - Purple */
.cta-band {
  background: #4b43d1;
  color: #fff;
  padding: 80px 0;
  margin: 0; /* Backgrounds should touch */
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text h2 {
  color: #fff;
  margin-bottom: 10px;
}

.btn-white {
  background: #fff;
  color: #C00000;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

/* Why Section - Light Gray */
.why-section {
  background-color: #f9fafb;
}

.why-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left; /* Paragraph below h3 left aligned */
}
/* =========================================
   CONTACT FORM STYLING
========================================= */

/* 1. Form Wrapper to Center and Limit Width on Desktop */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto; /* Centers the form block */
  text-align: left; /* Ensures labels and inputs align left */
}

/* 2. Style the Labels (Name, Email, Message) */
.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px; /* Space between label and input */
  font-size: 0.95rem;
}

/* 3. Style Input Fields and Textarea */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd; /* Light gray border */
  border-radius: 6px; /* Slightly rounded corners */
  font-family: inherit; /* Inherits 'Inter' from body */
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fff;
  margin-bottom: 25px; /* Spacing between form groups */
}

/* 4. Placeholder Styling (Subtle Gray) */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

/* 5. Focus State (When User Clicks In) */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C00000; /* Border changes to Brand Red */
  box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.1); /* Soft red glow */
}

/* 6. Special Styling for the Textarea (Message Box) */
.form-group textarea {
  resize: vertical; /* User can resize height, but not width */
}

/* 7. The Full-Width 'Send Message' Button */
.contact-form-wrapper .btn.full {
  width: 100%; /* Makes the button fill the form width */
  padding: 16px;
  font-size: 1.1rem;
  justify-content: center; /* Centers text inside flex button */
  margin-top: 10px;
}

/* SUCCESS MESSAGE STYLING */
.form-success {
  margin-top: 25px;
  padding: 15px;
  background-color: #e6fffa;
  border-left: 4px solid #38b2ac;
  color: #2c7a7b;
  border-radius: 4px;
  font-weight: 500;
}
/* ABOUT PAGE STYLING */
.about-header {
  padding-top: 40px;    /* Keeps a small gap from the top nav */
  padding-bottom: 0;    /* Removes bottom padding to fix the big space */
  text-align: left;     /* Aligns text to the left [cite: 2026-02-26] */
}

.about-header h1 {
  font-family: 'Inter', sans-serif; /* Clean, readable font */
  font-size: 3rem;      /* Large, bold display like hero.png */
  font-weight: 800;
  color: #000000;       /* Solid black per instructions */
  margin-bottom: 10px;  /* Tight gap to the subtitle */
  letter-spacing: -0.02em;
}

.about-header .subtitle {
  font-size: 1.25rem;
  color: #444444;       /* Dark gray for readability */
  line-height: 1.4;
  max-width: 600px;     /* Prevents text from stretching too wide */
  margin-bottom: 20px;  /* Controls the gap before the main story starts */
}
/* About Story */
.about-story {
  /* Reduced padding from 80px to 30px to close the "Big Space" */
  padding: 30px 0 60px 0; 
  background-color: #fcfcfc;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem; /* Slightly adjusted for better readability */
  line-height: 1.6;    /* Tightened line height for a more cohesive look */
  color: #444;
  text-align: left;   /* Ensures left alignment per instructions [cite: 2026-02-26] */
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.philosophy-item {
  padding: 30px;
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: left; /* Aligns paragraph under h3 [cite: 2026-02-26] */
}

.philosophy-item h3 {
  margin-bottom: 12px; /* Consistent spacing under headers */
  color: #000000;      /* H1/Main Header color */
}

/* Fix Button Spacing (Philosophy CTA) */
/* Fix Button Spacing (Philosophy CTA) */
.philosophy-cta {
  display: flex;
  justify-content: center; /* Change from flex-start to center */
  gap: 20px;               /* Keeps them side-by-side with a 20px gap */
  margin-top: 40px;
}

.philosophy-icon {
  width: 48px;
  color: #C00000; /* Brand Red */
  margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.about-header h1 {
    font-size: 2.2rem;   /* Scales down for mobile screens */
  }
  
  .about-header .subtitle {
    font-size: 1.1rem;
  }
  .about-story {
    padding: 20px 0 40px 0; /* Even tighter spacing for mobile screens */
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-cta {
    flex-direction: column; /* Stacks buttons on mobile */
    gap: 15px;
    align-items: flex-start;
  }
  
  .philosophy-cta .btn {
    width: 100%; /* Full width buttons for easier mobile tapping */
    text-align: center;
  }
}
/* CTA BAND SPECIFIC H2 STYLING */
.cta-band {
  background-color: #C00000; /* Assuming brand red based on your button.png */
  padding: 60px 0;
  color: #ffffff;
}

.cta-band h2 {
  /* Ensuring it uses your H2 specs */
  font-size: 2.5rem; 
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px; /* Tight spacing between the two lines */
  letter-spacing: -1px;
  color: #ffffff !important; /* Overriding your dark gray global H2 color */
  text-align: left; /* Maintains your left-aligned paragraph preference [cite: 2026-02-26] */
}

/* Flexbox to keep text and button behaving on Windows */
.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .cta-band h2 {
    font-size: 1.8rem; /* Scale down for mobile */
  }
  
  .cta-flex {
    flex-direction: column;
    text-align: left; /* Ensuring left alignment on mobile [cite: 2026-02-26] */
    align-items: flex-start;
  }
}

/* =========================================
   6. FOOTER (DARK)
========================================= */
.site-footer {
  background: #111827;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand p {
  color: #9ca3af;
  margin-top: 15px;
}

.footer-links h4, .footer-social h4 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  color: #9ca3af;
  transition: 0.3s;
}

.social-icons a:hover svg {
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #6b7280;
  font-size: 0.9rem;
}

/* =========================================
   7. MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h2 { font-size: 2rem; }
 /* CTA Section */
.cta-flex {
    flex-direction: column;    /* Stacks button below text */
    align-items: flex-start;   /* ALIGNS BUTTON TO THE LEFT */
    text-align: left;          /* Paragraph is below h3 left aligned */
    gap: 25px;                 /* Space between text and button */
  }

  .cta-text h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0px;
  }

  .cta-band .btn-white {
    width: auto;               /* PREVENTS FULL WIDTH */
    padding: 14px 28px;        /* Slightly more compact for mobile */
    display: inline-flex;      /* Keeps centering inside the button */
  }
 /* 2. GRID & PROCESS FIXES */
  .process h2 {
    text-align: left; 
    font-size: 1.8rem; 
  }

  .process .eyebrow {
    text-align: left; 
  }

  .process-grid { 
    display: flex;
    flex-direction: column; 
    gap: 32px; 
    padding: 0 10px;
  }

  .process-item {
    display: flex;         
    gap: 16px;             
    align-items: flex-start;  
    text-align: left;      
  }

  /* Header Alignments */
  .why-header-center, .hero, .process, .cta-text {
    text-align: left;
  }

  .why-header-center h2, .why-header-center .sub-text, .hero h1, .hero p {
    margin-left: 0;
  }

  .eyebrow { text-align: left; }
/* Centered Header */
.centered-header {
    text-align: left;
  }
  
  .centered-header .sub-text {
    margin-left: 0;
  }

  /* Grid Conversions */
  .process-grid, .products-grid, .why-grid, .footer-grid, .cta-flex {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 30px;
  }

  /* Resource-Grid*/
.resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    text-align: left;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .centered-header {
    text-align: left;
  }
/* 1. Show the Hamburger Button */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #333; /* Dark gray lines */
    transition: 0.3s;
  }

  /* 2. Style the Hidden Menu */
  .nav-links {
    display: none; /* Hidden by default */
    position: absolute;
    top: 70px; /* Sits below header */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    z-index: 999;
  }

  /* When JS adds the 'active' class, the menu shows */
  .nav-links.active {
    display: flex;
  }

 /* 1. Main Menu Container */
  .nav-links {
    display: none; /* Hidden until toggled */
    position: absolute;
    top: 100%;       /* Snaps to bottom of header */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px 0; /* Vertical padding only */
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  /* 2. Left-Aligned Navigation Links */
  .nav-links a {
    text-align: left;    /* Aligns text to the left */
    padding: 12px 25px;  /* Left padding creates the "inset" look */
    width: 100%;
    border-bottom: none; /* Removes the lines from lines.png */
    color: #333;
    font-size: 1.1rem;
    transition: 0.3s;
  }

  /* 3. Blue Highlight for 'Home' */
  .nav-links a.active {
    background-color: #f0f4ff; /* Light blue background */
    color: #4b43d1;            /* Blue text */
    margin: 0 15px;            /* Shrinks width so it doesn't touch screen edges */
    width: calc(100% - 30px);  /* Matches the margin */
    border-radius: 6px;
  }

  /* 4. Full-Width Centered Button */
  .btn-mobile-cta {
    display: block !important;
    margin: 20px 15px 10px !important; /* Centers within the 15px side gutters */
    width: calc(100% - 30px) !important;
    background: #C00000 !important;
    color: #fff !important;
    padding: 16px !important;
    border-radius: 8px !important;
    text-align: center !important;      /* Centers text inside the button */
    font-weight: 700;
    border: none;
  }

  /* Button Controls */
  .hero-buttons { flex-direction: column; }
  
  /* THIS KEEPS WHY BUTTON CENTERED ON MOBILE */
  .centered-button-container {
    justify-content: center; 
  }

  .cta-band .btn-white { width: auto; }
}
/* =========================================
   SAFE RESPONSIVE OVERRIDES (NON-DESTRUCTIVE)
========================================= */

/* ===== TABLET: FORCE 2 COLUMNS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .resources-grid,
  .products-grid,
  .why-grid,
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MOBILE: CENTER HERO + HEADERS ONLY ===== */
@media (max-width: 768px) {
  /* About page hero only */
  .hero-small {
    text-align: center;
  }

  .hero-small h1,
  .hero-small .sub-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Section headers */
  .centered-header h2,
  .centered-header .eyebrow,
  .centered-header .sub-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================================
   MOBILE HEADER RIBBON FIX
========================================= */
@media (max-width: 768px) {
  /* Reduce header height */
  .site-header {
    padding: 0;
    border-bottom: 1px solid #eee; /* keep it thin */
  }

  .nav-container {
    padding: 10px 16px; /* was visually too tall */
  }

  /* Ensure logo + hamburger stay vertically centered */
  .logo img {
    height: 26px; /* slightly smaller on mobile */
  }

  /* Prevent menu styles from creating visual thickness */
  .nav-links {
    box-shadow: none;
  }
}
/* =========================================
   MOBILE: REMOVE TOP GAP ABOVE FIRST HEADER
========================================= */
@media (max-width: 768px) {
  /* First section on the page */
  main > section:first-child {
    padding-top: 20px; /* was effectively ~60px+ */
  }

  /* Header block inside first section */
  main > section:first-child .centered-header {
    margin-top: 0;
    margin-bottom: 30px;
  }

  /* Eyebrow + H2 tightening */
  main > section:first-child .eyebrow {
    margin-top: 0;
  }

  main > section:first-child h2 {
    margin-top: 0;
  }
}
/* =========================================
   DESKTOP NAV CTA HEIGHT
========================================= */
@media (min-width: 1025px) {
  .nav-container .nav-cta,
  .nav-container .btn {
    padding: 14px 26px;     /* ↑ height, ↔ width */
    line-height: 1.2;
    min-height: 48px;      /* ensures consistent height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}