/* =========================================================
   TIER1CURATORS GLOBAL CSS
   Clean Responsive Foundation
   Gutenberg + Spectra / Astra-compatible
========================================================= */

:root{
  --t1c-brand:#A7265E;
  --t1c-brand-dark:#782167;
  --t1c-gold:#9E8854;
  --t1c-teal:#004052;
  --t1c-dark:#241820;
  --t1c-text:#4b5563;
  --t1c-muted:#6b7280;
  --t1c-soft:#F8F6F3;
  --t1c-white:#ffffff;
  --t1c-border:rgba(36,24,32,.12);

  --t1c-container:1180px;
  --t1c-section-y:88px;
  --t1c-section-x:24px;

  --t1c-radius:6px;
  --t1c-shadow-sm:0 12px 32px rgba(36,24,32,.06);
  --t1c-shadow-md:0 20px 56px rgba(36,24,32,.10);

  --t1c-heading-font:Georgia,"Times New Roman",serif;
  --t1c-body-font:Inter,Arial,sans-serif;
}

/* Base */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:var(--t1c-body-font);
  color:var(--t1c-text);
  background:var(--t1c-white);
  line-height:1.7;
}

img{
  max-width:100%;
  height:auto;
}

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

p{
  margin-top:0;
  line-height:1.75;
}

h1,h2,h3,h4,h5,h6{
  margin-top:0;
  font-family:var(--t1c-heading-font);
  color:var(--t1c-dark);
  line-height:1.12;
}

.t1c-site-main{
  overflow:hidden;
  background:var(--t1c-white);
}

/* Shared Layout */
.t1c-section,
.t1c-trust-strip,
.t1c-about-section,
.t1c-services-section,
.t1c-industries-section,
.t1c-process-section,
.t1c-candidate-support,
.t1c-contact-grid,
.t1c-jobs-list-section,
.t1c-single-job-content{
  padding:var(--t1c-section-y) var(--t1c-section-x) !important;
}

.t1c-trust-strip > .uagb-container-inner-blocks-wrap,
.t1c-about-section > .uagb-container-inner-blocks-wrap,
.t1c-services-section > .uagb-container-inner-blocks-wrap,
.t1c-industries-section > .uagb-container-inner-blocks-wrap,
.t1c-process-section > .uagb-container-inner-blocks-wrap,
.t1c-candidate-support > .uagb-container-inner-blocks-wrap,
.t1c-page > .uagb-container-inner-blocks-wrap,
.t1c-contact-grid > .uagb-container-inner-blocks-wrap,
.t1c-jobs-list,
.t1c-single-job-main{
  width:min(100%,var(--t1c-container));
  margin:0 auto;
}

/* Shared Headings */
.t1c-section-label{
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--t1c-gold);
}

.t1c-section-heading,
.t1c-services-section h2,
.t1c-industries-section h2,
.t1c-process-section h2,
.t1c-candidate-support h2{
  margin-bottom:22px;
  font-size:clamp(34px,4vw,56px);
  letter-spacing:-.04em;
}

/* Shared Cards */
.t1c-card,
.t1c-service-card,
.t1c-process-card,
.t1c-trust-strip .uagb-infobox__content-wrap,
.t1c-industries-section .uagb-infobox__content-wrap,
.t1c-candidate-support .uagb-infobox__content-wrap,
.t1c-about-values .uagb-infobox__content-wrap,
.t1c-job-card,
.t1c-job-public-details,
.t1c-job-application-form,
.t1c-contact-grid > .uagb-container-inner-blocks-wrap > .wp-block-uagb-container{
  border:1px solid var(--t1c-border) !important;
  border-radius:var(--t1c-radius) !important;
  background:var(--t1c-white) !important;
  box-shadow:var(--t1c-shadow-sm) !important;
  overflow:hidden;
}

.t1c-service-card,
.t1c-process-card,
.t1c-trust-strip .uagb-infobox__content-wrap,
.t1c-industries-section .uagb-infobox__content-wrap,
.t1c-candidate-support .uagb-infobox__content-wrap,
.t1c-about-values .uagb-infobox__content-wrap{
  height:100% !important;
}

/* Shared Hover */
.t1c-service-card,
.t1c-process-card,
.t1c-trust-strip .uagb-infobox__content-wrap,
.t1c-industries-section .uagb-infobox__content-wrap,
.t1c-candidate-support .uagb-infobox__content-wrap,
.t1c-job-card{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.t1c-service-card:hover,
.t1c-process-card:hover,
.t1c-trust-strip .uagb-infobox__content-wrap:hover,
.t1c-industries-section .uagb-infobox__content-wrap:hover,
.t1c-candidate-support .uagb-infobox__content-wrap:hover,
.t1c-job-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--t1c-shadow-md) !important;
  border-color:rgba(167,38,94,.22) !important;
}

