/*
Theme Name: SEP - SEM-ElekEn Partnership
Theme URI: https://www.seppl.com.pk
Author: SEM-ElekEn Partnership (Private) Limited
Author URI: https://www.seppl.com.pk
Description: Official corporate theme for SEP – an integrated MEP engineering consultancy. Merging Expertise. Engineering the Future.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sep-theme
Tags: corporate, engineering, consultancy, portfolio, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   CSS CUSTOM PROPERTIES – SEP BRAND SYSTEM
   ============================================= */
:root {
  /* Primary Palette */
  --sep-teal:       #1A9E96;
  --sep-teal-dark:  #147D77;
  --sep-teal-light: #E8F7F6;
  --sep-gold:       #C8A84B;
  --sep-gold-light: #F5EDD6;

  /* Neutrals */
  --sep-dark:       #1C2330;
  --sep-mid:        #3A4658;
  --sep-slate:      #6B7A8E;
  --sep-light:      #F4F6F8;
  --sep-white:      #FFFFFF;
  --sep-border:     #DDE2E8;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono:      'Courier New', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(26,158,150,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(26,158,150,0.12), 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(26,158,150,0.15), 0 4px 8px rgba(0,0,0,0.10);
  --shadow-xl:  0 20px 60px rgba(26,158,150,0.20);

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --trans-sm:  all 0.2s var(--ease);
  --trans-md:  all 0.35s var(--ease);
  --trans-lg:  all 0.5s var(--ease);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--sep-mid);
  background: var(--sep-white);
  overflow-x: hidden;
}

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

a { color: var(--sep-teal); text-decoration: none; transition: var(--trans-sm); }
a:hover { color: var(--sep-teal-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--sep-dark);
  line-height: 1.25;
  font-weight: 700;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--sep-light);
}

.section--dark {
  background: var(--sep-dark);
  color: var(--sep-white);
}

.section--teal {
  background: var(--sep-teal);
  color: var(--sep-white);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sep-teal);
  margin-bottom: var(--space-xs);
}

.section-header__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--sep-dark);
  margin-bottom: var(--space-sm);
}

.section-header__title--light {
  color: var(--sep-white);
}

.section-header__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.section-header__divider::before,
.section-header__divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--sep-gold);
  opacity: 0.6;
}

.section-header__desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--sep-slate);
  font-size: 1.05rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans-md);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--sep-teal);
  color: var(--sep-white);
  border-color: var(--sep-teal);
}
.btn--primary:hover {
  background: var(--sep-teal-dark);
  border-color: var(--sep-teal-dark);
  color: var(--sep-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--sep-teal);
  border-color: var(--sep-teal);
}
.btn--secondary:hover {
  background: var(--sep-teal);
  color: var(--sep-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--sep-gold);
  color: var(--sep-dark);
  border-color: var(--sep-gold);
}
.btn--gold:hover {
  background: #b89640;
  color: var(--sep-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--sep-white);
  color: var(--sep-teal);
  border-color: var(--sep-white);
}
.btn--white:hover {
  background: var(--sep-teal-light);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--sep-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--sep-white);
  border-color: var(--sep-white);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* =============================================
   SITE HEADER
   ============================================= */
#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sep-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--trans-md);
}

#masthead.scrolled {
  box-shadow: 0 4px 30px rgba(26,158,150,0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-md);
}

.site-branding {
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-text .logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sep-dark);
  letter-spacing: 0.02em;
}

.site-logo-text .logo-name span {
  color: var(--sep-teal);
}

.site-logo-text .logo-sub {
  font-size: 0.65rem;
  color: var(--sep-slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Main Navigation */
.main-navigation { flex: 1; }

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sep-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans-sm);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
  color: var(--sep-teal);
  background: var(--sep-teal-light);
}

/* Dropdown */
.main-navigation ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--sep-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--sep-teal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans-md);
  flex-direction: column;
  gap: 0;
}

.main-navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation ul li ul li a {
  padding: 0.6rem 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  border-radius: 0;
}

.main-navigation ul li ul li a:hover {
  background: var(--sep-teal-light);
  padding-left: 1.5rem;
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--sep-dark);
}

