/* =========================
   DESIGN TOKENS
========================= */

:root {
  --font-size: 16px;
  --body-font-color: #4a5565;
  --heading-color:#171717;
  --background: #ffffff;
  --foreground: #0a0a0a;

  --card: #ffffff;
  --card-foreground: #0a0a0a;

  --primary: #030213;
  --primary-90: #030213E6;
  --primary-foreground: #ffffff;

  --secondary: #f3f4f6;
  --secondary-foreground: #030213;
  
  --orange-600: #f54a00;  
  --orange-700: #ca3500;
  --gray-50: #f9fafb;
  --gray-200:#e5e7eb;
  --gray-400:#99a1af;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --gray-600:#4a5565;
  --gray-300:#d1d5dc;
  --gray-500:#6a7282;
  --gray-900:#101828;

  --accent: #e9ebef;
  --accent-foreground: #030213;

  --border: rgba(0, 0, 0, 0.1);

  --radius: 10px;

  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-normal: 400;
  --section-divider: var(--orange-600);
  --button-primary: var(--orange-600);
  --button-primary-hover: var(--orange-700);
  --button-secondary: var(--orange-600);
  --button-secondary-hover: var(--orange-700);
  --link-primary: var(--orange-600);
  --link-primary-hover: var(--orange-700);
  --linkedin-link: var(--orange-600);
  --linkedin-link-hover: var(--orange-700);
  --menu-hover: var(--orange-600);
  /* ✅ Responsive typography tokens */
  --text-h1: clamp(28px, 4vw, 60px);
  --text-h2: clamp(24px, 5vw, 48px);
  --text-h3: clamp(20px, 2.5vw, 24px);
  --text-h4: clamp(18px, 2vw, 22px);
  --text-body: clamp(14px, 5vw, 1.25rem);
}

/* =========================
   BASE
========================= */

html {
  font-size: var(--font-size);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, sans-serif;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
@media only screen and (min-width:981px){
  .grid.reverse div:first-child{order:1}
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-wide {
  gap: clamp(2rem, 10vw, 4rem);
}
.grid-x-2{column-gap:clamp(1.5rem, 10vw, 3rem);}
.grid-y-4{row-gap:clamp(2rem, 10vw, 4rem);}
.space-y-6 > * + * {
  margin-top: 6rem;
}
.stack > * + * {
  margin-top: 1.5rem;
}
.stack-sm > * + * {
  margin-top: 1rem;
}
.stack-lg > * + * {
  margin-top: 2rem;
}
.stack-xl > * + * {
  margin-top: 3rem;
}
.content-narrow {
  max-width:56rem;
}
.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-600);
  font-weight: var(--font-weight-semibold);
}
.lead {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color:var(--card-foreground);
  line-height: 1.7;
  max-width: 40ch; /* improves readability */
}
.lead-lg {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* ~text-2xl */
  line-height: 1.7;
}
.icon-xl {
  width:4rem;height:4rem
}
/* ===== Background ===== */
.background-gray-50 {background-color:var(--gray-50)!important;}
.background-gray-900 {background-color:var(--gray-900);}
/* ===== Border ===== */
.no-border {border-width:0px!important;}
.border-bottom{border-bottom:1px solid;}
.border-top{border-top:1px solid;}
.all-border{border:1px solid;}
/* ===== Color ===== */
.gray-200{color:var(--gray-200);}
.gray-400{color:var(--gray-400);}
.gray-600{color:var(--gray-600);}
.gray-500{color:var(--gray-500);}
.border-color-gray-200{border-color:var(--gray-200);}
.border-color-gray-300{border-color:var(--gray-300);}

/* ===== Media Base ===== */
.media {
  overflow: hidden;
  border-radius: 6px;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:center;
  display:block;
}

/* ===== Wide Media (21:9) ===== */
.media-wide {
  aspect-ratio: 21 / 9;
}
@media only screen and (max-width:980px) {
  .grid {grid-template-columns:1fr;}
}
a {text-decoration:none;}
/* =========================
   RESPONSIVE TYPOGRAPHY
========================= */
h1,h2,h3,h4,h5,h6{color:var(--heading-color)}
h1 {
  font-size: var(--text-h1);
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  margin-block:0px;
}

h2 {
  font-size: var(--text-h2);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  margin-block:0px;
}

