/* =========================================================
   SYLVECT IT SOLUTIONS — style.css
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:        #C9A84C;
  --red:         #C0272D;
  --dark-gold:   #7A5F25;
  --bg:          #0C0C0C;
  --card:        #161616;
  --card2:       #111111;
  --card3:       #0a0a0a;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.35);
  --white:       #FFFFFF;
  --muted:       rgba(255,255,255,0.52);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography helpers ── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
}
.display--sm  { font-size: clamp(28px, 4vw, 36px); }
.display--md  { font-size: clamp(32px, 5vw, 44px); }
.display--lg  { font-size: clamp(40px, 6vw, 58px); }
.display--xl  { font-size: clamp(48px, 7vw, 72px); }

.text-gold   { color: var(--gold); }
.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--muted); }

/* ── Pill badge ── */
.pill {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover { background: rgba(201,168,76,.08); }
.btn--white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ── Section header ── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 14px auto 18px;
}
.section-head p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 14px;
}

/* ── Diamond dot ── */
.diamond-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--dark-gold);
  transform: rotate(45deg);
}
.diamond-dot--gold { background: var(--gold); }
.diamond-dot--red  { background: var(--red); }

/* ── Diamond row ── */
.diamond-row {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* =========================================================
   LOGO MARK
   ========================================================= */
.logo-mark {
  position: relative;
  display: inline-block;
  width: var(--lsize, 36px);
  height: var(--lsize, 36px);
  flex-shrink: 0;
}
.logo-mark__s {
  font-family: Georgia, serif;
  font-weight: 900;
  font-size: var(--lsize, 36px);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.logo-mark__bar {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 116%;
  height: calc(var(--lsize, 36px) * 0.13);
  background: var(--red);
  transform: translateY(-50%);
}
.logo-mark__diamonds {
  position: absolute;
  display: flex;
  gap: 3px;
}
.logo-mark__diamonds--top {
  top: 2%;
  right: -10%;
}
.logo-mark__diamonds--bottom {
  bottom: 2%;
  left: -10%;
}
.logo-mark__diamonds .d {
  width: calc(var(--lsize, 36px) * 0.18);
  height: calc(var(--lsize, 36px) * 0.18);
  background: var(--dark-gold);
  transform: rotate(45deg);
}

/* ── Wordmark ── */
.wordmark {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.wordmark__syl  { color: var(--white); }
.wordmark__vect { color: var(--gold); }
.wordmark__sub  { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; margin-left: 4px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card2);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color .2s;
}
.nav__link:hover,
.nav__link--active { color: var(--gold); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 680px) {
  .nav__toggle { display: flex; align-items: center; }
  .nav__links {
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--card2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0;
    display: none;
  }
  .nav__links--open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__link {
    display: block;
    padding: 12px 32px;
    width: 100%;
  }
  .nav__links .btn {
    margin: 12px 32px 4px;
    width: calc(100% - 64px);
    justify-content: center;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--card2);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -40px;
  width: 200px;
  height: 3px;
  background: var(--gold);
  opacity: 0.18;
  transform: rotate(-6deg);
}
.hero::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 140px;
  height: 2px;
  background: var(--gold);
  opacity: 0.1;
  transform: rotate(-6deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero__badge { margin-bottom: 20px; }
.hero__headline {
  margin-bottom: 16px;
}
.hero__divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 20px;
}
.hero__body {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

/* Trust pills */
.hero__trust {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--muted);
}
.trust-pill span { color: var(--gold); font-size: 9px; }

@media (max-width: 640px) {
  .hero { padding: 56px 0 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__chevron { display: none; }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats {
  background: var(--card3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stats__label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) {
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }
  .stats__item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--bg);
  padding: 80px 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.service-card--gold { border-top: 2px solid var(--gold); }
.service-card--red  { border-top: 2px solid var(--red); }

.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service-card__icon {
  font-size: 28px;
  color: var(--gold);
}
.service-card__tag {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}
.service-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.service-card p {
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}
.service-card__link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: opacity .2s;
}
.service-card__link:hover { opacity: .7; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.process {
  background: var(--card2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.process__ghost-s {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: var(--white);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.step-card__ghost {
  position: absolute;
  top: -10px;
  right: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.step-card__ghost--gold { color: var(--gold); }
.step-card__ghost--red  { color: var(--red); }

.step-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.step-card__num--gold { color: var(--gold); }
.step-card__num--red  { color: var(--red); }

.step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* =========================================================
   WHO WE SERVE
   ========================================================= */
.clients {
  background: var(--bg);
  padding: 80px 0;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.client-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: border-color .2s;
}
.client-item:hover { border-color: var(--border-gold); }
.client-item .d {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =========================================================
   RECENT POSTS
   ========================================================= */
.posts {
  background: var(--card2);
  padding: 80px 0;
}
.posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.posts__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
}
.posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}
.post-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.post-card--featured { border-left: 3px solid var(--red); }
.post-card--normal   { border-left: 3px solid var(--gold); }

.post-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-card--featured .post-card__cat { color: var(--red); }
.post-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--white);
  flex: 1;
}
.post-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.post-card__meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta {
  background: var(--bg);
  padding: 80px 0;
}
.cta__card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  width: 160px;
  height: 2px;
  background: var(--gold);
  opacity: 0.15;
  transform: rotate(-6deg);
}
.cta__card::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 100px;
  height: 2px;
  background: var(--red);
  opacity: 0.12;
  transform: rotate(-6deg);
}
.cta__divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 14px 0 18px;
}
.cta__body {
  color: var(--muted);
  font-size: 14px;
  max-width: 440px;
  margin-bottom: 28px;
}
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta__card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
  .cta__visual { display: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--card3);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 10px;
  max-width: 220px;
  line-height: 1.65;
}
.footer__brand-url {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.footer__col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  color: var(--muted);
  font-size: 13px;
  transition: color .2s;
}
.footer__col ul a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}
.footer__contact-item i { color: var(--gold); font-size: 15px; margin-top: 1px; }

