:root {
    --ink: #07130f;
    --deep: #06100d;
    --green: #087a4b;
    --lime: #caff3d;
    --paper: #f4f5ef;
    --muted: #66736c;
    --line: rgba(7, 19, 15, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif
}

.page-shell {
    overflow: hidden
}

/* Base Header Setup */
.inner-header {
    position: fixed;
    z-index: 1002;
    top: 18px;
    left: 4%;
    right: 4%;
    height: 70px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 17, 13, .78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px
}

.inner-header img {
    width: 150px;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

.inner-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: auto
}

.nav-links a {
    white-space: nowrap;
    text-decoration: none
}

.inner-cta {
    white-space: nowrap;
    margin-left: 0
}

.inner-nav a {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-nav a:hover,
.inner-nav a.active {
    color: var(--lime)
}

.inner-cta {
    padding: 12px 18px;
    background: var(--lime);
    color: var(--ink) !important;
    border-radius: 999px;
    font-weight: 800
}

/* Header Action Wrap for Mobile Toggle Integration */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 2-Bars Mobile Toggle Button Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
}

.mobile-toggle span,
.sitebar .mobile-toggle span,
.inner-header .mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff !important;
    background: #ffffff !important;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active Animation for 2 Bars to Cross Icon */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Fullscreen Overlay Navigation Menu */
.full-overlay-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #05140e;
    z-index: 1001;
    padding: 110px 30px 40px;
    box-sizing: border-box;
    flex-direction: column;
    overflow-y: auto;
}

.full-overlay-menu.active {
    display: flex;
}

.overlay-eyebrow {
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.overlay-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.overlay-links a {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.overlay-links a:hover,
.overlay-links a.active {
    color: var(--lime);
}

/* Hero Section Styles */
.page-hero {
    min-height: 78vh;
    padding: 160px 7% 90px;
    display: grid;
    align-items: end;
    position: relative;
    color: #fff;
    background: #07140f
}

.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 15, 11, .96), rgba(4, 15, 11, .5) 55%, rgba(4, 15, 11, .1)), var(--hero) center/cover
}

.page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(202, 255, 61, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(202, 255, 61, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime)
}

.eyebrow:before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor
}

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(58px, 8vw, 118px);
    line-height: .9;
    letter-spacing: -.06em;
    margin: 28px 0
}

.page-hero h1 em {
    font-weight: 500;
    color: var(--lime)
}

.page-hero p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .68);
    max-width: 650px
}

.content-section {
    padding: 110px 7%
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10vw
}

.section-kicker {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 800
}

.intro-grid h2,
.contact-title,
.gallery-title {
    font-family: 'Space Grotesk';
    font-size: clamp(44px, 6vw, 86px);
    line-height: .96;
    letter-spacing: -.055em;
    margin: 20px 0
}

.prose p {
    font-size: 16px;
    line-height: 1.95;
    color: #526059;
    margin: 0 0 26px
}

.image-story {
    padding: 0 7% 120px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 420px 300px;
    gap: 18px
}

.image-story figure {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    position: relative
}

.image-story figure:first-child {
    grid-row: span 2
}

.image-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease
}

.image-story figure:hover img {
    transform: scale(1.045)
}

.image-story figcaption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(6, 16, 13, .72);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 10px
}

/* ---- What We Do: pillars, operating process, closing band ---- */

.section-head-wide {
    max-width: 720px;
    margin-bottom: 54px
}

.section-head-wide h2 {
    font-family: 'Space Grotesk';
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 18px 0 0
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.pillar-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(5, 30, 20, .1)
}

.pillar-card img {
    display: block;
    width: 100%;
    height: 168px;
    object-fit: cover
}

.pillar-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px
}

.pillar-index {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--green)
}

.pillar-body h3 {
    margin: 12px 0 10px;
    font-family: 'Space Grotesk';
    font-size: 21px;
    letter-spacing: -.02em
}

.pillar-body p {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted)
}

.pillar-body a {
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 7px;
    align-self: flex-start
}

.pillar-body a:hover {
    border-color: var(--green);
    color: var(--green)
}

.process-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line)
}

.process-item {
    display: grid;
    grid-template-columns: 84px 1fr 1.15fr;
    gap: 30px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--line)
}

