/* ============================================================
   Alpha Branding Studio — Design Tokens & Base Styles
   Editorial Minimal Palette (#F7F6F2 / #080808 / #DF613F)
   ============================================================ */

:root {
  /* Brand Editorial Palette Tokens */
  --bg-main: #F7F6F2;
  --bg-surface: #FFFFFF;
  --bg-dark: #080808;
  --bg-dark-soft: #151515;

  --text-primary: #080808;
  --text-muted: #77736D;
  --text-on-dark: #F7F6F2;
  --text-muted-on-dark: #A3A09A;

  --accent-orange: #DF613F;
  --accent-orange-hover: #C94F31;
  --accent-orange-rgb: 223, 97, 63;

  --border: #DEDDD8;
  --border-strong: #CBC9C3;

  /* Legacy mappings for backward compatibility */
  --midnight: #F7F6F2;
  --slate: #FFFFFF;
  --slate-2: #F7F6F2;
  --gold: #DF613F;
  --gold-dim: #C94F31;
  --warm-white: #FFFFFF;
  --off-white: #080808;
  --muted: #77736D;
  --line: #DEDDD8;
  --line-strong: #CBC9C3;

  --font-head: "Bodoni Moda", "Inter", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-label: "Manrope", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; }

p { margin: 0; color: var(--text-muted); }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
}
.label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-orange);
  display: inline-block;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section--tight { padding: 64px 0; }
.section--surface {
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow-block { margin-bottom: 20px; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { margin-top: 18px; }
.section-head .sub { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  min-height: 48px;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(223, 97, 63, 0.2);
}
.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(223, 97, 63, 0.32);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}
.btn-text {
  background: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0;
  min-height: auto;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
}
.btn-text:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

/* ---------- Accessibility Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

/* ---------- Header & Nav ---------- */
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1023.5px) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
  body.scroll #cs-navigation:before {
    border-radius: 0;
  }
  body.scroll #cs-navigation .cs-ul-wrapper {
    top: 100%;
  }
  #cs-navigation {
    width: 94%;
    max-width: 80rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem);
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 1;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.2s, border-radius 0.3s ease-in-out;
  }
  #cs-navigation.cs-active:before {
    transform: translateX(-50%) scale(1.03);
  }
  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 100%;
    margin: 0 auto 0 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #1a1a1a;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: transform 0.6s;
  }
  #cs-navigation .cs-nav {
    /* sends it to the right in the 3rd position */
    order: 3;
  }
  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 10;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    display: none;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #fafbfc;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 768px) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}