/* =============================================
   HERO / FRONT PAGE BANNER
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sep-dark) 0%, var(--sep-mid) 50%, var(--sep-teal-dark) 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,35,48,0.92) 0%,
    rgba(26,158,150,0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sep-gold);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--sep-gold);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--sep-white);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.hero__title .accent { color: var(--sep-gold); }

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  font-style: italic;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--sep-gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--sep-teal);
  padding: var(--space-lg) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stats-bar__item {
  padding: var(--space-sm);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sep-white);
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

/* =============================================
   ABOUT / INTRO SECTION
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-split__visual {
  position: relative;
}

.about-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-split__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-split__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sep-teal);
  color: var(--sep-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-split__badge-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-split__badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-split__content .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sep-teal);
  margin-bottom: var(--space-xs);
}

.about-split__content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.about-split__content p {
  color: var(--sep-slate);
  margin-bottom: var(--space-md);
}

.founding-firms {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.founding-firm {
  flex: 1;
  padding: var(--space-md);
  background: var(--sep-teal-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sep-teal);
}

.founding-firm__name {
  font-weight: 700;
  color: var(--sep-teal-dark);
  margin-bottom: 0.25rem;
}

.founding-firm__est {
  font-size: 0.8rem;
  color: var(--sep-slate);
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--sep-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sep-teal), var(--sep-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--sep-teal);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--sep-teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--sep-teal);
}

.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
  font-size: 1.1rem;
  color: var(--sep-dark);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--sep-slate);
  line-height: 1.6;
}

.service-card__list {
  margin-top: var(--space-sm);
}

.service-card__list li {
  font-size: 0.85rem;
  color: var(--sep-slate);
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-card__list li::before {
  content: '▸';
  color: var(--sep-teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* =============================================
   CORE VALUES
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--sep-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
}

.value-card:hover {
  background: var(--sep-teal);
  color: var(--sep-white);
  border-color: var(--sep-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover .value-card__icon { background: rgba(255,255,255,0.2); color: var(--sep-white); }
.value-card:hover .value-card__title { color: var(--sep-white); }
.value-card:hover .value-card__desc { color: rgba(255,255,255,0.85); }

.value-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background: var(--sep-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sep-teal);
  font-size: 1.5rem;
  transition: var(--trans-md);
}

.value-card__title {
  font-size: 1rem;
  color: var(--sep-dark);
  margin-bottom: 0.5rem;
  transition: var(--trans-sm);
}

.value-card__desc {
  font-size: 0.83rem;
  color: var(--sep-slate);
  transition: var(--trans-sm);
}

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.leadership-card {
  display: flex;
  gap: var(--space-md);
  background: var(--sep-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
}

.leadership-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--sep-teal);
}

.leadership-card__photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--sep-teal-light);
}

.leadership-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sep-teal), var(--sep-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sep-white);
  font-weight: 700;
}

.leadership-card__info { flex: 1; }

.leadership-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sep-teal);
  margin-bottom: 0.25rem;
}

.leadership-card__name {
  font-size: 1.3rem;
  color: var(--sep-dark);
  margin-bottom: 0.5rem;
}

.leadership-card__bio {
  font-size: 0.88rem;
  color: var(--sep-slate);
  line-height: 1.65;
}

/* Directors grid */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.director-card {
  text-align: center;
  background: var(--sep-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
}

.director-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sep-teal);
  transform: translateY(-2px);
}

.director-card__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  border: 3px solid var(--sep-teal-light);
}

.director-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.director-card__name { font-size: 0.95rem; color: var(--sep-dark); margin-bottom: 0.2rem; }
.director-card__role { font-size: 0.78rem; color: var(--sep-teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.director-card__bio { font-size: 0.82rem; color: var(--sep-slate); margin-top: 0.5rem; }

/* =============================================
   ORGANOGRAM
   ============================================= */
.organogram-preview {
  background: var(--sep-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sep-border);
}

.organogram-preview__header {
  background: var(--sep-teal);
  color: var(--sep-white);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.organogram-preview__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.organogram-preview__img {
  position: relative;
  overflow: hidden;
}

.organogram-preview__img img {
  width: 100%;
  cursor: zoom-in;
  transition: var(--trans-md);
}

.organogram-preview__img:hover img { transform: scale(1.02); }

.organogram-preview__img .zoom-hint {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(26,158,150,0.9);
  color: var(--sep-white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Organogram Lightbox */
.organogram-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.organogram-lightbox.active {
  display: flex;
}

.organogram-lightbox__inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  overflow: auto;
  border-radius: var(--radius-md);
}

.organogram-lightbox__inner img {
  max-width: none;
  width: auto;
  cursor: zoom-in;
}

.organogram-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--sep-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-sm);
  z-index: 10000;
}

.organogram-lightbox__close:hover { background: var(--sep-teal); color: var(--sep-white); }

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--sep-border);
  padding-bottom: 0;
}

.portfolio-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sep-slate);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--trans-sm);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-tab:hover { color: var(--sep-teal); }