.footer__cta {
  margin-top: 20px;
  display: block;
  text-align: center;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: var(--muted);
}
.footer__diamonds {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer__diamonds .d {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}
.footer__diamonds .d--gold { background: var(--gold); }
.footer__diamonds .d--red  { background: var(--red); }

@media (max-width: 680px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   BLOG PAGE — Hero
   ========================================================= */
.blog-hero {
  background: var(--card2);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  width: 180px;
  height: 2px;
  background: var(--gold);
  opacity: 0.14;
  transform: rotate(-6deg);
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 140px;
  height: 2px;
  background: var(--red);
  opacity: 0.12;
  transform: rotate(-6deg);
}
.blog-hero__title { margin: 0 auto 16px; }
.blog-hero__divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 18px;
}
.blog-hero__sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Category tabs ── */
.cat-tabs {
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.cat-tabs__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-tabs__inner::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.cat-tab:hover { color: var(--white); }
.cat-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Featured post ── */
.featured-post {
  background: var(--bg);
  padding: 48px 0 0;
}
.featured-post__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 36px 32px;
  align-items: center;
  margin-bottom: 0;
}
.featured-post__badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 8px;
}
.featured-post__cat {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.featured-post__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin: 12px 0 14px;
}
.featured-post__excerpt {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.featured-post__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.featured-post__meta {
  font-size: 12px;
  color: var(--muted);
}
.featured-post__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

@media (max-width: 640px) {
  .featured-post__card {
    grid-template-columns: 1fr;
  }
  .featured-post__visual { display: none; }
}

/* ── Blog grid ── */
.blog-grid-section {
  background: var(--bg);
  padding: 32px 0 64px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.blog-card--red  { border-left: 3px solid var(--red); }
.blog-card--gold { border-left: 3px solid var(--gold); }
.blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-card--gold .blog-card__cat { color: var(--gold); }
.blog-card--red  .blog-card__cat { color: var(--red); }
.blog-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--white);
  flex: 1;
}
.blog-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.blog-card__arrow { color: var(--gold); font-weight: 700; }

/* ── Domain strip ── */
.domain-strip {
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: rgba(201,168,76,0.04);
  padding: 18px 0;
  margin: 0 0 0;
}
.domain-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.domain-strip__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.domain-strip__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.domain-strip__live {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.domain-strip__url {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.domain-strip__right {
  font-size: 12px;
  color: var(--muted);
}

/* =========================================================
   UTILITY
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }
