/* ============================================================
   XocialBiz — Main Stylesheet
   assets/css/main.css
   ============================================================ */

/* ── Reset & Variables ────────────────────────────────────── */
:root {
  --bg:          #0B0B0B;
  --surface:     #141414;
  --surface2:    #1C1C1C;
  --surface3:    #242424;
  --gold:        #C8962A;
  --gold-lt:     #E8B84B;
  --gold-dim:    rgba(200,150,42,0.12);
  --gold-border: rgba(200,150,42,0.25);
  --text:        #F0EBE0;
  --text2:       #9A9590;
  --text3:       #5A5550;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --mono:        'DM Mono', monospace;
  --radius:      4px;
  --radius-lg:   8px;
  --max-width:   1200px;
  --nav-height:  68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
}

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: 20px; }

em { font-style: italic; color: var(--gold); }

p { color: var(--text2); font-weight: 300; line-height: 1.7; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #0B0B0B;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--text2); color: var(--text); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline-gold:hover { background: var(--gold-dim); }

/* ── Navigation ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(11,11,11,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.site-logo .x { color: var(--gold); }

/* WordPress nav menu */
#primary-navigation { display: flex; align-items: center; }

#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

#primary-navigation ul li { position: relative; }

#primary-navigation ul li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 4px 0;
}

#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a,
#primary-navigation ul li.current-page-ancestor > a { color: var(--text); }

/* Dropdown */
#primary-navigation ul li ul {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 8px;
  flex-direction: column;
  gap: 0;
  display: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

#primary-navigation ul li:hover > ul { display: flex; }

#primary-navigation ul li ul li a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 13px;
}
#primary-navigation ul li ul li a:hover { background: var(--surface2); color: var(--text); }

.nav-cta-wrap { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
  z-index: 999;
  padding: 24px 6%;
}
#mobile-nav.open { display: block; }
#mobile-nav ul { flex-direction: column; gap: 0; display: flex; }
#mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
#mobile-nav ul li a:hover { color: var(--text); }
#mobile-nav .mobile-cta { margin-top: 20px; }
#mobile-nav .mobile-cta .btn { width: 100%; text-align: center; }

/* ── Page Wrapper ─────────────────────────────────────────── */
.page-wrap { padding-top: var(--nav-height); }

/* ── Hero (Homepage) ──────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  padding: 100px 6% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero::before {
  content: 'X';
  position: fixed;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(280px, 38vw, 580px);
  font-weight: 300;
  color: rgba(200,150,42,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }
.hero h1 { max-width: 820px; }

.hero-sub {
  font-size: 17px;
  max-width: 500px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text3);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ── Section Base ─────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
}

.section-header {
  margin-bottom: 60px;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.section-header-right {
  max-width: 360px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.7;
}

.bg-surface { background: var(--surface); }
.bg-bg      { background: var(--bg); }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 36px 30px;
  position: relative;
  transition: background 0.2s;
}
.bg-bg .service-card { background: var(--surface2); }
.service-card:hover  { background: var(--surface2); }
.bg-bg .service-card:hover { background: var(--surface3); }

.service-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.65;
}

.service-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover .service-arrow { opacity: 1; }
.service-arrow svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ── Packages ─────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pkg-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pkg-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.pkg-card.featured { background: var(--surface3); border-color: var(--gold-border); }
.pkg-card.featured:hover { border-color: var(--gold); }

.pkg-featured-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pkg-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.pkg-tagline { font-size: 13px; color: var(--text2); font-weight: 300; margin-bottom: 28px; }

.pkg-price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-price .currency { font-size: 20px; color: var(--text3); font-family: var(--sans); font-weight: 300; }
.pkg-period { font-size: 12px; color: var(--text3); margin-bottom: 28px; }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 24px; }

.pkg-includes-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pkg-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.pkg-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  flex-shrink: 0; margin-top: 3px;
  display: flex; align-items: center; justify-content: center;
}
.pkg-check::after {
  content: '';
  width: 5px; height: 3px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg) translateY(-1px);
}

.pkg-feature-text { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.4; }

.pkg-cta { margin-top: auto; padding-top: 28px; }
.pkg-btn {
  display: block; text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.pkg-btn-outline { border: 1px solid var(--border2); color: var(--text2); }
.pkg-btn-outline:hover { border-color: var(--text2); color: var(--text); }
.pkg-btn-gold { background: var(--gold); color: #0B0B0B; }
.pkg-btn-gold:hover { background: var(--gold-lt); }

/* ── Why / Points ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-statement {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text2);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 40px;
}
.why-statement strong { color: var(--text); font-weight: 400; }

.why-points { display: flex; flex-direction: column; gap: 20px; }

.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px; flex-shrink: 0;
}
.why-point-text { font-size: 14px; color: var(--text2); line-height: 1.65; font-weight: 300; }
.why-point-text strong { color: var(--text); font-weight: 500; }

.why-cards { display: flex; flex-direction: column; gap: 14px; }
.why-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--gold-border); }
.why-card-num {
  font-family: var(--serif);
  font-size: 38px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.why-card-label { font-size: 13px; color: var(--text2); font-weight: 300; }

/* ── Process ──────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border2);
}
.process-step { padding: 0 20px; text-align: center; }
.process-step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 20px; color: var(--gold);
  position: relative; z-index: 1;
}
.process-step-name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 400;
  color: var(--text); margin-bottom: 10px;
}
.process-step-desc { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.6; }

/* ── Page Hero (Interior Pages) ───────────────────────────── */
.page-hero {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text3); }
.page-hero h1 { max-width: 700px; }
.page-hero p { max-width: 520px; margin-top: 20px; font-size: 17px; }