/* Shared Buttons */
.uagb-buttons__wrap{
  gap:14px !important;
}

.uagb-buttons-repeater,
.t1c-job-card-button,
.t1c-apply-now-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:48px !important;
  padding:14px 26px !important;
  border-radius:999px !important;
  background:var(--t1c-brand) !important;
  border:1px solid var(--t1c-brand) !important;
  color:#ffffff !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1 !important;
  transition:.25s ease !important;
}

.uagb-buttons-repeater:hover,
.t1c-job-card-button:hover,
.t1c-apply-now-button:hover{
  background:var(--t1c-brand-dark) !important;
  border-color:var(--t1c-brand-dark) !important;
  color:#ffffff !important;
  transform:translateY(-2px);
}

.uagb-buttons-repeater *{
  color:inherit !important;
}

/* Header */
.t1c-site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--t1c-border);
}

body.admin-bar .t1c-site-header{
  top:32px;
}

.t1c-header-inner{
  width:min(100%,var(--t1c-container));
  min-height:82px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}

.t1c-logo .custom-logo{
  width:auto !important;
  height:52px !important;
  max-height:52px !important;
}

.t1c-main-nav{
  margin-left:auto;
}

.t1c-main-nav ul,
.t1c-main-nav .menu{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}

.t1c-main-nav a{
  color:var(--t1c-dark);
  font-size:14px;
  font-weight:700;
}

.t1c-main-nav a:hover,
.t1c-main-nav .current-menu-item > a{
  color:var(--t1c-brand);
}

.t1c-main-nav li:last-child a{
  padding:11px 18px;
  background:var(--t1c-brand);
  color:#ffffff;
  border-radius:999px;
}

.t1c-main-nav li:last-child a:hover{
  background:var(--t1c-brand-dark);
  color:#ffffff;
}

.t1c-menu-toggle{
  display:none;
}

/* Footer */
.t1c-site-footer{
  background:var(--t1c-dark);
  color:#ffffff;
  padding:56px 24px 24px;
}

.t1c-footer-inner{
  width:min(100%,var(--t1c-container));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr .8fr 1fr;
  gap:48px;
}

.t1c-footer-logo .custom-logo{
  width:auto !important;
  height:50px !important;
  max-height:50px !important;
}

.t1c-footer-brand p,
.t1c-footer-contact p,
.t1c-footer-bottom p{
  color:rgba(255,255,255,.78);
}

.t1c-footer-links h3,
.t1c-footer-contact h3{
  color:#ffffff;
  margin-bottom:16px;
}

.t1c-footer-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:9px;
}

.t1c-footer-menu a,
.t1c-footer-contact a{
  color:rgba(255,255,255,.78);
}

.t1c-footer-menu a:hover,
.t1c-footer-contact a:hover{
  color:#ffffff;
}

.t1c-footer-social{
  display:flex;
  gap:10px;
  margin-top:20px;
}

.t1c-footer-social a{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#ffffff;
}

.t1c-footer-bottom{
  width:min(100%,var(--t1c-container));
  margin:32px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
}

/* Home Hero */
.t1c-home-hero{
  position:relative;
  min-height:720px;
  padding:120px 24px 110px !important;
  display:flex !important;
  align-items:center;
  overflow:hidden;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
}

.t1c-home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(36,24,32,.94) 0%,rgba(120,33,103,.82) 42%,rgba(167,38,94,.42) 74%,rgba(36,24,32,.18) 100%);
}

.t1c-home-hero > .uagb-container-inner-blocks-wrap{
  position:relative;
  z-index:2;
  width:min(100%,var(--t1c-container));
  margin:0 auto;
}

.t1c-home-hero h1{
  max-width:820px;
  margin:0 0 24px;
  font-size:clamp(44px,6vw,76px);
  line-height:1.04;
  letter-spacing:-.045em;
  color:#ffffff;
}

.t1c-home-hero p{
  max-width:760px;
  margin:0 0 34px;
  font-size:18px;
  color:rgba(255,255,255,.90);
}

.t1c-home-hero .uagb-buttons__wrap{
  justify-content:flex-start !important;
}

.t1c-home-hero .wp-block-uagb-buttons-child:nth-child(2) .uagb-buttons-repeater,
.t1c-home-hero .wp-block-uagb-buttons-child:nth-child(3) .uagb-buttons-repeater{
  background:transparent !important;
  border-color:rgba(255,255,255,.65) !important;
  color:#ffffff !important;
}

/* Internal Hero */
.t1c-page-hero,
.t1c-jobs-hero,
.t1c-single-job-hero{
  position:relative;
  overflow:hidden;
  min-height:440px;
  padding:110px 24px 96px !important;
  display:flex !important;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  color:#ffffff;
}