.process-item > span {
    font-family: 'Space Grotesk';
    font-size: 30px;
    line-height: 1;
    color: var(--line);
    letter-spacing: -.04em
}

.process-item:hover > span {
    color: var(--green)
}

.process-item h3 {
    margin: 0;
    font-family: 'Space Grotesk';
    font-size: 25px;
    letter-spacing: -.03em
}

.process-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: #526059
}

.cta-band {
    margin: 0 4% 110px;
    padding: 76px 6%;
    border-radius: 35px;
    background: #092016;
    color: #fff;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.cta-band h2 {
    margin: 16px 0 0;
    font-family: 'Space Grotesk';
    font-size: clamp(32px, 3.8vw, 50px);
    line-height: 1.03;
    letter-spacing: -.045em
}

.cta-band .section-kicker {
    color: var(--lime)
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.cta-actions a {
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    transition: transform .2s ease, background-color .2s ease
}

.cta-actions a:first-child {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink)
}

.cta-actions a:hover {
    transform: translateY(-2px)
}

.cta-actions a:not(:first-child):hover {
    background: rgba(255, 255, 255, .1)
}

.impact-band {
    margin: 0 4% 110px;
    padding: 70px 4%;
    border-radius: 35px;
    background: #092016;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.impact-band strong {
    font-family: 'Space Grotesk';
    font-size: 52px;
    color: var(--lime)
}

.impact-band span {
    display: block;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .1em
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 8vw
}

.contact-form {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 20px 70px rgba(5, 30, 20, .08)
}

.field {
    margin-bottom: 24px
}

.field label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 9px;
    color: #607068
}

/* Two fields side by side on wider screens; they stack below 600px. */
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px
}

.field label em {
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    opacity: .7
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccd4ce;
    background: transparent;
    padding: 12px 0;
    font: inherit;
    color: inherit;
    outline: none
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--green)
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa8a1
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

/* Native select chrome is replaced with the same chevron the rest of the
   site uses, so the control matches the underlined text fields. */
.field select {
    padding-right: 26px;
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%23607068' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    cursor: pointer
}

.field select:invalid {
    color: #9aa8a1
}

.submit-btn {
    border: 0;
    border-radius: 999px;
    padding: 16px 26px;
    background: var(--lime);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(7, 19, 15, .18)
}

.submit-btn:disabled {
    cursor: default;
    opacity: .75
}

.recaptcha-note {
    font-size: 10px;
    color: #839087;
    line-height: 1.6;
    margin-top: 20px
}

.recaptcha-note a {
    color: var(--green)
}

.contacts-list {
    display: grid;
    gap: 14px
}

.contact-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .5)
}

.contact-card strong {
    font-family: 'Space Grotesk';
    font-size: 17px
}

.contact-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin: 5px 0 12px
}

.contact-card a {
    color: var(--green);
    font-size: 12px;
    text-decoration: none
}

.gallery-controls {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin: 38px 0
}

.filter-btn {
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer
}

.filter-btn.active {
    background: var(--ink);
    color: white
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 92px;
    grid-auto-flow: dense;
    gap: 16px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 22px;
    cursor: pointer;
    grid-column: span 4;
    grid-row: span 3;
    background: #dfe5df
}

.gallery-item.wide {
    grid-column: span 8
}

.gallery-item.tall {
    grid-row: span 6
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .65s
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.06)
}

.gallery-item:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px
}