/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (max-width: 1023.5px) {
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    position: absolute;
    top: 85%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-70/16rem);
    transition: transform 0.6s, opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    padding: 0.25rem;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1023.5px) {
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #cs-navigation .cs-dropdown .cs-dropdown-toggle {
    /* Reset default button styles */
    background: none;
    border: none;
    
    text-align: inherit;
    cursor: pointer;
    /* Remove any default focus styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }
  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 1024px) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown .cs-dropdown-toggle {
    /* Reset default button styles */
    background: none;
    border: none;
    
    text-align: inherit;
    cursor: pointer;
    /* Remove any default focus styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  #cs-navigation .cs-dropdown:hover,
  #cs-navigation .cs-dropdown.cs-active {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul,
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li,
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
    opacity: 0;
    border-bottom: 5px solid var(--primary);
    border-radius: 0 0 1.5rem 1.5rem;
    visibility: hidden;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: calc(100% - 2px);
    z-index: 100;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    font-size: 1rem;
    text-decoration: none;
    list-style: none;
    width: 100%;
    height: auto;
    opacity: 0;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline-offset: -2px;
  }
}
/* Dark Mode - Desktop */
@media only screen and (min-width: 1024px) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 1024px) {
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    top: 0;
  }
  #cs-navigation {
    width: 94%;
    max-width: 90rem;
    height: 6rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    /* 12px - 24px */
    padding: clamp(0.75rem, 2vw, 1.5rem) 0;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 2rem;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-contact-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    background-color: var(--primary);
  }
  #cs-navigation .cs-social-link:hover .cs-social-icon {
    filter: grayscale(1) brightness(10000%);
    opacity: 1;
  }
  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    /* absolutely positioned to be dead center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 1300px) {
  #cs-navigation .cs-social {
    display: flex;
  }
}
                                

/* ---------- Hero (Front Page: Major Dark Section) ---------- */
.hero {
  min-height: 78vh;
  position: relative;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 90px;
  display: flex;
  align-items: flex-start;
  background: var(--bg-dark);
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; }
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.9;
}
.hero-canvas canvas { display: block; }
.hero-fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(223, 97, 63, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(50, 50, 50, 0.2), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy { max-width: 540px; }
.hero h1 { margin-top: 20px; font-size: clamp(2rem, 4.2vw, 3.15rem); color: #FFFFFF; }
.hero .sub {
  margin-top: 24px;
  font-size: 1.12rem;
  max-width: 520px;
  color: var(--text-muted-on-dark);
  opacity: 0.9;
}
.hero-cta { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero .btn-text {
  color: var(--text-on-dark);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.hero .btn-text:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}
.hero .wrap {
  max-width: none;
  margin-left: 0;
  padding-left: 60px;
}

.word { display: inline-block; }

/* Hero floating stat badges (Secondary Dark Surface: #151515) */
.hero-badges { position: absolute; inset: 0; z-index: 1; pointer-events: none; display: none; }
@media (min-width: 901px) { .hero-badges { display: block; } }
.stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(21, 21, 21, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
  animation: heroFloat 5.5s ease-in-out infinite;
}
.stat-badge .icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(var(--accent-orange-rgb), 0.15);
  color: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
}
.stat-badge .value { font-family: var(--font-head); font-weight: 700; color: #FFFFFF; font-size: 1.05rem; line-height: 1.1; white-space: nowrap; }
.stat-badge .caption { font-size: 0.7rem; color: var(--text-muted-on-dark); font-family: var(--font-label); letter-spacing: 0.03em; text-transform: uppercase; margin-top: 2px; white-space: nowrap; }

.badge-1 { top: 10%; right: 9%; animation-delay: 0s; }
.badge-2 { top: 46%; right: 4%; animation-delay: 1.3s; }
.badge-3 { top: 76%; right: 15%; animation-delay: 2.4s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-badge { animation: none; }
}

/* ---------- Marquee Strip (Secondary Dark Surface: #151515) ---------- */
.marquee-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-dark-soft);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 40px;
  white-space: nowrap;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-item svg { color: var(--accent-orange); width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-2, .grid-6 { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pain-card:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.04);
}
.pain-card .num { font-family: var(--font-label); color: var(--accent-orange); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 16px; display: block; }
.pain-card p { color: var(--text-primary); font-size: 1.05rem; line-height: 1.5; }

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  height: 100%;
}
.service-card:hover {
  transform: perspective(800px) rotateY(6deg) translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 36px rgba(8, 8, 8, 0.06);
}
.icon-box {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(var(--accent-orange-rgb), 0.08);
  border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-orange);
}
.service-card h3 { font-size: 1.15rem; color: var(--text-primary); }
.service-card p { font-size: 0.94rem; color: var(--text-muted); }
.service-card .go {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-orange); font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-label); letter-spacing: 0.04em; text-transform: uppercase;
  transition: gap 0.2s var(--ease);
}
.service-card:hover .go { gap: 10px; }

.industry-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
  display: flex; align-items: flex-end;
  padding: 28px;
  transition: transform 0.4s var(--ease);
}
.industry-tile:hover { transform: scale(1.015); }
.industry-tile .bg-illustration {
  position: absolute; inset: 0;
  opacity: 0.4;
  transition: transform 0.5s var(--ease);
}
.industry-tile:hover .bg-illustration { transform: rotateX(6deg) rotateY(-6deg) scale(1.05); }
.industry-tile .scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.5)); }
.industry-tile .content { position: relative; z-index: 1; }
.industry-tile .icon-box { margin-bottom: 14px; background: rgba(var(--accent-orange-rgb), 0.15); color: var(--accent-orange); }
.industry-tile h3 { margin-bottom: 6px; color: #FFFFFF; }
.industry-tile p { font-size: 0.9rem; color: var(--text-muted-on-dark); }

/* ---------- Founders ---------- */
.founder-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.founder-photo {
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--bg-dark-soft);
  border: 2px solid var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-orange);
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.founder-card h3 { margin-bottom: 4px; color: var(--text-primary); }
.founder-card .title { color: var(--accent-orange); font-size: 0.82rem; font-family: var(--font-label); letter-spacing: 0.03em; margin-bottom: 8px; display: block; }
.founder-card .skill { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(var(--accent-orange-rgb), 0.25);
  background: rgba(var(--accent-orange-rgb), 0.08);
  color: var(--accent-orange);
  font-size: 0.74rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
}