.t1c-page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(36,24,32,.94) 0%,rgba(120,33,103,.82) 42%,rgba(167,38,94,.42) 74%,rgba(36,24,32,.18) 100%);
}

.t1c-page-hero > .uagb-container-inner-blocks-wrap,
.t1c-page-hero > *{
  position:relative;
  z-index:2;
}

.t1c-page-hero h1,
.t1c-page-hero h2,
.t1c-jobs-hero h1,
.t1c-single-job-hero h1{
  max-width:900px;
  margin:0 auto 20px !important;
  font-size:clamp(42px,5vw,68px);
  line-height:1.05;
  letter-spacing:-.045em;
  color:#ffffff !important;
}

.t1c-page-hero p,
.t1c-jobs-hero p,
.t1c-single-job-hero p{
  max-width:820px;
  margin:0 auto 28px !important;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,255,255,.90) !important;
}

.t1c-page-hero .uagb-buttons__wrap,
.t1c-jobs-hero .uagb-buttons__wrap,
.t1c-single-job-hero .uagb-buttons__wrap{
  justify-content:center !important;
}

/* =========================================================
   HOME SECTIONS
========================================================= */

/* Trust Strip */
.t1c-trust-strip{
  background:var(--t1c-white);
}

.t1c-trust-strip .wp-block-columns{
  gap:22px !important;
  align-items:stretch !important;
}

.t1c-trust-strip .wp-block-column{
  display:flex !important;
}

.t1c-trust-strip .uagb-infobox__content-wrap{
  min-height:220px;
  padding:30px 24px !important;
}

.t1c-trust-strip .uagb-ifb-content{
  height:100%;
  display:flex;
  flex-direction:column;
}

.t1c-trust-strip .uagb-ifb-icon-wrap,
.t1c-industries-section .uagb-ifb-icon-wrap,
.t1c-candidate-support .uagb-ifb-icon-wrap,
.t1c-about-values .uagb-ifb-icon-wrap{
  width:48px !important;
  height:48px !important;
  margin:0 auto 14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(167,38,94,.08) !important;
  border:1px solid rgba(167,38,94,.14) !important;
  border-radius:6px !important;
}

.t1c-trust-strip .uagb-ifb-icon-wrap{
  margin:0 0 18px !important;
}

.t1c-trust-strip .uagb-ifb-icon-wrap svg,
.t1c-industries-section .uagb-ifb-icon-wrap svg,
.t1c-industries-section .uagb-ifb-icon-wrap svg path,
.t1c-candidate-support .uagb-ifb-icon-wrap svg,
.t1c-about-values .uagb-ifb-icon-wrap svg{
  width:22px !important;
  height:22px !important;
  fill:var(--t1c-brand) !important;
  color:var(--t1c-brand) !important;
}

.t1c-trust-strip .uagb-ifb-title{
  margin-bottom:12px !important;
  font-size:24px !important;
  line-height:1.15 !important;
  color:var(--t1c-dark) !important;
}

.t1c-trust-strip .uagb-ifb-desc{
  margin:0 !important;
  font-size:15px !important;
  line-height:1.65 !important;
  color:var(--t1c-text) !important;
}

/* About Home */
.t1c-about-section{
  background:var(--t1c-soft);
}