h3 {
  font-size: var(--text-h3);
  font-weight: var(--font-weight-medium);
  margin-block:0px;
}

h4 {
  font-size: var(--text-h4);
  font-weight: var(--font-weight-medium);
  margin-block:0px;
}

p {
  font-size: var(--text-body);
  color: var(--body-font-color);
  line-height: 1.6;
  margin-block:0px;
}
.section-header {margin-bottom:4rem;}
.section-title {margin-bottom:1rem;}
.heading-xl {
  font-size: var(--text-h2);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media only screen and (max-width:980px){
  .section-header{margin-bottom:2.5rem;}
}
/* =========================
   COMPONENTS
========================= */
input[type="email"],input[type="text"],select,textarea,.wpcf7-select {
  padding:12px 16px;
  border: 1px solid var(--gray-300);
  border-radius:6px;
  margin-top:.5rem;
  box-sizing:border-box;
  width:100%;
  -webkit-appearance: none;
  appearance: none;
}
input[type="email"]:hover,input[type="text"]:hover,select:hover,textarea:hover{
  border-color:var(--gray-400);
}
input[type="email"]:focus,input[type="text"]:focus,select:focus,textarea:focus,input[type="email"]:focus-visible,input[type="text"]:focus-visible,select:focus-visible,textarea:focus-visible{
  border-color:var(--gray-900);
  outline:none;
}
input::placeholder,
textarea::placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family:system-ui, -apple-system, sans-serif;
}
.wpcf7-select{position:relative;}
.wpcf7-form-control-wrap[data-name="message-topic"]:after{
  content: "";
  position: absolute;
  right: 16px;
  top: calc(.25rem + 50%);
  transform: translateY(-50%);

  width: 16px;
  height: 16px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;

  pointer-events: none;
}
form label {
  font-weight:500;
  display:grid;
}
a.card{
  transition: transform 0.2s ease;
}
a.card:hover{
  transform: translateY(-4px);
}
.card {
  background: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 2.5rem;
  display:grid;
  row-gap:1.5rem;
}
.card-icon svg {
  width: 3rem;
  height: 3rem;
  stroke-width: 1;
}
.card-text {font-size:clamp(14px, 1.2vw,16px);}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-top: 1.5rem;
  text-decoration: none;
  color: var(--link-primary);
  transition: all 0.2s ease;
}
.no-link-card-grid .card{box-shadow:unset;}
.card-link:hover {
  gap: 0.75rem;
}
.section-divider {
  width: clamp(40px, 8vw, 96px);;
  height: 4px;
  background: var(--section-divider);
}
/* ===== Arrow Link (reusable) ===== */
.section-header .link-arrow {
  font-size:16px;
  float:right;
}
.link-arrow {
  color: var(--link-primary);
  font-weight: var(--font-weight-medium);
}

.link-arrow:hover {
  color: var(--link-primary-hover);
}

.link-arrow svg {
  width: 1.25rem; /* ~w-5 */
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}
/* ===== Role Grid (optional override) ===== */
.role-grid {
  gap: clamp(2rem, 5vw, 4rem);
}

/* ===== Role Item ===== */
.role-item {
  max-width: 40ch;
}

/* ===== Icon ===== */
.role-icon svg {
  width: 3rem;
  height: 3rem;
  stroke-width: 1;
}