/* founder flip (about page) */
.founder-flip { perspective: 1200px; height: 380px; }
.founder-flip-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.6s var(--ease);
  transform-style: preserve-3d;
}
.founder-flip:hover .founder-flip-inner { transform: rotateY(180deg); }
.founder-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.founder-back { transform: rotateY(180deg); text-align: left; justify-content: flex-start; }
.founder-back p { color: var(--text-primary); font-size: 0.9rem; margin-top: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ---------- Case studies / counters ---------- */
.result-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.result-card .meta { max-width: 340px; }
.result-card .stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-family: var(--font-label); }
.counter { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--text-primary); line-height: 1; margin-top: 6px; }
.counter .from { font-size: 1rem; color: var(--text-muted); font-weight: 500; margin-left: 8px; }
.chip {
  display: inline-flex; align-items: center; padding: 5px 12px;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.76rem; color: var(--text-muted);
  background: var(--bg-main);
}

/* ---------- Testimonials ---------- */
.testimonial-wrap { position: relative; max-width: 700px; }
.testimonial-slide { display: none; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.testimonial-slide.active { display: block; }
.testimonial-slide .quote-mark { color: var(--accent-orange); font-size: 2.6rem; font-family: var(--font-head); line-height: 1; margin-bottom: 12px; }
.testimonial-slide p.quote { color: var(--text-primary); font-size: 1.15rem; line-height: 1.5; }
.testimonial-slide .who { margin-top: 20px; font-size: 0.88rem; color: var(--text-muted); }
.testimonial-nav { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.dots { display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s, width 0.2s; }
.dot.active { background: var(--accent-orange); width: 20px; border-radius: 4px; }
.arrow-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-surface); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.arrow-btn:hover { border-color: var(--accent-orange); color: var(--accent-orange); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; text-align: left;
  padding: 22px 0; cursor: pointer;
  color: var(--text-primary); font-family: var(--font-head); font-size: 1.02rem; font-weight: 600;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-orange); }
.faq-icon { flex-shrink: 0; margin-left: 20px; transition: transform 0.3s var(--ease), color 0.2s; color: var(--accent-orange); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding-bottom: 22px; font-size: 0.96rem; max-width: 640px; color: var(--text-muted); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 6px; font-family: var(--font-label); letter-spacing: 0.03em;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-height: 48px;
  transition: border-color 0.2s, outline-color 0.2s;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent-orange); outline-offset: 1px; border-color: var(--accent-orange);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success svg { color: var(--accent-orange); width: 44px; height: 44px; margin: 0 auto 14px; }

/* ---------- Timeline / process ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 50px; }
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr; gap: 36px; } }
.process-step { position: relative; padding-right: 20px; }
.process-step .step-num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--accent-orange); color: var(--accent-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 18px;
  background: var(--bg-surface); position: relative; z-index: 2;
}
.process-connector {
  position: absolute; top: 23px; left: 46px; right: -20px; height: 1px;
  background: var(--border); z-index: 1; overflow: hidden;
}
.process-connector::after {
  content: ""; position: absolute; inset: 0; background: var(--accent-orange);
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease);
}
.process-connector.filled::after { transform: scaleX(1); }
@media (max-width: 900px) { .process-connector { display: none; } }

/* ---------- Timeline (about page) ---------- */
.timeline { position: relative; padding-left: 28px; border-left: 1px solid var(--border); }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before {
  content: ""; position: absolute; left: -33px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent-orange);
}
.timeline-item .year { font-family: var(--font-label); color: var(--accent-orange); font-size: 0.85rem; letter-spacing: 0.04em; }
.timeline-item h4 { margin: 6px 0 6px; font-family: var(--font-head); color: var(--text-primary); font-size: 1.05rem; }
.timeline-item p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- Value tiles ---------- */
.value-tile { padding: 28px 0; border-top: 1px solid var(--border); }
.value-tile .icon-box { margin-bottom: 16px; }
.value-tile h3 { margin-bottom: 8px; color: var(--text-primary); }
.value-tile p { font-size: 0.94rem; color: var(--text-muted); }

/* ---------- CTA banner (Major Dark Section: #080808) ---------- */
.cta-banner {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 90px 0;
  text-align: center;
}
.cta-banner .section-head { margin: 0 auto 40px; text-align: center; }
.cta-banner h2 { color: #FFFFFF; }
.cta-banner .sub { color: var(--text-muted-on-dark); }
.cta-banner .label { justify-content: center; }
.cta-banner .label::before { display: none; }

/* ---------- Footer (Major Dark Section: #080808) ---------- */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-orange); margin-bottom: 16px; font-weight: 600;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: 0.9rem; color: var(--text-muted-on-dark); transition: color 0.2s; }
.footer-grid ul a:hover { color: #FFFFFF; }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--text-muted-on-dark); align-items: flex-start; }
.footer-contact svg { color: var(--accent-orange); flex-shrink: 0; margin-top: 2px; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; color: var(--text-muted); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted-on-dark);
  transition: border-color 0.2s, color 0.2s;
}
.social-row a:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-wordmark {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(4rem, 16vw, 11rem);
  color: rgba(255, 255, 255, 0.035);
  text-align: center;
  line-height: 0.8;
  margin-top: 10px;
  user-select: none;
  letter-spacing: -0.02em;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.hidden { display: none !important; }

/* breadcrumb */
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); padding: 24px 0 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-orange); }