.gallery-item:focus-visible .gallery-overlay {
    opacity: 1
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(transparent 45%, rgba(2, 10, 7, .8));
    opacity: 0;
    transition: .3s;
    color: #fff
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-overlay strong {
    font-family: 'Space Grotesk';
    font-size: 20px
}

.gallery-overlay span {
    display: block;
    font-size: 10px;
    color: var(--lime);
    margin-top: 4px
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(2, 8, 6, .94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5vw
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 18px
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer
}

.lightbox-close {
    top: 25px;
    right: 25px
}

.lightbox-prev {
    left: 25px
}

.lightbox-next {
    right: 25px
}

.inner-footer {
    padding: 60px 7% 28px;
    background: #06100d;
    color: #fff
}

.inner-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.inner-footer img {
    width: 170px
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 12px
}

.inner-footer-bottom {
    padding-top: 24px;
    color: rgba(255, 255, 255, .4);
    font-size: 10px
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .8s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* 1024px Breakpoint: Switch Desktop Nav to 2-Bar Toggle */
@media(max-width: 1024px) {
    .inner-header {
        top: 12px;
        left: 3%;
        right: 3%;
        height: 60px;
        padding: 0 18px;
    }

    .inner-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }
}

@media(max-width:900px) {
    .intro-grid,
    .contact-layout,
    .cta-band {
        grid-template-columns: 1fr
    }

    .pillar-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-item {
        grid-template-columns: 56px 1fr;
        gap: 8px 20px
    }

    .process-item p {
        grid-column: 2
    }

    .image-story {
        grid-template-columns: 1fr;
        grid-template-rows: 380px 280px 280px
    }

    .image-story figure:first-child {
        grid-row: auto
    }

    .impact-band {
        grid-template-columns: 1fr 1fr
    }

    .gallery-item,
    .gallery-item.wide {
        grid-column: span 6
    }
}

@media(max-width:600px) {
    .field-row,
    .pillar-grid {
        grid-template-columns: 1fr
    }

    .cta-band {
        padding: 56px 26px
    }

    .inner-header {
        left: 12px;
        right: 12px
    }

    .inner-header img {
        width: 125px
    }

    .page-hero {
        padding: 140px 22px 70px;
        min-height: 70vh
    }

    .content-section {
        padding: 80px 22px
    }

    .image-story {
        padding: 0 22px 80px
    }

    .impact-band {
        margin: 0 12px 80px;
        padding: 45px 28px;
        grid-template-columns: 1fr 1fr
    }

    .impact-band strong {
        font-size: 36px
    }

    .gallery-grid {
        grid-auto-rows: 90px
    }

    .gallery-item,
    .gallery-item.wide {
        grid-column: span 12;
        grid-row: span 3
    }

    .gallery-item.tall {
        grid-row: span 4
    }

    .inner-footer {
        padding: 50px 22px 25px
    }

    .inner-footer-top {
        flex-direction: column
    }

    .lightbox-prev {
        left: 8px
    }

    .lightbox-next {
        right: 8px
    }
}

    /* Navbar Full Width & Original Dimensions */
    .site-header {
      width: calc(100% - 32px) !important;
      max-width: 1520px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      right: auto !important;
      padding: 0 24px !important;
    }

    /* Mobile Toggle Button & Overlay Menu Styles */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 22px;
      height: 10px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1005;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: #ffffff !important;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.is-active span:nth-child(1) {
      transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
      transform: translateY(-4px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #05140e;
      z-index: 1004;
      padding: 100px 30px 40px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu .menu-label {
      color: #caff3d;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .mobile-menu a {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Space Grotesk', sans-serif;
      transition: color 0.2s ease;
    }

    .mobile-menu a:hover {
      color: #caff3d;
    }

    .mobile-location-link {
      margin-top: 15px;
      color: #caff3d !important;
    }

    /* 1024px Breakpoint: Switch Desktop Nav to 2-Bar Toggle */
    @media (max-width: 1024px) {
      .desktop-nav {
        display: none !important;
      }

      .menu-toggle {
        display: flex !important;
      }

      .site-header {
        width: calc(100% - 24px) !important;
      }
    }

    /* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES (NAVBAR & TOGGLE MENU)
   ========================================================================== */

/* Hide Mobile Toggle Button on Desktop by Default */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0d0d0d; /* Adjust matching your site background */
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 90px 24px 32px 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

/* Open state for Mobile Menu */
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu .menu-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  opacity: 0.8;
}

.mobile-menu .mobile-location-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #000000;
  background-color: #ffffff;
  padding: 14px 20px;
  border-radius: 99px;
  text-align: center;
  justify-content: center;
  border-bottom: none;
}

/* Toggle Hamburger Animation when Active */
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Media Query for Screen Width 768px or smaller */
@media screen and (max-width: 768px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    position: relative;
    z-index: 1002;
  }

  /* Desktop Nav link Hide */
  .desktop-nav {
    display: none !important;
  }

  /* Show Toggle Button */
  .menu-toggle {
    display: flex;
  }

  /* Adjust Header Action Area */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Header CTA link optionally smaller on mobile */
  .header-cta {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