.portfolio-tab.active {
  color: var(--sep-teal);
  border-bottom-color: var(--sep-teal);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--sep-border);
  background: var(--sep-white);
  color: var(--sep-slate);
  cursor: pointer;
  transition: var(--trans-sm);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--sep-teal);
  color: var(--sep-white);
  border-color: var(--sep-teal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
  background: var(--sep-white);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--sep-teal);
}

.project-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-lg);
}

.project-card:hover .project-card__img img {
  transform: scale(1.06);
}

.project-card__body {
  padding: var(--space-md);
}

.project-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sep-teal);
  background: var(--sep-teal-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.project-card__title {
  font-size: 1.05rem;
  color: var(--sep-dark);
  margin-bottom: 0.35rem;
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--sep-slate);
}

.project-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.project-card__status {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status--completed { background: #d1fae5; color: #065f46; }
.status--in-progress { background: #fef3c7; color: #92400e; }

/* Single Project */
.project-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,35,48,0.85), transparent 50%);
}

.project-hero__content {
  position: absolute;
  bottom: var(--space-lg);
  left: 0;
  right: 0;
  color: var(--sep-white);
}

.project-meta-panel {
  background: var(--sep-teal);
  color: var(--sep-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.project-meta-panel h3 { color: var(--sep-white); margin-bottom: var(--space-md); }

.project-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.88rem;
}

.project-meta-row:last-child { border-bottom: none; }

.project-meta-label { font-weight: 700; opacity: 0.75; }
.project-meta-value { text-align: right; }

/* Project Gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans-md);
}

.project-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* =============================================
   SUSTAINABILITY / LEED
   ============================================= */
.leed-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.leed-certifications {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.leed-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sep-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sep-border);
}

.leed-badge img { width: 60px; }

.leed-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.leed-category {
  padding: var(--space-sm) var(--space-md);
  background: var(--sep-teal-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--sep-teal);
  font-size: 0.85rem;
  color: var(--sep-teal-dark);
  font-weight: 600;
}

/* =============================================
   ACCREDITATIONS WHEEL
   ============================================= */
.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-md);
  background: var(--sep-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
  text-align: center;
}

.accreditation-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sep-teal);
  transform: translateY(-2px);
}

.accreditation-item__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sep-teal);
  letter-spacing: 0.05em;
}

/* =============================================
   MARKET PRESENCE
   ============================================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: var(--sep-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sep-border);
  min-height: 80px;
  transition: var(--trans-md);
}

.client-item:hover {
  border-color: var(--sep-teal);
  box-shadow: var(--shadow-sm);
}

.client-item img { max-width: 120px; max-height: 50px; object-fit: contain; filter: grayscale(0.5); transition: var(--trans-md); }
.client-item:hover img { filter: none; }

/* Sector Coverage */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sector-tag {
  padding: 0.4rem 1rem;
  background: var(--sep-teal-light);
  color: var(--sep-teal-dark);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--sep-teal);
  transition: var(--trans-sm);
}

.sector-tag:hover {
  background: var(--sep-teal);
  color: var(--sep-white);
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
  position: relative;
  padding: var(--space-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--sep-teal), var(--sep-gold));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-lg);
}

.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }

.timeline-dot {
  grid-column: 2;
  width: 48px;
  height: 48px;
  background: var(--sep-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sep-white);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 0 6px var(--sep-teal-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sep-teal);
  margin-bottom: 0.25rem;
}

.timeline-title { font-size: 0.95rem; font-weight: 700; color: var(--sep-dark); margin-bottom: 0.25rem; }
.timeline-desc { font-size: 0.85rem; color: var(--sep-slate); }

/* =============================================
   BIM ROADMAP
   ============================================= */
.bim-stages {
  display: flex;
  gap: 0;
  counter-reset: bim-counter;
}

.bim-stage {
  flex: 1;
  padding: var(--space-md);
  background: var(--sep-white);
  border-right: 1px solid var(--sep-border);
  position: relative;
  counter-increment: bim-counter;
  transition: var(--trans-md);
}

.bim-stage:last-child { border-right: none; }

.bim-stage:hover { background: var(--sep-teal-light); }

.bim-stage::before {
  content: counter(bim-counter);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 28px;
  height: 28px;
  background: var(--sep-teal-light);
  color: var(--sep-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.bim-stage__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bim-stage__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sep-dark);
  margin-bottom: 0.25rem;
}

.bim-stage__desc {
  font-size: 0.8rem;
  color: var(--sep-slate);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-office {
  background: var(--sep-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-left: 5px solid var(--sep-teal);
  box-shadow: var(--shadow-sm);
}

.contact-office--head { border-left-color: var(--sep-teal); }
.contact-office--regional { border-left-color: var(--sep-gold); }

.contact-office__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sep-teal);
  margin-bottom: 0.5rem;
}