/* generic split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse .split-visual { order: -1; }
@media (max-width: 900px) { .split.reverse .split-visual { order: 0; } }

.service-detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-detail-block:last-child { border-bottom: none; }
.service-detail-block.reverse .sd-visual { order: -1; }
@media (max-width: 900px) { .service-detail-block, .service-detail-block.reverse .sd-visual { grid-template-columns: 1fr; order: 0; } .service-detail-block { grid-template-columns: 1fr; } }
.sd-visual {
  aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
}
.sd-visual .icon-box { width: 88px; height: 88px; border-radius: 22px; }
.sd-visual .icon-box svg { width: 38px; height: 38px; }
.sd-meta { display: flex; gap: 30px; margin-top: 22px; flex-wrap: wrap; }
.sd-meta div span { display: block; font-family: var(--font-label); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-orange); margin-bottom: 6px; }
.sd-meta div p { font-size: 0.88rem; color: var(--text-primary); }

.callout-box {
  border: 1px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 40px;
  background: rgba(var(--accent-orange-rgb), 0.04);
}
.callout-box h3 { color: var(--text-primary); }

.chip-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-strip .chip { padding: 10px 18px; font-size: 0.85rem; background: var(--bg-surface); border: 1px solid var(--border); }

.industries-strip { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.industries-strip .item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.industries-strip .icon-box { width: 56px; height: 56px; border-radius: 16px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 260px; border: 0; filter: grayscale(0.2) contrast(0.95); }

.expand-btn { background: none; border: none; color: var(--accent-orange); font-family: var(--font-label); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.case-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.case-body-inner { padding-top: 24px; border-top: 1px solid var(--border); margin-top: 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 800px) { .case-body-inner { grid-template-columns: 1fr 1fr; } }
.case-body-inner h5 { font-family: var(--font-label); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--accent-orange); margin-bottom: 8px; }
.case-body-inner p { font-size: 0.88rem; color: var(--text-muted); }
.case-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.case-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   Marquee Hero — used on About, Services, Case Studies
   ============================================================ */
@keyframes hero-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-marquee {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
}

.hero-marquee-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.hero-marquee-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  white-space: nowrap;
  animation: hero-marquee-scroll 40s linear infinite;
}
.hero-marquee-track span {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 18vw;
  color: rgba(8, 8, 8, 0.035);
}
@media (min-width: 768px) {
  .hero-marquee-track span { font-size: 12vw; }
}

.hero-marquee-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(var(--accent-orange-rgb), 0.08);
}
.hero-marquee-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: inline-block;
}

.hero-marquee-heading {
  margin-top: 28px;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-marquee-note {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
}

.hero-marquee-actions { margin-top: 40px; }

.hero-marquee-footnote {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Blog ---- */
.blog-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.blog-hero img { width: 100%; max-height: 440px; object-fit: cover; display: block; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.05);
}
.blog-card-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-main); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card-title { font-family: var(--font-head); font-size: 1.15rem; line-height: 1.3; color: var(--text-primary); }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--accent-orange); }
.blog-card-excerpt { color: var(--text-muted); font-size: 0.92rem; flex: 1; }

.blog-post-meta {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.blog-post-content { max-width: 760px; margin: 0 auto; color: var(--text-primary); line-height: 1.75; }
.blog-post-content h2, .blog-post-content h3 { font-family: var(--font-head); color: var(--text-primary); margin-top: 2em; }
.blog-post-content p { margin: 1.2em 0; color: var(--text-primary); }
.blog-post-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.blog-post-content a { color: var(--accent-orange); }
.blog-post-content a:hover { color: var(--accent-orange-hover); }
.blog-post-content ul, .blog-post-content ol { padding-left: 1.4em; margin: 1.2em 0; }

.blog-pagination { display: flex; gap: 10px; justify-content: center; margin-top: 50px; }
.blog-pagination a, .blog-pagination span {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 0.85rem;
  background: var(--bg-surface);
}
.blog-pagination .current { border-color: var(--accent-orange); color: var(--accent-orange); }
.blog-pagination a:hover { border-color: var(--accent-orange); color: var(--accent-orange); }

.work {
  --work-gutter: clamp(20px, 5vw, 72px);
  --work-gap: clamp(16px, 1.6vw, 24px);
  --work-visible: 4;

  background: var(--bg-main);
  color: var(--text-primary);
  padding: clamp(56px, 8vw, 128px) 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.work *,
.work *::before,
.work *::after {
  box-sizing: border-box;
}

.work__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--work-gutter);
}