/* ===== Title ===== */
.role-title {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.cta-title{color:white;}
/* ===== Callout Banner ===== */
.content-center {
  max-width: 77.5rem;
  margin: 0 auto;
  text-align: center;
}
.heading-md {
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.heading-lg {
  font-size: clamp(1.75rem, 3vw, 2.25rem); /* ~text-4xl */
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.content-center .lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width:100%;
  color:var(--gray-600);
}
/* ===== Vertical List ===== */
/* ===== Icon List (Global Pattern) ===== */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.icon-list-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.icon-list-item:last-child .icon-list-content{
  border-bottom: none;
  padding-bottom: 0;
}

/* ===== Icon ===== */
.icon-list-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1;
  opacity: 0.85;
}

/* ===== Content ===== */
.icon-list-content {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.icon-list-title {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.icon-list-text {
  color: #6b7280;
  font-size:clamp(14px, 1.2vw,16px);
  line-height: 1.7;
  max-width: 60ch;
}
/* ===== Contct Container =====  */
.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1;
}
.contact-label {
  font-weight:500;
  margin-bottom:4px;
}
.contact-item {
  display:grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-form label {
  font-size:14px;
  color: var(--gray-600);
}
@media only screen and (min-width:981px){
.menu-item-has-children:hover .sub-menu{
  display:block;
}
}
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb; /* gray-200 */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px; /* optional but usually matches design */
  padding-inline:0px;
  margin-top:2rem;
}
.sub-menu li:first-child{border-radius:10px 10px 0px 0px;}
.sub-menu li:last-child{border-radius:0px 0px 10px 10px;}
.sub-menu li{padding:16px 24px;}
.menu-item {
  display: block;
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  position:relative;
}
.section {
  padding: clamp(40px, 6vw, 100px) 0px;
}
main > .section:not(:first-of-type):not(.section-light):not(.section-dark){
  background: #FFF7F5;
}
.section-light {
  background: var(--gray-50);
}
.section-dark {
  background: var(--gray-900);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark p{color:#fff;}
.contact-section {
  padding: clamp(60px, 10vw, 8rem) 0px!important;
}
.contact-section h2 {
  margin-bottom: 2rem;
}
/* ===== Alignment ===== */
.text-center {
  text-align: center;
}
.btn-center {margin-left:auto;margin-right:auto;}
.align-center{align-items:center}
/* =========================
   OPTIONAL: RESPONSIVE SPACING
========================= */
.m-y-2{margin-top:2rem;margin-bottom:2rem;}
.m-y-4{margin-top:4rem;margin-bottom:4rem;}
.p-y-3{padding-top:3rem;padding-bottom:3rem;}
.p-x-3{padding-left:3rem;padding-right:3rem;}
.pt-2{padding-top:2rem;}
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-header {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}
.site-header li:hover,.site-header a:hover{
  color:var(--menu-hover);
}
.logo a {
  font-size: clamp(20px, 2vw, 28px);
    letter-spacing: -0.01em;
    text-decoration: none;
    color: inherit;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav .sub-menu {
  display:none;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul.menu>li>a{display:block;padding-top:20px;padding-bottom:20px;}
.main-nav a {
  text-decoration: none;
  color: #111;
}

.site-footer {
  padding: 20px 0;
  text-align: center;
}
.site-footer p{font-size:16px;}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight:500;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  width:fit-content;
  border-width:1px;
  border-color:transparent;
}
.btn:hover {
  transform:scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background-color: var(--button-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--button-primary-hover);
}
/* ===== Outline Light Button ===== */
.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}
/* ===== Grid ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-media img{width:100%;object-fit:cover;border-radius:6px;}
.hero-content {display:grid;row-gap:2rem;}
@media only screen and (max-width:980px){
  .hero-grid {grid-template-columns:1fr;gap:3rem;}
  .p-x-3{padding-left:1.5rem;padding-right:1.5rem;}
}
/* =========================
   HAMBURGER BUTTON
========================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  display: block;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* =========================
   MOBILE STYLES
========================= */
/* =========================
   OVERLAY
========================= */

.menu-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
#menu-item-228{display:flex;align-items:center;}
#menu-item-228 a{background-color: var(--orange-600);color: white;padding: .5rem .75rem;border-radius: 6px;transition: all 0.2s ease;}
#menu-item-228 a:hover{transform: scale(1.05);box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);background-color: var(--orange-700);}
@media (max-width: 980px) {
  .site-header{
    padding:20px 0px;
  }
  #menu-item-228 {padding:20px 16px;}
  #menu-item-228 a{width:100%;text-align:center;}
  .main-nav ul.menu>li>a {padding:20px 32px;}
  .menu-item-has-children.open .sub-menu{
    display:block;
  }
  .sub-menu {
    border:0px;
    position:relative;
    box-shadow:unset;
    width:100%;
  }
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    z-index:1000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--background);
    border-top: 1px solid var(--border);
    display: none;
    flex-direction: column;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul.menu > li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    display: block;
    padding: 0px 24px;
  }

  /* OPEN STATE */
  .main-nav.active {
    display: flex;
  }
  .menu-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #1e2a44; /* adjust color */
  border-bottom: 2px solid #1e2a44;
  transform: rotate(45deg);
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.2s ease;
  float:right;
  }
  .menu-item-has-children.open > a::after {
    transform: rotate(-135deg);
  }
}