.t1c-about-inner{
  width:min(100%,var(--t1c-container));
  margin:0 auto;
  display:grid !important;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.t1c-about-content{
  max-width:640px;
}

.t1c-about-content p{
  margin-bottom:18px;
  color:rgba(36,24,32,.78);
}

.t1c-about-media{
  min-height:460px;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  border:1px solid var(--t1c-border);
  box-shadow:var(--t1c-shadow-md);
}

.t1c-about-media::before,
.t1c-about-media::after{
  display:none !important;
  content:none !important;
}

/* Services Cards */
.t1c-services-section{
  background:var(--t1c-white);
}

.t1c-services-section > .uagb-container-inner-blocks-wrap > .wp-block-uagb-container:first-child{
  max-width:860px;
  margin:0 auto 44px;
  text-align:center;
}

.t1c-services-section > .uagb-container-inner-blocks-wrap > .wp-block-uagb-container:first-child p{
  margin:0 auto;
  max-width:820px;
}

.t1c-services-section .wp-block-columns{
  gap:22px !important;
  align-items:stretch !important;
}

.t1c-services-section .wp-block-column{
  display:flex !important;
}

.t1c-service-card{
  position:relative;
  width:100% !important;
  display:flex !important;
  flex-direction:column !important;
}

.t1c-service-image,
.t1c-service-image figure{
  margin:0 !important;
}

.t1c-service-image img{
  width:100% !important;
  height:220px !important;
  object-fit:cover !important;
  display:block !important;
}

.t1c-service-floating-icon{
  position:absolute !important;
  top:18px !important;
  left:18px !important;
  z-index:5 !important;
  width:52px !important;
  height:52px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:var(--t1c-white) !important;
  border:1px solid rgba(255,255,255,.75) !important;
  box-shadow:0 12px 28px rgba(36,24,32,.18);
  border-radius:6px !important;
}

.t1c-service-floating-icon svg{
  width:24px !important;
  height:24px !important;
  fill:var(--t1c-brand) !important;
}

.t1c-service-card .uagb-infobox__content-wrap{
  flex:1 1 auto !important;
  display:flex !important;
  flex-direction:column !important;
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

.t1c-service-card .uagb-ifb-content{
  flex:1 1 auto !important;
  display:flex !important;
  flex-direction:column !important;
  padding:28px 26px 30px !important;
}

.t1c-service-card .uagb-ifb-title{
  margin-bottom:12px !important;
  font-size:25px !important;
  line-height:1.16 !important;
  color:var(--t1c-dark) !important;
}

.t1c-service-card .uagb-ifb-desc{
  margin:0 !important;
  font-size:15px !important;
  line-height:1.68 !important;
  color:var(--t1c-text) !important;
}

/* Industries Grid */
.t1c-industries-section{
  background:var(--t1c-soft);
  text-align:center;
}

.t1c-industries-section > .uagb-container-inner-blocks-wrap > p{
  max-width:760px;
  margin:0 auto 44px;
}

.t1c-industries-section .uagb-container-inner-blocks-wrap > .wp-block-uagb-container{
  display:grid !important;
  grid-template-columns:repeat(5,minmax(0,1fr)) !important;
  gap:18px !important;
  margin:0 !important;
}

.t1c-industries-section .uagb-infobox__content-wrap{
  min-height:150px !important;
  padding:26px 20px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.t1c-industries-section .uagb-ifb-content{
  height:100%;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

.t1c-industries-section .uagb-ifb-title{
  margin:0 !important;
  font-size:17px !important;
  line-height:1.3 !important;
  color:var(--t1c-dark) !important;
}

/* Empty icon fallback */
.t1c-industries-section .uagb-ifb-icon-wrap:empty::before{
  content:"✓";
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Arial,sans-serif;
  font-size:15px;
  font-weight:800;
  line-height:1;
  color:var(--t1c-brand);
}

/* Process */
.t1c-process-section{
  background:var(--t1c-white);
  text-align:center;
  padding-bottom:48px !important;
}

.t1c-process-section h2{
  margin-bottom:42px !important;
}

.t1c-process-grid{
  display:grid !important;
  grid-template-columns:repeat(5,minmax(0,1fr)) !important;
  gap:18px !important;
  align-items:stretch !important;
}

.t1c-process-grid > .uagb-infobox__content-wrap,
.t1c-process-card{
  min-height:250px;
  padding:30px 22px 28px !important;
}

.t1c-process-grid .uagb-ifb-content,
.t1c-process-card .uagb-ifb-content{
  height:100%;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  text-align:left !important;
}

.t1c-process-grid .uagb-ifb-icon-wrap,
.t1c-process-card .uagb-ifb-icon-wrap{
  width:42px !important;
  height:42px !important;
  margin:0 0 22px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:var(--t1c-brand) !important;
  border-radius:6px !important;
}

.t1c-process-grid .uagb-ifb-icon-wrap svg,
.t1c-process-card .uagb-ifb-icon-wrap svg{
  width:16px !important;
  height:16px !important;
  fill:#ffffff !important;
}

.t1c-process-grid .uagb-ifb-title,
.t1c-process-card .uagb-ifb-title{
  margin:0 0 14px !important;
  font-size:22px !important;
  line-height:1.16 !important;
  color:var(--t1c-dark) !important;
}

.t1c-process-grid .uagb-ifb-desc,
.t1c-process-card .uagb-ifb-desc{
  margin:0 !important;
  font-size:14px !important;
  line-height:1.65 !important;
  color:var(--t1c-text) !important;
}

/* Final CTA */
.t1c-final-cta{
  position:relative;
  overflow:hidden;
  width:100% !important;
  margin:0 !important;
  padding:72px 48px !important;
  background:linear-gradient(135deg,var(--t1c-dark) 0%,var(--t1c-brand-dark) 54%,var(--t1c-brand) 100%) !important;
  color:#ffffff;
  text-align:center;
  border-radius:0 !important;
}

.t1c-final-cta > .uagb-container-inner-blocks-wrap{
  max-width:820px;
  margin:0 auto;
}

.t1c-final-cta h2,
.t1c-final-cta h3{
  max-width:760px;
  margin:0 auto 20px !important;
  font-size:clamp(36px,5vw,62px);
  line-height:1.05;
  color:#ffffff !important;
}

.t1c-final-cta p{
  max-width:680px;
  margin:0 auto 30px !important;
  color:rgba(255,255,255,.84) !important;
}

.t1c-final-cta .uagb-buttons__wrap{
  justify-content:center !important;
}

.t1c-final-cta .wp-block-uagb-buttons-child:first-child .uagb-buttons-repeater{
  background:#ffffff !important;
  border-color:#ffffff !important;
  color:var(--t1c-dark) !important;
}

.t1c-final-cta .wp-block-uagb-buttons-child:nth-child(2) .uagb-buttons-repeater{
  background:transparent !important;
  border-color:rgba(255,255,255,.65) !important;
  color:#ffffff !important;
}

/* =========================================================
   INTERNAL FEATURE SECTIONS
========================================================= */

.t1c-page{
  background:var(--t1c-white);
}

.t1c-feature-section{
  padding:76px 24px !important;
  border-bottom:1px solid var(--t1c-border);
}

.t1c-feature-section:nth-of-type(even){
  background:var(--t1c-soft);
}

.t1c-feature-section > .uagb-container-inner-blocks-wrap{
  width:min(100%,var(--t1c-container));
  margin:0 auto;
  display:grid !important;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}

.t1c-feature-section .wp-block-uagb-image{
  margin-bottom:28px !important;
}

.t1c-feature-section img{
  width:100%;
  height:300px;
  object-fit:cover;
  display:block;
  border:1px solid var(--t1c-border);
}

.t1c-feature-section h3{
  max-width:520px;
  margin:0 0 20px !important;
  padding-bottom:16px;
  border-bottom:1px solid var(--t1c-border) !important;
  font-size:clamp(32px,3.4vw,48px);
  line-height:1.05;
  color:var(--t1c-dark) !important;
}

.t1c-feature-section h4{
  margin:0 0 16px !important;
  font-size:17px;
  line-height:1.3;
  color:var(--t1c-dark);
}

.t1c-feature-section p{
  max-width:560px;
  margin-bottom:22px;
  font-size:16px;
  line-height:1.78;
  color:var(--t1c-text);
}

.t1c-feature-section .uagb-icon-list__wrap{
  display:grid !important;
  gap:12px !important;
  margin-bottom:26px;
}

.t1c-feature-section .uagb-icon-list__source-wrap{
  width:22px !important;
  height:22px !important;
  min-width:22px !important;
  margin-top:2px;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:var(--t1c-brand) !important;
}

.t1c-feature-section .uagb-icon-list__source-wrap svg{
  width:15px !important;
  height:15px !important;
  fill:var(--t1c-brand) !important;
}

.t1c-feature-section .uagb-icon-list__label{
  color:var(--t1c-text);
  font-size:15.5px;
  line-height:1.55;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.t1c-about-page{
  background:var(--t1c-white);
}

.t1c-about-page > .uagb-container-inner-blocks-wrap{
  width:min(100%,var(--t1c-container));
  margin:0 auto;
  padding:72px 24px 88px !important;
}

.t1c-about-card{
  background:#ffffff !important;
  border:1px solid var(--t1c-border) !important;
  border-radius:var(--t1c-radius) !important;
  box-shadow:var(--t1c-shadow-sm) !important;
  padding:36px 34px !important;
}

.t1c-about-page > .uagb-container-inner-blocks-wrap > .t1c-about-card{
  max-width:860px !important;
  margin:0 auto 34px !important;
}

.t1c-about-card h2{
  margin:0 0 16px !important;
  font-size:clamp(30px,3.4vw,46px) !important;
  letter-spacing:-.035em;
  color:var(--t1c-dark) !important;
}

.t1c-about-card p{
  margin:0 0 16px !important;
  font-size:16px !important;
  line-height:1.78 !important;
  color:var(--t1c-text) !important;
}

.t1c-about-card p:last-child{
  margin-bottom:0 !important;
}

.t1c-mission-vision-grid{
  width:min(100%,860px) !important;
  max-width:860px !important;
  margin:0 auto !important;
  padding-bottom:56px !important;
}

.t1c-mission-vision-grid > .uagb-container-inner-blocks-wrap{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:24px !important;
}

.t1c-mission-vision-grid .t1c-about-card{
  height:100% !important;
  min-height:260px !important;
  border-left:4px solid var(--t1c-brand) !important;
}

.t1c-about-values{
  width:min(100%,860px) !important;
  max-width:860px !important;
  margin:0 auto 88px !important;
}

.t1c-about-values > .uagb-container-inner-blocks-wrap{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:22px !important;
}

.t1c-about-values .wp-block-uagb-container{
  display:contents !important;
}

.t1c-about-values .uagb-infobox__content-wrap{
  min-height:150px !important;
  padding:26px 20px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.t1c-about-values .uagb-ifb-content{
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

.t1c-about-values .uagb-ifb-title{
  min-height:48px !important;
  margin:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  font-size:18px !important;
  line-height:1.3 !important;
  color:var(--t1c-dark) !important;
}

/* =========================================================
   CAREERS SUPPORT
========================================================= */

.t1c-candidate-support{
  background:var(--t1c-soft) !important;
  text-align:center;
}

.t1c-candidate-support h2{
  margin:0 0 38px !important;
}

.t1c-candidate-support .t1c-support-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
}

.t1c-candidate-support .wp-block-columns{
  gap:18px !important;
  align-items:stretch !important;
}

.t1c-candidate-support .wp-block-column{
  display:flex !important;
}

.t1c-candidate-support .uagb-infobox__content-wrap{
  min-height:140px !important;
  padding:28px 20px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.t1c-candidate-support .uagb-ifb-content{
  height:100%;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

.t1c-candidate-support .uagb-ifb-title{
  margin:0 !important;
  font-size:18px !important;
  line-height:1.3 !important;
  color:var(--t1c-dark) !important;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.t1c-contact-grid{
  display:block !important;
  background:var(--t1c-white) !important;
}

.t1c-contact-grid > .uagb-container-inner-blocks-wrap{
  display:grid !important;
  grid-template-columns:360px minmax(0,680px) !important;
  gap:56px !important;
  justify-content:center !important;
  align-items:start !important;
}

.t1c-contact-grid > .uagb-container-inner-blocks-wrap > .wp-block-uagb-container{
  width:100% !important;
  max-width:none !important;
  padding:30px !important;
}

.t1c-contact-grid h2{
  margin:0 0 18px !important;
  font-size:clamp(28px,3vw,40px);
  letter-spacing:-.035em;
  color:var(--t1c-dark) !important;
}

.t1c-contact-grid form{
  width:100% !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  column-gap:16px !important;
  row-gap:14px !important;
}

.t1c-contact-grid .uagb-forms-field-set{
  margin-bottom:0 !important;
}

.t1c-contact-grid .uagb-forms-input-label{
  margin-bottom:6px !important;
  font-size:13px !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  color:var(--t1c-dark) !important;
}

.t1c-contact-grid .uagb-forms-input,
.t1c-contact-grid textarea{
  width:100% !important;
  min-height:42px !important;
  padding:10px 12px !important;
  border:1px solid var(--t1c-border) !important;
  border-radius:4px !important;
  font-size:14px !important;
  line-height:1.35 !important;
}

.t1c-contact-grid textarea.uagb-forms-input{
  min-height:92px !important;
}

.t1c-contact-grid .uagb-forms-phone-flex{
  display:grid !important;
  grid-template-columns:110px 1fr !important;
  gap:10px !important;
}

.t1c-contact-grid .uagb-block-e740b85a,
.t1c-contact-grid .uagb-block-b2f882ed,
.t1c-contact-grid .uagb-forms-main-submit-button-wrap,
.t1c-contact-grid .uagb-forms-form-hidden-data,
.t1c-contact-grid .uagb-form-reacaptcha-error-6582f990{
  grid-column:1 / -1 !important;
}

.t1c-contact-grid .uagb-forms-main-submit-button{
  min-height:44px !important;
  padding:12px 24px !important;
  border-radius:999px !important;
  background:var(--t1c-brand) !important;
  border:1px solid var(--t1c-brand) !important;
  color:#ffffff !important;
  font-weight:800 !important;
}

/* =========================================================
   JOBS
========================================================= */

.t1c-jobs-archive,
.t1c-single-job{
  background:var(--t1c-soft) !important;
}

.t1c-jobs-hero,
.t1c-single-job-hero{
  background:
    linear-gradient(90deg,rgba(36,24,32,.94) 0%,rgba(120,33,103,.82) 42%,rgba(167,38,94,.42) 74%,rgba(36,24,32,.18) 100%),
    url("https://tier1curators.com/wp-content/uploads/2026/05/T1C_International.png") center center / cover no-repeat !important;
}

.t1c-jobs-hero .t1c-eyebrow,
.t1c-single-job-hero .t1c-eyebrow{
  display:none !important;
}

.t1c-jobs-list-section,
.t1c-single-job-content{
  background:var(--t1c-soft) !important;
}

.t1c-jobs-list{
  display:grid !important;
  gap:22px !important;
}

.t1c-job-card{
  position:relative !important;
  display:grid !important;
  grid-template-columns:1fr auto !important;
  gap:28px !important;
  align-items:center !important;
  padding:34px 36px !important;
}

.t1c-job-card::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:0 !important;
  bottom:0 !important;
  width:5px !important;
  background:var(--t1c-brand) !important;
}

.t1c-job-card h2{
  margin:0 0 12px !important;
  font-size:clamp(28px,3vw,40px) !important;
  line-height:1.12 !important;
}

.t1c-job-card h2 a{
  color:var(--t1c-dark) !important;
}

.t1c-job-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 12px;
}

.t1c-job-meta span{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  background:rgba(167,38,94,.08);
  border:1px solid rgba(167,38,94,.16);
  color:var(--t1c-brand);
  font-size:13px;
  font-weight:800;
  line-height:1;
}

.t1c-job-card p{
  margin:0 !important;
  max-width:720px !important;
}

.t1c-job-public-details,
.t1c-job-application-form{
  width:100% !important;
  max-width:100% !important;
  padding:36px 38px !important;
  border-radius:0 !important;
}

.t1c-job-public-details{
  border-top:4px solid var(--t1c-brand) !important;
  margin:0 0 34px !important;
}

.t1c-job-application-form{
  margin-top:34px !important;
}

.t1c-job-public-details h3,
.t1c-job-application-form h3{
  margin:0 0 24px !important;
  font-size:clamp(30px,3vw,42px) !important;
}

.t1c-job-public-details ul{
  list-style:none !important;
  margin:0 0 28px !important;
  padding:0 !important;
}

.t1c-job-public-details li{
  display:grid !important;
  grid-template-columns:220px 1fr !important;
  gap:18px !important;
  padding:14px 0 !important;
  border-bottom:1px solid var(--t1c-border) !important;
}

/* =========================================================
   RESPONSIVE SYSTEM
========================================================= */

/* Large tablet / small laptop */
@media(max-width:1100px){
  :root{
    --t1c-section-y:72px;
    --t1c-section-x:22px;
  }

  .t1c-main-nav ul,
  .t1c-main-nav .menu{
    gap:20px;
  }

  .t1c-process-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }

  .t1c-industries-section .uagb-container-inner-blocks-wrap > .wp-block-uagb-container{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }

  .t1c-candidate-support .t1c-support-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

/* Tablet */
@media(max-width:900px){
  :root{
    --t1c-section-y:64px;
    --t1c-section-x:20px;
  }

  .t1c-about-inner,
  .t1c-feature-section > .uagb-container-inner-blocks-wrap,
  .t1c-contact-grid > .uagb-container-inner-blocks-wrap{
    grid-template-columns:1fr !important;
    gap:30px !important;
  }

  .t1c-about-content{
    max-width:100%;
  }

  .t1c-about-media{
    min-height:320px;
  }

  .t1c-services-section .wp-block-columns{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:22px !important;
  }

  .t1c-services-section .wp-block-column{
    width:100% !important;
    flex-basis:auto !important;
  }

  .t1c-service-image img{
    height:190px !important;
  }

  .t1c-feature-section img{
    height:230px;
  }

  .t1c-mission-vision-grid > .uagb-container-inner-blocks-wrap,
  .t1c-about-values > .uagb-container-inner-blocks-wrap{
    grid-template-columns:1fr !important;
  }

  .t1c-footer-inner{
    grid-template-columns:1fr !important;
    text-align:center;
    gap:30px;
  }

  .t1c-footer-social{
    justify-content:center;
  }
}

/* Mobile */
@media(max-width:768px){
  :root{
    --t1c-section-y:56px;
    --t1c-section-x:18px;
  }

  body.admin-bar .t1c-site-header{
    top:46px;
  }

  .t1c-header-inner{
    min-height:72px;
    padding:12px 18px;
  }

  .t1c-logo .custom-logo{
    height:42px !important;
    max-height:42px !important;
  }

  .t1c-menu-toggle{
    width:42px;
    height:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    background:#ffffff;
    border:1px solid var(--t1c-border);
    border-radius:6px;
    cursor:pointer;
  }

  .t1c-menu-toggle-line{
    width:20px;
    height:2px;
    background:var(--t1c-brand);
    display:block;
  }

  .t1c-main-nav{
    display:none !important;
    position:absolute;
    left:18px;
    right:18px;
    top:calc(100% + 10px);
    padding:14px;
    background:#ffffff;
    border:1px solid var(--t1c-border);
    box-shadow:var(--t1c-shadow-md);
  }

  .t1c-main-nav.t1c-main-nav-open{
    display:block !important;
  }

  .t1c-main-nav ul,
  .t1c-main-nav .menu{
    flex-direction:column;
    align-items:stretch;
    gap:4px;
  }

  .t1c-main-nav a{
    display:block;
    padding:12px 14px;
  }

  .t1c-home-hero{
    min-height:auto;
    padding:82px 20px 72px !important;
    text-align:center;
  }

  .t1c-home-hero::before{
    background:rgba(36,24,32,.78);
  }

  .t1c-home-hero h1{
    max-width:360px;
    margin:0 auto 18px;
    font-size:38px;
    letter-spacing:-.03em;
  }

  .t1c-home-hero p{
    max-width:340px;
    margin:0 auto 26px;
    font-size:15px;
    line-height:1.75;
  }

  .t1c-home-hero .uagb-buttons__wrap{
    justify-content:center !important;
  }

  .t1c-page-hero,
  .t1c-jobs-hero,
  .t1c-single-job-hero{
    min-height:360px !important;
    padding:72px 20px 64px !important;
  }

  .t1c-page-hero h1,
  .t1c-page-hero h2,
  .t1c-jobs-hero h1,
  .t1c-single-job-hero h1{
    font-size:34px !important;
    line-height:1.08 !important;
    max-width:340px !important;
  }

  .t1c-page-hero p,
  .t1c-jobs-hero p,
  .t1c-single-job-hero p{
    font-size:15px !important;
    line-height:1.65 !important;
    max-width:330px !important;
  }

  .uagb-buttons__wrap{
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .uagb-buttons-repeater,
  .t1c-job-card-button,
  .t1c-apply-now-button{
    width:100% !important;
  }

  .t1c-services-section .wp-block-columns,
  .t1c-process-grid,
  .t1c-industries-section .uagb-container-inner-blocks-wrap > .wp-block-uagb-container,
  .t1c-candidate-support .t1c-support-grid{
    grid-template-columns:1fr !important;
  }

  .t1c-service-image img{
    height:190px !important;
  }

  .t1c-process-grid > .uagb-infobox__content-wrap,
  .t1c-process-card{
    min-height:auto !important;
    padding:24px 22px !important;
  }

  .t1c-final-cta{
    padding:54px 22px !important;
  }

  .t1c-final-cta h2,
  .t1c-final-cta h3{
    font-size:34px !important;
    line-height:1.08 !important;
  }

  .t1c-contact-grid form{
    grid-template-columns:1fr !important;
  }

  .t1c-contact-grid .uagb-forms-phone-flex{
    grid-template-columns:1fr !important;
  }

  .t1c-job-card{
    grid-template-columns:1fr !important;
    gap:22px !important;
    padding:30px 28px !important;
  }

  .t1c-job-public-details,
  .t1c-job-application-form{
    padding:28px 22px !important;
  }

  .t1c-job-public-details li{
    grid-template-columns:1fr !important;
    gap:4px !important;
  }

  .t1c-job-meta{
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .t1c-site-footer{
    padding:52px 22px 24px !important;
  }

  .t1c-footer-brand{
    max-width:320px;
    margin:0 auto;
  }

  .t1c-footer-bottom{
    margin-top:28px;
  }
}

/* Small mobile */
@media(max-width:420px){
  .t1c-home-hero h1,
  .t1c-page-hero h1,
  .t1c-page-hero h2,
  .t1c-jobs-hero h1,
  .t1c-single-job-hero h1{
    font-size:31px !important;
  }

  .t1c-service-card .uagb-ifb-content{
    padding:22px 20px 26px !important;
  }

  .t1c-industries-section .uagb-infobox__content-wrap{
    min-height:120px !important;
  }
}

/* T1C Tablet Equal Height Service Cards */

@media (min-width:769px) and (max-width:1024px){

  .t1c-services-section .wp-block-column{
    display:flex !important;
  }

  .t1c-service-card{
    width:100% !important;
    height:100% !important;
    display:flex !important;
    flex-direction:column !important;
  }

  .t1c-service-card .uagb-infobox__content-wrap{
    flex:1 !important;
    display:flex !important;
    flex-direction:column !important;
  }

  .t1c-service-card .uagb-ifb-content{
    flex:1 !important;
    display:flex !important;
    flex-direction:column !important;
  }
}

@media (min-width:769px) and (max-width:1024px){

  .t1c-about-inner{
    align-items:center !important;
  }

  .t1c-about-media{
    min-height:360px !important;
  }
}

@media (min-width:769px) and (max-width:1024px){

  .t1c-industries-section .uagb-container-inner-blocks-wrap > .wp-block-uagb-container{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }

  .t1c-industries-section .uagb-infobox__content-wrap{
    min-height:130px !important;
  }
}

/* =========================================================
   T1C FINAL TABLET BREAKPOINT CORRECTION
========================================================= */

@media (min-width:641px) and (max-width:1024px){

  .t1c-services-section .wp-block-columns{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:22px !important;
    align-items:stretch !important;
  }

  .t1c-services-section .wp-block-column{
    display:flex !important;
    width:100% !important;
    flex-basis:auto !important;
  }

  .t1c-industries-section .uagb-container-inner-blocks-wrap > .wp-block-uagb-container{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:18px !important;
  }

  .t1c-process-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

}

@media (max-width:640px){

  .t1c-services-section .wp-block-columns,
  .t1c-industries-section .uagb-container-inner-blocks-wrap > .wp-block-uagb-container,
  .t1c-process-grid{
    grid-template-columns:1fr !important;
  }

}