/* ---------- Header ---------- */

.work__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 24px;
  margin-bottom: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--border);
}

.work__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-orange);
}

.work__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.work__lead {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---------- Links ---------- */

.work__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-label);
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.work__link svg {
  flex: none;
  transition: transform 0.32s var(--ease);
}

.work__link:hover,
.work__card:hover .work__link {
  color: var(--accent-orange-hover);
}

.work__link:hover svg,
.work__card:hover .work__link svg {
  transform: translateX(5px);
}

.work__link:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 4px;
  border-radius: 3px;
}

.work__link--all {
  font-size: clamp(14px, 1.05vw, 16px);
}

/* ---------- Slider shell: [prev] [track] [next] ---------- */

.work__slider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.work__arrow {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.work__arrow:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.work__arrow:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 3px;
}

.work__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.work__arrow svg {
  width: 18px;
  height: 18px;
}

/* ---------- Track ---------- */

.work__grid {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--work-visible) - 1) * var(--work-gap)) / var(--work-visible));
  gap: var(--work-gap);
  margin: 0;
  padding: 0;
  padding-bottom: 4px;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.work__grid::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1080px) {
  .work { --work-visible: 2.3; }
}

/* ---------- Card ---------- */

.work__card {
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.work__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.work__card:hover .work__media img {
  transform: scale(1.045);
}

.work__category {
  margin: 0 0 8px;
  font-family: var(--font-label);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.work__name {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(19px, 1.5vw, 23px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.work__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.work__name a:hover {
  color: var(--accent-orange);
}

.work__desc {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.work__card .work__link {
  margin-top: auto;
}

/* ---------- Mobile: arrows off, thumb swipe only ---------- */

@media (max-width: 720px) {
  .work { --work-visible: 1.15; }

  .work__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work__link--all {
    justify-self: start;
  }

  .work__arrow {
    display: none;
  }

  .work__media {
    aspect-ratio: 4 / 3.2;
  }
}

/* ---------- Progress dots (mobile only) ---------- */

.work__dots {
  display: none;
}

@media (max-width: 720px) {
  .work__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .work__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-strong);
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .work__dot.is-active {
    background: var(--accent-orange);
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .work__media img,
  .work__link svg,
  .work__dot,
  .work__arrow {
    transition: none;
  }
}
/* ==========================================================
   Alpha Branding Studio — Mobile Navigation Fix
   ========================================================== */

@media only screen and (max-width: 1023.5px) {

  #cs-navigation {
    width: calc(100% - 24px);
    max-width: none;
    height: 86px;
    min-height: 86px;
    padding: 12px 16px;
    top: 12px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  #cs-navigation .cs-container {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  /* Logo */
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 200px;
    height: 62px;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #cs-navigation .cs-logo img {
    width: auto;
    max-width: 200px;
    height: 62px;
    max-height: 62px;
    object-fit: contain;
  }

  /* Hamburger */
  #cs-navigation .cs-toggle {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 8px;
    background: #1a1a1a;
  }

  #cs-navigation .cs-box {
    width: 25px;
    height: 18px;
  }

  #cs-navigation .cs-line {
    height: 2px;
  }

  /* Mobile menu */
  #cs-navigation .cs-ul-wrapper {
    top: calc(100% - 1px);
    border-radius: 0 0 18px 18px;
    padding-bottom: 20px;
  }

  #cs-navigation .cs-ul {
    padding-top: 28px;
    gap: 16px;
  }

  /* Menu links */
  #cs-navigation .cs-li-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  /* Dropdown */
  #cs-navigation .cs-drop-ul {
    background: var(--bg-main);
  }

  #cs-navigation .cs-li-link.cs-active,
  #cs-navigation .cs-li-link:hover {
    color: var(--accent-orange);
  }
}


/* ==========================================================
   Small Phones
   ========================================================== */

@media only screen and (max-width: 480px) {

  #cs-navigation {
    width: calc(100% - 20px);
    height: 78px;
    min-height: 78px;
    padding: 10px 14px;
    top: 10px;
    border-radius: 16px;
  }

  #cs-navigation .cs-logo {
    height: 54px;
    max-width: 180px;
  }

  #cs-navigation .cs-logo img {
    max-width: 180px;
    height: 54px;
    max-height: 54px;
  }

  #cs-navigation .cs-toggle {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
}