.contact-office__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sep-dark);
  margin-bottom: var(--space-sm);
}

.contact-office__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: var(--sep-slate);
}

.contact-office__detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--sep-teal);
  margin-top: 2px;
}

.contact-form-wrapper {
  background: var(--sep-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sep-border);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sep-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--sep-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sep-dark);
  background: var(--sep-white);
  transition: var(--trans-sm);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sep-teal);
  box-shadow: 0 0 0 3px rgba(26,158,150,0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

/* =============================================
   SITE FOOTER
   ============================================= */
#colophon {
  background: var(--sep-dark);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about__logo {
  margin-bottom: var(--space-md);
}

.footer-about__logo img { height: 44px; }

.footer-about__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sep-gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.footer-about__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-widget__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sep-gold);
  margin-bottom: var(--space-md);
}

.footer-widget ul li {
  margin-bottom: 0.4rem;
}

.footer-widget ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--trans-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-widget ul li a:hover {
  color: var(--sep-teal);
  padding-left: 0.25rem;
}

.footer-widget ul li a::before {
  content: '›';
  color: var(--sep-teal);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--sep-teal);
  margin-top: 2px;
}

.footer-bottom {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--sep-teal); }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--trans-sm);
}

.footer-social a:hover {
  background: var(--sep-teal);
  color: var(--sep-white);
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  background: var(--sep-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sep-border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.breadcrumb-list li::after {
  content: '/';
  color: var(--sep-slate);
  margin-left: 0.5rem;
}

.breadcrumb-list li:last-child::after { display: none; }

.breadcrumb-list a { color: var(--sep-teal); }
.breadcrumb-list li:last-child { color: var(--sep-slate); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--sep-dark) 0%, var(--sep-teal-dark) 100%);
  padding: var(--space-xl) 0;
  color: var(--sep-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 60L60 0M-15 15L15-15M45 75L75 45" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>');
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sep-gold);
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--sep-white);
  margin-bottom: var(--space-sm);
}

.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* =============================================
   LEED SCORECARD
   ============================================= */
.leed-project-card {
  background: var(--sep-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sep-border);
}

.leed-project-card__header {
  background: var(--sep-teal);
  color: var(--sep-white);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.leed-project-card__img {
  height: 220px;
  overflow: hidden;
}

.leed-project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leed-project-card__body {
  padding: var(--space-lg);
}

.leed-score-bar {
  margin-bottom: var(--space-sm);
}

.leed-score-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--sep-slate);
  margin-bottom: 0.3rem;
}

.leed-score-bar__track {
  height: 8px;
  background: var(--sep-border);
  border-radius: 100px;
  overflow: hidden;
}

.leed-score-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sep-teal), var(--sep-gold));
  border-radius: 100px;
  transition: width 1s var(--ease);
}

/* =============================================
   WORKFORCE STATS
   ============================================= */
.workforce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.workforce-stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--sep-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sep-border);
  transition: var(--trans-md);
}

.workforce-stat:hover {
  border-color: var(--sep-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.workforce-stat__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sep-teal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.workforce-stat__role {
  font-size: 0.85rem;
  color: var(--sep-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-teal { color: var(--sep-teal); }
.text-gold { color: var(--sep-gold); }
.text-muted { color: var(--sep-slate); }
.text-white { color: var(--sep-white); }
.font-display { font-family: var(--font-display); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.flex-wrap { flex-wrap: wrap; }

.wp-block-separator { border-color: var(--sep-border); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .directors-grid { grid-template-columns: repeat(2, 1fr); }
  .accreditations-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-navigation { display: none; }
  .main-navigation.open { display: block; position: absolute; top: 80px; left: 0; right: 0; background: var(--sep-white); padding: var(--space-md); box-shadow: var(--shadow-lg); z-index: 999; }
  .main-navigation.open ul { flex-direction: column; align-items: stretch; }
  .main-navigation.open ul li ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: var(--space-md); }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .about-split { grid-template-columns: 1fr; }
  .about-split__badge { display: none; }
  .leed-showcase { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .bim-stages { flex-direction: column; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
  .timeline-dot { grid-column: 1; }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .directors-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: var(--space-md); }
  .workforce-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   WORDPRESS CORE CLASSES
   ============================================= */
.alignleft { float: left; margin: 0 var(--space-md) var(--space-md) 0; }
.alignright { float: right; margin: 0 0 var(--space-md) var(--space-md); }
.aligncenter { display: block; margin: 0 auto var(--space-md); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--sep-slate); margin-top: 0.4rem; }
.sticky { }
.gallery { }
.bypostauthor { }

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