/* ── Services Page ────────────────────────────────────────── */
.services-full { display: flex; flex-direction: column; gap: 1px; }
.service-full-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-full-left { }
.service-full-num { font-family: var(--mono); font-size: 10px; color: var(--text3); letter-spacing: 0.12em; margin-bottom: 16px; }
.service-full-name { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--text); margin-bottom: 12px; }
.service-full-price { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.06em; }
.service-full-right { }
.service-full-desc { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.service-deliverables { }
.service-deliverables-label {
  font-size: 10px; font-weight: 500; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.service-deliverables ul { display: flex; flex-wrap: wrap; gap: 8px; }
.service-deliverables li {
  font-size: 12px; color: var(--text2);
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 4px 14px;
}

/* ── About Page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.about-body p { margin-bottom: 20px; font-size: 15px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.value-card-title {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: var(--text); margin-bottom: 8px;
}
.value-card-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex; gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.contact-info-label { font-size: 11px; color: var(--text3); margin-bottom: 4px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.contact-info-value { font-size: 14px; color: var(--text); }
.contact-info-value a { color: var(--text); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px; font-weight: 500; color: var(--text3);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-border); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group select option { background: var(--surface2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; text-align: center; padding: 15px; font-size: 14px; }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.post-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.post-card-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface2);
  overflow: hidden;
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb-placeholder {
  width: 100%; height: 100%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
}
.post-card-thumb-placeholder svg { width: 32px; height: 32px; stroke: var(--text3); fill: none; stroke-width: 1; }

.post-card-body { padding: 24px; }
.post-meta {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 12px; flex-wrap: wrap;
}
.post-category {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 3px 8px; border-radius: 20px;
}
.post-date { font-size: 11px; color: var(--text3); }
.post-title {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: var(--text); line-height: 1.3;
  margin-bottom: 10px; display: block;
  transition: color 0.2s;
}
.post-title:hover { color: var(--gold); }
.post-excerpt { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }
.post-read-more {
  font-size: 12px; color: var(--gold);
  font-family: var(--mono); letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.post-read-more:hover { gap: 10px; }

/* Single Post */
.single-post-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.post-content { max-width: 720px; }
.post-content p { margin-bottom: 24px; font-size: 15px; line-height: 1.8; }
.post-content h2 { font-size: 30px; margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; margin: 32px 0 12px; }
.post-content ul, .post-content ol { margin: 16px 0 24px 20px; color: var(--text2); }
.post-content li { margin-bottom: 8px; font-size: 15px; line-height: 1.7; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--surface2);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content blockquote p { color: var(--text); font-style: italic; font-size: 17px; margin: 0; }
.post-content img { border-radius: var(--radius-lg); margin: 28px 0; }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.post-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-widget-title {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--text3);
  text-transform: uppercase; margin-bottom: 16px;
}
.sidebar-post { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-thumb {
  width: 56px; height: 44px; flex-shrink: 0;
  background: var(--surface2); border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-size: 12px; color: var(--text); line-height: 1.4; display: block; transition: color 0.2s; }
.sidebar-post-title:hover { color: var(--gold); }
.sidebar-post-date { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* Pagination */
.pagination {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 60px;
}
.page-numbers {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text2);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ── News Page ────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
  display: flex; gap: 20px; align-items: flex-start;
}
.news-card:hover { border-color: var(--border2); }
.news-card.announcement { border-color: var(--gold-border); }
.news-type-badge {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; flex-shrink: 0;
}
.badge-announcement { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-product    { background: rgba(59,130,246,0.1); color: #60A5FA; border: 1px solid rgba(59,130,246,0.2); }
.badge-update     { background: rgba(34,197,94,0.1); color: #4ADE80; border: 1px solid rgba(34,197,94,0.2); }
.news-card-body { flex: 1; }
.news-card-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--text); line-height: 1.3; margin-bottom: 8px; display: block; transition: color 0.2s;
}
.news-card-title:hover { color: var(--gold); }
.news-card-excerpt { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 12px; }
.news-card-date { font-size: 11px; color: var(--text3); font-family: var(--mono); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-headline { margin-bottom: 16px; }
.cta-sub { max-width: 480px; margin: 0 auto 40px; font-size: 16px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-email { font-family: var(--mono); font-size: 12px; color: var(--text3); margin-top: 28px; letter-spacing: 0.06em; }
.cta-email a { color: var(--gold); transition: color 0.2s; }
.cta-email a:hover { color: var(--gold-lt); }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 6% 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .logo {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--text); margin-bottom: 14px;
  display: block;
}
.footer-brand .logo .x { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 240px; }
.footer-col-title {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--text3);
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--text3);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text2); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.social-link svg { width: 14px; height: 14px; stroke: var(--text3); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 6%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text2); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.25s; }
.anim-delay-3 { animation-delay: 0.4s; }
.anim-delay-4 { animation-delay: 0.55s; }
.anim-delay-5 { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utilities ────────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text2); }
.mt-0  { margin-top: 0; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  #primary-navigation, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .single-post-wrap { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .service-full-card { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 600px) {
  :root { --nav-height: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 5% 60px; }
  .news-card { flex-direction: column; }
  .packages-grid { max-width: 100%; }
  .hero-stats { gap: 24px; }
}
