/**
 * Dallas Web Pro — Pages CSS
 * Interior page styles: page heroes, service overview, service detail.
 * Enqueued on all non-front pages via functions.php.
 */

/* ─── PAGE HERO ─────────────────────────────── */
.page-hero {
  padding-top: calc( var(--dw-nav-height) + 72px );
  padding-bottom: 80px;
  padding-inline: var(--dw-wrap-px);
  max-width: var(--dw-container);
  margin-inline: auto;
}

.page-hero-dark {
  background: var(--dw-dark);
  max-width: 100%;
  padding-inline: 0;
}

.page-hero-dark .wrap {
  padding-top: calc( var(--dw-nav-height) + 72px );
  padding-bottom: 80px;
}

.page-hero-h1 {
  font-family: var(--dw-serif);
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--dw-white);
  margin-bottom: 24px;
  max-width: 780px;
}

.page-hero-h1 em {
  font-style: italic;
  color: var(--dw-amber-lt);
}

.page-hero-sub {
  font-family: var(--dw-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dw-slate);
  max-width: 560px;
}

/* Breadcrumb back link */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dw-slate);
  margin-bottom: 28px;
}

.page-breadcrumb a {
  color: var(--dw-slate);
  transition: color 0.2s;
}

.page-breadcrumb a:hover { color: var(--dw-amber-lt); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.breadcrumb-industry {
  color: var(--proj-accent, var(--dw-amber-lt));
}

/* ─── SERVICES OVERVIEW ─────────────────────── */
.services-detail-section {
  background: var(--dw-bg);
  padding-block: var(--dw-space-xl);
}

.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-overview-card {
  display: block;
  background: var(--dw-white);
  border-radius: var(--dw-radius);
  padding: 44px 38px 40px;
  box-shadow: var(--dw-shadow-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform  0.45s var(--dw-ease),
    box-shadow 0.45s var(--dw-ease);
  text-decoration: none;
}

.svc-overview-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--dw-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--dw-ease);
}

.svc-overview-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--dw-shadow-md);
}

.svc-overview-card:hover::after { transform: scaleX(1); }

.svc-overview-icon {
  margin-bottom: 20px;
}

.svc-overview-num {
  display: block;
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--dw-amber);
  margin-bottom: 14px;
}

.svc-overview-title {
  font-family: var(--dw-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--dw-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.svc-overview-body {
  font-family: var(--dw-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--dw-text-lt);
  margin-bottom: 28px;
}

.svc-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dw-amber);
  transition: gap 0.25s var(--dw-ease);
}

.svc-overview-card:hover .svc-overview-link { gap: 13px; }

/* CTA strip */
/* .services-cta-strip removed — replaced by .cta-band */

/* ─── SERVICE DETAIL — INTRO ────────────────── */
.sd-intro-section {
  background: var(--dw-bg);
  padding-block: var(--dw-space-xl);
}

.sd-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
}

.sd-intro-heading {
  font-family: var(--dw-serif);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 300;
  color: var(--dw-dark);
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.sd-intro-body {
  font-family: var(--dw-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--dw-text-lt);
  margin-bottom: 20px;
}

/* ─── SERVICE DETAIL — APPROACH ─────────────── */
.sd-approach-section {
  background: var(--dw-cream);
  padding-block: var(--dw-space-xl);
}

.sd-approach-header {
  margin-bottom: 60px;
  max-width: 640px;
}

.sd-approach-sub {
  font-family: var(--dw-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dw-text-lt);
  margin-top: 16px;
}

.sd-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.sd-step {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--dw-amber);
}

.sd-step-num {
  font-family: var(--dw-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--dw-amber);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.sd-step-title {
  font-family: var(--dw-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--dw-dark);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.sd-step-body {
  font-family: var(--dw-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--dw-text-lt);
}

/* ─── SERVICE DETAIL — TESTIMONIAL ──────────── */
.sd-testi-section {
  background: var(--dw-dark);
  padding-block: 80px;
}

.sd-testi-inner {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  padding-left: 24px;
}

.sd-testi-mark {
  margin-bottom: 28px;
}

.sd-testi-quote {
  font-family: var(--dw-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--dw-white);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.sd-testi-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sd-testi-name {
  font-family: var(--dw-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dw-white);
  letter-spacing: 0.04em;
}

.sd-testi-co {
  font-family: var(--dw-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--dw-slate);
}

.sd-testi-co a {
  color: var(--dw-amber-lt);
  transition: color 0.2s;
}

.sd-testi-co a:hover { color: var(--dw-amber); }

/* ─── OTHER SERVICES ────────────────────────── */
.sd-other-services {
  background: var(--dw-bg);
  padding-block: var(--dw-space-lg);
}

.sd-other-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sd-other-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dw-white);
  border: 1px solid var(--dw-cream);
  border-radius: var(--dw-radius);
  padding: 12px 20px;
  font-family: var(--dw-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--dw-text-lt);
  transition:
    color      0.25s,
    border-color 0.25s,
    box-shadow  0.25s;
}

.sd-other-item:hover {
  color: var(--dw-amber);
  border-color: var(--dw-amber);
  box-shadow: var(--dw-shadow-sm);
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
  .svc-overview-grid { grid-template-columns: 1fr 1fr; }
  .sd-steps-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .page-hero-dark .wrap { padding-top: calc( var(--dw-nav-height) + 48px ); padding-bottom: 56px; }
  .svc-overview-grid    { grid-template-columns: 1fr; }
  .sd-steps-grid        { grid-template-columns: 1fr; }
  .services-cta-inner   { flex-direction: column; align-items: flex-start; }
  .sd-testi-inner       { padding-left: 0; }
}


/* ══════════════════════════════════════════════
   PORTFOLIO — ARCHIVE PAGE (/work/)
══════════════════════════════════════════════ */

/* ─── Archive Hero ───────────────────────────── */
.port-archive-hero {
  background: var(--dw-dark);
  padding-top: calc( var(--dw-nav-height) + 80px );
  padding-bottom: 80px;
  padding-inline: 0;
}

.port-archive-h1 {
  font-family: var(--dw-serif);
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--dw-white);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 700px;
}

.port-archive-h1 em {
  font-style: italic;
  color: var(--dw-amber-lt);
}

.port-archive-sub {
  font-family: var(--dw-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dw-slate);
  max-width: 540px;
}

/* ─── Filter Bar ─────────────────────────────── */
.port-filter-wrap {
  background: var(--dw-dark);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.port-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.port-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dw-slate);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.port-filter-pill:hover {
  color: var(--dw-white);
  border-color: rgba(255,255,255,0.35);
}

.port-filter-pill.is-active {
  background: var(--dw-amber);
  border-color: var(--dw-amber);
  color: var(--dw-white);
}

/* ─── Archive Grid ───────────────────────────── */
.port-archive-section {
  background: var(--dw-bg);
  padding-block: var(--dw-space-lg);
}

.portfolio-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card link hover — the whole card lifts */
.port-item {
  background: var(--dw-white);
  border-radius: var(--dw-radius-lg);
  overflow: hidden;
  box-shadow: var(--dw-shadow-sm);
  transition: transform 0.45s var(--dw-ease), box-shadow 0.45s var(--dw-ease);
}

.port-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.port-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--dw-shadow-md);
}

.port-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #E5E2DC;
  border-bottom: 1px solid #D5D1C9;
  min-height: 34px;
}

.port-url {
  flex: 1;
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 400;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--dw-white);
  border-radius: 3px;
  padding: 3px 8px;
}

.port-chrome-arrow {
  color: #aaa;
  flex-shrink: 0;
}

.port-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.port-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.55s var(--dw-ease);
}

.port-item:hover .port-img { transform: scale(1.03); }

.port-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(28,43,58,0.18) 100%);
  pointer-events: none;
}

.port-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dw-cream), var(--dw-bg));
  width: 100%;
  height: 100%;
}

.port-img-placeholder span {
  font-size: 11px;
  color: var(--dw-warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.port-meta {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.port-title {
  font-family: var(--dw-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--dw-dark);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.port-result {
  font-family: var(--dw-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dw-text-lt);
  margin-bottom: 12px;
}

.port-view-link {
  display: inline-block;
  margin-top: auto;
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dw-amber);
  transition: letter-spacing 0.25s var(--dw-ease);
}

.port-item:hover .port-view-link { letter-spacing: 0.18em; }

.port-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 7px;
}

.port-label {
  font-family: var(--dw-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dw-amber);
}

.port-label:not(:last-child)::after {
  content: '·';
  margin: 0 6px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.5;
}

.port-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--dw-warm-gray);
  font-family: var(--dw-sans);
}

/* ══════════════════════════════════════════════
   UNIVERSAL CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: var(--dw-dark);
  position: relative;
  overflow: hidden;
  padding-block: 100px;
}

/* Diagonal line texture overlay */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.022) 28px,
    rgba(255, 255, 255, 0.022) 29px
  );
  pointer-events: none;
  z-index: 0;
}

/* Radial amber glow behind the content */
.cta-band::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 123, 42, 0.10) 0%,
    rgba(201, 123, 42, 0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: var(--dw-container, 1360px);
  margin: 0 auto;
  padding-inline: var(--dw-wrap-px, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Headline */
.cta-h2 {
  font-family: var(--dw-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: var(--dw-white);
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-top: 14px;
  margin-bottom: 6px;
}

.cta-h2 em {
  font-style: italic;
  color: var(--dw-amber-lt);
  display: block;
}

/* Gold CTA button */
.btn-cta-gold {
  display: inline-block;
  background: var(--dw-amber);
  color: var(--dw-white);
  border: none;
  padding: 18px 44px;
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--dw-radius, 3px);
  cursor: pointer;
  text-decoration: none;
  transition:
    background   0.3s,
    box-shadow   0.3s,
    transform    0.25s;
  box-shadow: 0 8px 32px rgba(201, 123, 42, 0.35);
  white-space: nowrap;
  margin-top: 48px;
}

.btn-cta-gold:hover {
  background: #b06e24;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201, 123, 42, 0.50);
}

/* City / brand watermark behind content */
.cta-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--dw-serif);
  font-size: 160px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.03em;
  line-height: 1;
}


/* ══════════════════════════════════════════════
   PORTFOLIO — SINGLE CASE STUDY PAGE
══════════════════════════════════════════════ */

/* ─── Project Hero ───────────────────────────── */
.proj-hero {
  background: var(--dw-dark);
  padding-top: calc( var(--dw-nav-height) + 72px );
  padding-bottom: 64px;
  padding-inline: 0;
}

.proj-hero .wrap {
  position: relative;
}

.eyebrow-amber {
  color: var(--proj-accent, var(--dw-amber-lt));
}

.proj-hero-h1 {
  font-family: var(--dw-serif);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--dw-white);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 800px;
}

.proj-hero-result {
  font-family: var(--dw-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--dw-slate);
}

/* ─── Device Showcase ────────────────────────── */
.proj-device-section {
  background: var(--dw-bg);
  padding-top: 64px;
  padding-bottom: 48px;
  overflow: hidden;
}

.proj-devices {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.proj-desktop-wrap {
  flex: 1;
  min-width: 0;
}

/* Desktop browser frame */
.proj-desktop-frame {
  background: var(--dw-white);
  border-radius: var(--dw-radius-lg) var(--dw-radius-lg) 4px 4px;
  box-shadow: var(--dw-shadow-lg);
  overflow: hidden;
}

.proj-desktop-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #E8E5DF;
  border-bottom: 1px solid #D8D4CD;
  min-height: 42px;
}

.proj-desktop-url {
  flex: 1;
  background: var(--dw-white);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: var(--dw-sans);
  font-size: 11px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proj-desktop-screen {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dw-cream);
}

.proj-desktop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.proj-screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dw-cream), var(--dw-bg));
}

.proj-screen-placeholder span {
  font-family: var(--dw-sans);
  font-size: 11px;
  color: var(--dw-warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Floating mobile frame */
.proj-mobile-wrap {
  width: 200px;
  flex-shrink: 0;
  margin-left: -60px;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}

.proj-mobile-frame {
  background: #1A1A1A;
  border-radius: 36px;
  padding: 14px 8px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proj-mobile-notch {
  width: 60px;
  height: 8px;
  background: #111;
  border-radius: 0 0 10px 10px;
  margin-bottom: 8px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.proj-mobile-screen {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dw-cream);
  aspect-ratio: 9 / 19.5;
}

.proj-mobile-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.proj-mobile-home {
  width: 36px;
  height: 5px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  margin-top: 10px;
}

/* ─── Project Info ───────────────────────────── */
.proj-info-section {
  background: var(--dw-bg);
  padding-block: var(--dw-space-md);
}

.proj-info-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.proj-description p {
  font-family: var(--dw-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--dw-text-lt);
  margin-bottom: 18px;
}

.proj-services-label {
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dw-warm-gray);
  margin-bottom: 14px;
}

.proj-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proj-service-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--dw-white);
  border: 1px solid var(--dw-cream);
  border-radius: 100px;
  font-family: var(--dw-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--dw-text-lt);
  white-space: nowrap;
}

/* ─── Full Desktop Screenshot ────────────────── */
.proj-fullscreen-section {
  background: var(--dw-cream);
  padding-block: 64px;
}

.proj-fullscreen-frame {
  background: var(--dw-white);
  border-radius: var(--dw-radius-lg);
  overflow: hidden;
  box-shadow: var(--dw-shadow-md);
}

.proj-fullscreen-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #E8E5DF;
  border-bottom: 1px solid #D8D4CD;
  min-height: 42px;
}

.proj-fullscreen-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── iPad / Tablet Frame (device showcase) ─── */
.proj-ipad-wrap {
  width: 220px;
  flex-shrink: 0;
  margin-left: -40px;
  margin-top: 30px;
  z-index: 1;
  position: relative;
}

.proj-ipad-frame {
  background: #1C1C1E;
  border-radius: 20px;
  padding: 18px 10px 22px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proj-ipad-camera {
  width: 8px;
  height: 8px;
  background: #2A2A2C;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.proj-ipad-screen {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dw-cream);
  aspect-ratio: 3 / 4;
}

.proj-ipad-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.proj-ipad-home {
  width: 44px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin-top: 12px;
}

/* ─── iPad Close-up Section ──────────────────── */
.proj-ipad-closeup-section {
  background: var(--dw-cream);
  padding-block: var(--dw-space-lg);
}

.proj-ipad-showcase {
  display: flex;
  justify-content: center;
}

.proj-ipad-frame-lg {
  width: 380px;
}

.proj-ipad-frame-lg .proj-ipad-camera {
  width: 10px;
  height: 10px;
  margin-bottom: 14px;
}

.proj-ipad-frame-lg .proj-ipad-home {
  width: 60px;
  height: 7px;
  margin-top: 16px;
}

/* ─── Section header (for fullscreen / closeup sections) */
.proj-section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ─── Live site link in hero ─────────────────── */
.proj-hero-live-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dw-amber-lt);
  transition: color 0.2s, gap 0.2s;
}

.proj-hero-live-link:hover {
  color: var(--dw-amber);
  gap: 10px;
}

/* ─── Chrome external link icon ─────────────── */
.proj-chrome-ext {
  color: #aaa;
  flex-shrink: 0;
}

/* ─── Mobile Close-up ────────────────────────── */
.proj-mobile-closeup-section {
  background: var(--dw-bg);
  padding-block: var(--dw-space-lg);
}

.proj-closeup-header {
  text-align: center;
  margin-bottom: 56px;
}

.proj-mobile-showcase {
  display: flex;
  justify-content: center;
}

.proj-mobile-frame-lg {
  width: 300px;
}

.proj-mobile-frame-lg .proj-mobile-notch {
  width: 90px;
  height: 10px;
}

.proj-mobile-frame-lg .proj-mobile-home {
  width: 52px;
  height: 6px;
}

/* .proj-cta-strip removed — replaced by .cta-band */

/* ── Shared eyebrow ─────────────────────────── */
.proj-eyebrow {
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dw-amber);
  margin-bottom: 16px;
}

/* ── Project Overview Section ───────────────── */
.proj-overview-section {
  background: var(--dw-bg);
  padding-block: var(--dw-space-md);
  border-top: 1px solid var(--dw-cream);
}

.proj-overview-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
}

.proj-overview-content p {
  font-family: var(--dw-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dw-text-lt);
  margin-bottom: 20px;
}

.proj-overview-content p:last-child { margin-bottom: 0; }

.proj-overview-content h2,
.proj-overview-content h3 {
  font-family: var(--dw-serif);
  font-weight: 300;
  color: var(--dw-dark);
  margin-bottom: 12px;
  margin-top: 28px;
  line-height: 1.2;
}

/* ── Project Meta Sidebar ───────────────────── */
.proj-meta-sidebar {
  background: var(--dw-white);
  border: 1px solid var(--dw-cream);
  border-radius: var(--dw-radius-lg);
  padding: 8px 0;
  position: sticky;
  top: calc(var(--dw-nav-height) + 24px);
}

.proj-meta-item {
  padding: 18px 28px;
  border-bottom: 1px solid var(--dw-cream);
}

.proj-meta-label {
  display: block;
  font-family: var(--dw-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dw-warm-gray);
  margin-bottom: 6px;
}

.proj-meta-value {
  font-family: var(--dw-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--dw-dark);
}

/* ── What We Did Section ────────────────────── */
.proj-what-section {
  background: var(--dw-cream);
  padding-block: var(--dw-space-md);
}

.proj-what-header {
  margin-bottom: 56px;
}

.proj-what-h2 {
  font-family: var(--dw-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--dw-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.proj-what-h2 em {
  font-style: italic;
  color: var(--dw-amber);
}

.proj-what-grid {
  display: grid;
  gap: 24px;
}

.proj-what-grid--3 { grid-template-columns: repeat(3, 1fr); }
.proj-what-grid--4 { grid-template-columns: repeat(4, 1fr); }

.proj-what-card {
  background: var(--dw-white);
  border-radius: var(--dw-radius-lg);
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--dw-ease), box-shadow 0.4s var(--dw-ease);
}

.proj-what-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--proj-accent, var(--dw-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--dw-ease);
}

.proj-what-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dw-shadow-md);
}

.proj-what-card:hover::after { transform: scaleX(1); }

.proj-what-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--dw-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--proj-accent, var(--dw-amber));
  transition: background 0.3s;
}

.proj-what-card:hover .proj-what-icon {
  background: color-mix(in srgb, var(--proj-accent, var(--dw-amber)) 12%, white);
}

.proj-what-icon svg {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  flex-shrink: 0;
}

.proj-what-name {
  font-family: var(--dw-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dw-dark);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.proj-what-body {
  font-family: var(--dw-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dw-text-lt);
}

/* ─── Copyright Bar ──────────────────────────── */
.proj-copyright-bar {
  background: var(--dw-dark-deep);
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.proj-copyright-bar p {
  font-family: var(--dw-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--dw-slate);
  text-align: center;
  line-height: 1.7;
}

.proj-copyright-bar a {
  color: var(--dw-amber-lt);
  transition: color 0.2s;
}

.proj-copyright-bar a:hover { color: var(--dw-amber); }


/* ══════════════════════════════════════════════
   RESPONSIVE — PORTFOLIO
══════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .portfolio-archive-grid { grid-template-columns: 1fr 1fr; }
  .proj-info-grid          { grid-template-columns: 1fr; gap: 36px; }
  .proj-overview-grid      { grid-template-columns: 1fr; gap: 48px; }
  .proj-meta-sidebar       { position: static; }
  .proj-what-grid--4       { grid-template-columns: repeat(2, 1fr); }
  .proj-mobile-wrap        { width: 160px; margin-left: -30px; margin-top: 50px; }
  .proj-ipad-wrap          { width: 180px; margin-left: -30px; margin-top: 25px; }
  .proj-ipad-frame-lg      { width: 300px; }
}

@media (max-width: 768px) {
  .port-archive-hero    { padding-top: calc( var(--dw-nav-height) + 48px ); padding-bottom: 48px; }
  .portfolio-archive-grid { grid-template-columns: 1fr; }
  .cta-watermark { font-size: 100px; bottom: 0; }
  .proj-what-grid--3,
  .proj-what-grid--4     { grid-template-columns: 1fr; }

  /* 3-device showcase stacks on mobile */
  .proj-devices         { flex-direction: column; align-items: stretch; }
  .proj-ipad-wrap       { width: 200px; align-self: center; margin-left: 0; margin-top: 24px; }
  .proj-mobile-wrap     { width: 140px; align-self: flex-end; margin-left: 0; margin-top: -60px; margin-right: 16px; }
  .proj-mobile-showcase { padding-inline: 0; }
  .proj-mobile-frame-lg { width: 220px; }
  .proj-ipad-frame-lg   { width: 260px; }

  .proj-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   PORTFOLIO — DESKTOP FRAME LIVE SITE LINK
══════════════════════════════════════════════ */

/* Anchor wraps the entire desktop browser frame */
.proj-desktop-live-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

/* Subtle hover lift */
.proj-desktop-live-link:hover .proj-desktop-frame {
  box-shadow: 0 28px 72px rgba(0,0,0,0.22);
  transform: translateY(-4px);
}

.proj-desktop-live-link .proj-desktop-frame {
  transition: transform 0.4s var(--dw-ease), box-shadow 0.4s var(--dw-ease);
}

/* ── Visit Live Site button (inside services block) ── */
.proj-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1.5px solid var(--proj-accent, #C97B2A);
  border-radius: 100px;
  color: var(--proj-accent, #C97B2A);
  font-family: var(--dw-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.proj-live-btn:hover {
  background: var(--proj-accent, #C97B2A);
  color: var(--dw-white);
}

/* ════════════════════════════════════════════════
   SERVICE DETAIL — REDESIGNED SECTIONS
   (Web Development page and future service pages)
════════════════════════════════════════════════ */

/* ── Reveal left / right ─────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--dw-ease), transform 0.9s var(--dw-ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--dw-ease), transform 0.9s var(--dw-ease);
}
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ── SPLIT INTRO ─────────────────────────────── */
.sd-split {
  background: var(--dw-cream);
  overflow: hidden;
}

.sd-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.sd-split-img {
  position: relative;
  overflow: hidden;
}

.sd-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.sd-split-img:hover img { transform: scale(1.04); }

.sd-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,22,34,0.52) 0%, rgba(11,22,34,0.1) 100%);
}

.sd-split-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: var(--dw-amber);
  color: var(--dw-dark);
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
}

.sd-split-copy {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dw-cream);
}

.sd-split-heading {
  font-family: var(--dw-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 300;
  color: var(--dw-dark);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.sd-split-heading em {
  font-style: italic;
  color: var(--dw-amber);
}

.sd-split-body {
  font-size: 15px;
  line-height: 1.82;
  color: var(--dw-text-lt);
  margin-bottom: 16px;
}

/* Stats row */
.sd-split-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.sd-stat-num {
  font-family: var(--dw-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--dw-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.sd-stat-num span { color: var(--dw-amber); }

.sd-stat-label {
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dw-text-lt);
}

/* ── WHAT WE BUILD ────────────────────────────── */
.sd-build {
  background: var(--dw-dark);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Dallas watermark */
.sd-build::before {
  content: attr(data-wm);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--dw-serif);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
}

/* Diagonal background lines — same pattern as work page */
.sd-build-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 38px,
    rgba(255,255,255,0.018) 38px,
    rgba(255,255,255,0.018) 39px
  );
  pointer-events: none;
  z-index: 0;
}

/* Gold orb glow top-right */
.sd-build::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.sd-build-wrap { position: relative; z-index: 1; }

.sd-build-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.sd-build-heading {
  font-family: var(--dw-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--dw-white);
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: 500px;
}

.sd-build-heading em { color: var(--dw-amber-lt); font-style: italic; }

.sd-build-sub {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.44);
  text-align: right;
  flex-shrink: 0;
}

/* Cards grid */
.sd-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sd-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.35s var(--dw-ease),
    border-color 0.35s var(--dw-ease),
    transform 0.35s var(--dw-ease),
    box-shadow 0.35s var(--dw-ease);
}

.sd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--dw-ease);
}

.sd-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.12);
}

.sd-card:hover::before { opacity: 1; }

.sd-card-num {
  font-family: var(--dw-serif);
  font-size: 11px;
  font-weight: 300;
  color: rgba(201,168,76,0.45);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.sd-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, border-color 0.3s;
  color: var(--dw-amber);
  flex-shrink: 0;
}

.sd-card:hover .sd-card-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.4);
}

.sd-card-icon svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}

.sd-card h3 {
  font-family: var(--dw-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--dw-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sd-card p {
  font-size: 13px;
  line-height: 1.78;
  color: rgba(255,255,255,0.45);
}

.sd-card-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dw-amber);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
}

.sd-card-arrow svg {
  width: 13px !important;
  height: 13px !important;
}

.sd-card:hover .sd-card-arrow {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(201,168,76,0.3);
}

/* ── MARQUEE BAND ─────────────────────────────── */
.sd-marquee-band {
  background: var(--dw-amber);
  padding: 18px 0;
  overflow: hidden;
}

.sd-marquee-track {
  display: flex;
  width: max-content;
  animation: sd-marquee 28s linear infinite;
}

@keyframes sd-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sd-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--dw-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dw-dark);
}

.sd-marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dw-dark);
  opacity: 0.35;
  flex-shrink: 0;
  display: inline-block;
}

/* ── HOW WE WORK (parallax) ──────────────────── */
.sd-process-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.sd-process-new-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.sd-process-new-bg img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center 30%;
  top: -25%;
  position: absolute;
}

/* Dark overlay with gradient */
.sd-process-new-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,22,34,0.95) 0%,
    rgba(11,22,34,0.86) 50%,
    rgba(11,22,34,0.72) 100%
  );
}

.sd-process-new-wrap { position: relative; z-index: 1; }

.sd-process-new-head {
  max-width: 640px;
  margin-bottom: 80px;
}

.sd-process-new-heading {
  font-family: var(--dw-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--dw-white);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 16px;
}

.sd-process-new-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}

.sd-process-new-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Horizontal gold line connecting step circles */
.sd-process-new-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.3) 20%,
    rgba(201,168,76,0.5) 50%,
    rgba(201,168,76,0.3) 80%,
    transparent 100%
  );
}

.sd-process-new-step {
  padding: 0 48px 0 0;
}

.sd-process-new-step:last-child { padding-right: 0; }

.sd-step-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.sd-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.sd-process-new-step:hover .sd-step-circle {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.7);
}

.sd-step-circle-num {
  font-family: var(--dw-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--dw-amber);
}

.sd-process-new-step h3 {
  font-family: var(--dw-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dw-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sd-process-new-step p {
  font-size: 13px;
  line-height: 1.82;
  color: rgba(255,255,255,0.48);
}

/* ── CLIENT RESULTS ───────────────────────────── */
.sd-results {
  background: var(--dw-cream);
  padding: 120px 0;
  overflow: hidden;
}

.sd-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sd-results-img-wrap { position: relative; }

.sd-results-img-main {
  border-radius: 20px;
  overflow: hidden;
}

.sd-results-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
  border-radius: 20px;
}

.sd-results-img-wrap:hover .sd-results-img-main img { transform: scale(1.04); }

.sd-results-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,34,0.5) 0%, transparent 60%);
  border-radius: 20px;
}

/* Floating badge */
.sd-results-float-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--dw-dark);
  border-radius: 16px;
  padding: 24px 28px;
  width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(201,168,76,0.15);
}

.sd-results-float-num {
  font-family: var(--dw-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--dw-amber);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.sd-results-float-label {
  font-family: var(--dw-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.sd-results-heading {
  font-family: var(--dw-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--dw-dark);
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.sd-results-heading em {
  font-style: italic;
  color: var(--dw-amber);
}

/* Quote card */
.sd-quote-card {
  background: var(--dw-white);
  border-radius: 20px;
  padding: 44px 44px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.sd-quote-icon {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 44px;
  height: 44px;
  background: var(--dw-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  color: var(--dw-amber);
}

.sd-quote-icon svg {
  width: 18px !important;
  height: 18px !important;
}

.sd-quote-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--dw-amber);
}

.sd-quote-stars svg {
  width: 16px !important;
  height: 16px !important;
}

.sd-quote-text {
  font-family: var(--dw-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--dw-text-lt);
  margin-bottom: 28px;
}

.sd-quote-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.sd-byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dw-dark), #1a2e44);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.15);
  color: var(--dw-amber);
}

.sd-byline-avatar svg {
  width: 20px !important;
  height: 20px !important;
}

.sd-byline-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dw-dark);
  margin-bottom: 2px;
}

.sd-byline-info a,
.sd-byline-info span {
  font-size: 12px;
  color: var(--dw-amber);
  letter-spacing: 0.03em;
}

.sd-byline-info a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .sd-build-head { flex-direction: column; align-items: flex-start; }
  .sd-build-sub { text-align: left; max-width: 100%; }
  .sd-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-results-grid { gap: 60px; }
}

@media (max-width: 860px) {
  .sd-split-inner { grid-template-columns: 1fr; }
  .sd-split-img { height: 380px; }
  .sd-split-copy { padding: 60px 32px; }
  .sd-split-stats { gap: 28px; flex-wrap: wrap; }
  .sd-process-new-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sd-process-new-steps::before { display: none; }
  .sd-process-new-step { padding-right: 0; }
  .sd-results-grid { grid-template-columns: 1fr; }
  .sd-results-float-card { right: 16px; bottom: -20px; }
}

@media (max-width: 600px) {
  .sd-cards-grid { grid-template-columns: 1fr; }
  .sd-card { padding: 32px 24px 28px; }
  .sd-quote-card { padding: 36px 24px 28px; }
  .sd-build { padding: 80px 0 90px; }
  .sd-results { padding: 80px 0; }
  .sd-process-new { padding: 80px 0; }
}

/* ── Eyebrow no-line variant ─────────────────── */
.eyebrow-no-line::before {
  display: none !important;
}

/* ── Breadcrumb nav (service hero) ───────────── */
.page-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--dw-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.page-breadcrumb-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.page-breadcrumb-nav a:hover { color: var(--dw-amber); }

.page-breadcrumb-sep {
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.page-breadcrumb-nav > span:last-child {
  color: rgba(255,255,255,0.85);
}

/* ── How We Work — simplified step cards ──────── */
.sd-process-new-step h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════
   HERO FLOATING CODE — right column
════════════════════════════════════════════════ */

/* ── Hero: Floating code on background ── */
.hero-code-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 0 60px 20px;
  /* Pre-size the right column so the grid never reflows as code types */
  min-height: 440px;
}

/* Soft ambient glow */
.hero-code-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 40% 50%,
    rgba(201,168,76,0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-code-block {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  line-height: 1.75;
  width: 100%;
  max-width: 520px;
  /* Fixed height = label (~50px) + 15 lines × ~26px — never grows */
  height: 440px;
  overflow: hidden;
}

/* Gold vertical accent bar on the left */
.hero-code-block::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,168,76,0.5) 20%,
    rgba(201,168,76,0.5) 80%,
    transparent 100%
  );
}

/* Filename label above the code */
.hero-code-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.hero-code-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  opacity: 0.6;
  flex-shrink: 0;
}
.hero-code-label-name { color: rgba(255,255,255,0.5); }

/* Line number gutter */
.hero-code-lines { display: flex; gap: 18px; }
.line-nums {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 22px;
  user-select: none;
  flex-shrink: 0;
  padding-top: 2px;
}
.line-num {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.12);
  line-height: 1.75;
  font-family: 'JetBrains Mono', monospace;
}
.code-area { flex: 1; min-width: 0; }

/* Syntax token colours */
.t-tag   { color: #f47067; }
.t-attr  { color: #79c0ff; }
.t-val   { color: #a5d6ff; }
.t-str   { color: #a5d6ff; }
.t-sel   { color: #f47067; }
.t-prop  { color: #79c0ff; }
.t-unit  { color: #ffa657; }
.t-hex   { color: #c9a84c; }
.t-cmt   { color: rgba(255,255,255,0.22); font-style: italic; }
.t-punct { color: rgba(255,255,255,0.42); }
.t-plain { color: rgba(255,255,255,0.72); }

.code-line { display: block; white-space: pre; min-height: 1.75em; }

/* Blinking gold cursor */
.cursor {
  display: inline-block;
  width: 2px; height: 1em;
  background: #c9a84c;
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: cursorBlink 1.1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Hide on mobile */
@media (max-width: 860px) {
  .hero-code-wrap { display: none; }
}


/* Subtle dot-grid background on dark hero */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Override hero section to be taller for the split */
.page-hero-split {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-split-left { position: relative; z-index: 1; }

/* ── Terminal wrapper ── */
.hero-terminal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-terminal-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 28px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
    rgba(201,168,76,0.10) 0%,
    rgba(201,168,76,0.04) 50%,
    transparent 75%
  );
  pointer-events: none;
  animation: termGlow 4s ease-in-out infinite alternate;
}

@keyframes termGlow {
  from { opacity: 0.7; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1.02); }
}

/* ── Terminal window ── */
.terminal {
  width: 100%;
  max-width: 560px;
  background: #0d1117;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,168,76,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
  animation: termFloat 6s ease-in-out infinite;
}

@keyframes termFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.terminal-bar {
  background: #161b22;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dots { display: flex; gap: 7px; }

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dot.red    { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green  { background: #28c840; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-right: 44px;
}

.terminal-tabs {
  background: #0d1117;
  padding: 0 18px;
  display: flex;
  gap: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-tab {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.7rem;
  padding: 8px 16px;
  color: rgba(255,255,255,0.3);
  border-bottom: 2px solid transparent;
  cursor: default;
  letter-spacing: 0.03em;
}
.terminal-tab.active {
  color: rgba(255,255,255,0.85);
  border-bottom-color: var(--dw-amber);
}

.terminal-body {
  padding: 24px 24px 28px;
  min-height: 300px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}

.terminal-lines { display: flex; gap: 20px; }

.line-nums {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 24px;
  user-select: none;
  flex-shrink: 0;
}
.line-num {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
  line-height: 1.7;
  font-family: 'JetBrains Mono', monospace;
}

.code-area { flex: 1; min-width: 0; }

/* Syntax token colors */
.t-tag   { color: #f47067; }
.t-attr  { color: #79c0ff; }
.t-val   { color: #a5d6ff; }
.t-str   { color: #a5d6ff; }
.t-sel   { color: #f47067; }
.t-prop  { color: #79c0ff; }
.t-unit  { color: #ffa657; }
.t-hex   { color: #c9a84c; }
.t-cmt   { color: rgba(255,255,255,0.22); font-style: italic; }
.t-punct { color: rgba(255,255,255,0.45); }
.t-plain { color: rgba(255,255,255,0.75); }

.code-line {
  display: block;
  white-space: pre;
  min-height: 1.7em;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--dw-amber);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: cursorBlink 1.1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.terminal-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  border-radius: 14px;
}

.terminal-status {
  background: #161b22;
  padding: 6px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.terminal-status-left,
.terminal-status-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
}
.status-lang { color: var(--dw-amber); opacity: 0.7; }
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c840;
  display: inline-block;
}

/* Responsive — hide terminal on mobile */
@media (max-width: 900px) {
  .hero-split-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-terminal-wrap { display: none; }
  .page-hero-split { padding: 60px 0; min-height: auto; }
}

/* ════════════════════════════════════════════════
   SEO SERVICE PAGE  — page-seo.php
════════════════════════════════════════════════ */

/* ── Tokens (mirror root) ── */
.seo-hero, .seo-intro-split, .seo-services-section,
.seo-process-section, .seo-results-section, .seo-approach-section {
  --seo-navy:  #0b1622;
  --seo-navy2: #0f1e2e;
  --seo-gold:  #c9a84c;
  --seo-gold2: #e8c96a;
  --seo-cream: #f5f0e8;
  --seo-muted: rgba(255,255,255,0.55);
}

/* ── HERO ── */
.seo-hero {
  min-height: 100vh;
  background: #0b1622;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* account for WP admin bar + nav */
}

.seo-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: seoGridDrift 20s linear infinite;
  pointer-events: none;
}
@keyframes seoGridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.seo-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: seoGlowPulse 5s ease-in-out infinite alternate;
}
@keyframes seoGlowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.15); }
}

.seo-hero-inner {
  display: contents; /* children participate in grid */
}

.seo-hero-left {
  position: relative; z-index: 2;
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; gap: 28px;
}
.seo-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.05;
  color: #ffffff; letter-spacing: -0.02em;
}
.seo-hero-h1 em { font-style: italic; color: #c9a84c; }
.seo-hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 420px;
}
.seo-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.seo-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #c9a84c; color: #0b1622;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.seo-btn-primary:hover {
  background: #e8c96a; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.seo-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 3px;
  transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.seo-btn-ghost:hover { border-color: #c9a84c; color: #c9a84c; }

/* Scroll indicator */
.seo-hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.seo-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: seoScrollDrop 1.8s ease-in-out infinite;
}
@keyframes seoScrollDrop {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

/* ── Hero right — chart area ── */
.seo-hero-right {
  position: relative; z-index: 2;
  padding: 80px 60px 80px 20px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.seo-chart-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em; margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%; max-width: 520px;
}
.seo-chart-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #c9a84c; opacity: 0.7; flex-shrink: 0;
}
.seo-chart-label-name { color: rgba(255,255,255,0.5); }
#seo-chart-container { width: 100%; max-width: 520px; position: relative; }
#seo-chart-container svg { overflow: visible; }
.seo-chart-phase-label {
  position: absolute; top: 12px; right: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Keyword panel */
#seo-kw-panel {
  width: 100%; max-width: 520px; margin-top: 20px;
  opacity: 0; transition: opacity 0.8s ease;
}
#seo-kw-panel.seo-kw-visible { opacity: 1; }
.seo-kw-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 12px;
}
.seo-kw-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.seo-kw-name {
  font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.65);
  width: 190px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.seo-kw-bar-track {
  flex: 1; height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: visible;
}
.seo-kw-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, rgba(201,168,76,0.4), #c9a84c);
  width: 0%; transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.seo-kw-bar-fill::after {
  content: ''; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #c9a84c; box-shadow: 0 0 8px rgba(201,168,76,0.8);
}
.seo-kw-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; font-weight: 500;
  color: #c9a84c; width: 32px; text-align: right; flex-shrink: 0;
  transition: color 0.5s;
}
.seo-kw-top { color: #e8c96a; text-shadow: 0 0 8px rgba(201,168,76,0.6); }

/* ── INTRO SPLIT ── */
.seo-intro-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.seo-intro-img { position: relative; overflow: hidden; }
.seo-intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.seo-intro-img:hover img { transform: scale(1.04); }
.seo-intro-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,22,34,0.3) 0%, transparent 60%);
}
.seo-intro-content {
  background: #f5f0e8; padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.seo-intro-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.2; color: #0b1622;
}
.seo-intro-h2 em { font-style: italic; color: #c9a84c; }
.seo-intro-p { font-size: 0.95rem; line-height: 1.8; color: #4a4a6a; font-weight: 300; }
.seo-intro-stats {
  display: flex; gap: 40px; padding-top: 16px;
  border-top: 1px solid rgba(11,22,34,0.08);
}
.seo-stat-item { display: flex; flex-direction: column; gap: 4px; }
.seo-stat-num {
  font-family: 'Fraunces', serif; font-size: 2rem;
  font-weight: 300; color: #0b1622; line-height: 1;
}
.seo-stat-num span { color: #c9a84c; }
.seo-stat-lbl {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #8888aa;
}

/* ── SERVICES GRID ── */
.seo-services-section {
  background: #0f1e2e; padding: 100px 0;
}
.seo-section-header { text-align: center; margin-bottom: 64px; }
.seo-section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: #ffffff; line-height: 1.15; margin-top: 14px;
}
.seo-section-h2 em { font-style: italic; color: #c9a84c; }
.seo-section-h2-dark { color: #0b1622 !important; }
.seo-section-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.55); font-weight: 300;
  max-width: 560px; margin: 16px auto 0; line-height: 1.7;
}
.seo-section-sub-dark { color: #4a4a6a !important; }
.seo-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.seo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 36px; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.seo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s ease;
}
.seo-card:hover { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.seo-card:hover::before { transform: scaleX(1); }
.seo-card-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.seo-card-icon svg {
  width: 22px; height: 22px; stroke: #c9a84c; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.seo-card-h3 {
  font-family: 'Fraunces', serif; font-size: 1.15rem;
  font-weight: 400; color: #ffffff; margin-bottom: 12px;
}
.seo-card-p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }
.seo-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #c9a84c;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.seo-card:hover .seo-card-arrow { opacity: 1; transform: translateX(0); }

/* ── PROCESS SECTION ── */
.seo-process-section {
  position: relative; padding: 100px 0; overflow: hidden;
}
.seo-process-bg {
  position: absolute; inset: 0;
}
.seo-process-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.18) saturate(0.5);
}
.seo-process-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,22,34,0.85) 0%, rgba(11,22,34,0.6) 100%);
}
.seo-process-content { position: relative; z-index: 2; }
.seo-process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 64px; position: relative;
}
.seo-process-steps::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, #c9a84c, transparent);
  opacity: 0.3;
}
.seo-process-step {
  padding: 0 40px; text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.seo-process-step:nth-child(2) { transition-delay: 0.15s; }
.seo-process-step:nth-child(3) { transition-delay: 0.3s; }
.seo-step-visible { opacity: 1 !important; transform: translateY(0) !important; }
.seo-step-num-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Fraunces', serif; font-size: 1.6rem;
  font-weight: 300; color: #c9a84c;
  position: relative; z-index: 1;
}
.seo-step-h3 {
  font-family: 'Fraunces', serif; font-size: 1.3rem;
  font-weight: 300; color: #ffffff; margin-bottom: 14px;
}
.seo-step-p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ── RESULTS SECTION ── */
.seo-results-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.seo-results-img { position: relative; overflow: hidden; }
.seo-results-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}
.seo-results-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, #f5f0e8 100%);
}
.seo-results-badge {
  position: absolute; bottom: 40px; left: 40px;
  background: #c9a84c; color: #0b1622;
  padding: 16px 24px; border-radius: 4px;
  font-family: 'Fraunces', serif;
}
.seo-badge-num { font-size: 2rem; font-weight: 300; line-height: 1; }
.seo-badge-lbl {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 4px;
}
.seo-results-content {
  background: #f5f0e8; padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.seo-quote-stars { display: flex; gap: 4px; }
.seo-star {
  width: 16px; height: 16px;
  background: #c9a84c;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.seo-quote-text {
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  font-weight: 300; font-style: italic; line-height: 1.65;
  color: #0b1622; position: relative; padding-left: 24px;
}
.seo-quote-text::before {
  content: '"'; position: absolute; left: 0; top: -8px;
  font-size: 3rem; color: #c9a84c; opacity: 0.4;
  font-family: 'Fraunces', serif; line-height: 1;
}
.seo-quote-attr { display: flex; flex-direction: column; gap: 4px; }
.seo-quote-name { font-size: 0.85rem; font-weight: 600; color: #0b1622; }
.seo-quote-co { font-size: 0.75rem; color: #8888aa; font-weight: 400; }
.seo-quote-link { color: #c9a84c; font-size: 0.72rem; text-decoration: none; }

/* ── APPROACH ── */
.seo-approach-section {
  background: #ede8df; padding: 100px 0;
}
.seo-approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px;
}
.seo-approach-card {
  background: #f5f0e8; padding: 48px 40px;
  border: 1px solid rgba(11,22,34,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.seo-approach-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,22,34,0.1); }
.seo-approach-num {
  font-family: 'Fraunces', serif; font-size: 3rem;
  font-weight: 300; color: #c9a84c; opacity: 0.3;
  line-height: 1; margin-bottom: 20px;
}
.seo-approach-divider {
  width: 32px; height: 2px; background: #c9a84c;
  margin: 20px 0; opacity: 0.5;
}
.seo-approach-h3 {
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  font-weight: 400; color: #0b1622; margin-bottom: 12px;
}
.seo-approach-p { font-size: 0.85rem; line-height: 1.75; color: #4a4a6a; font-weight: 300; }

/* ── Marquee override for SEO page ── */
.seo-marquee-band { background: #c9a84c; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .seo-hero { grid-template-columns: 1fr; }
  .seo-hero-right { display: none; }
  .seo-hero-left { padding: 60px 40px; }
  .seo-intro-split { grid-template-columns: 1fr; }
  .seo-intro-img { min-height: 300px; }
  .seo-intro-content { padding: 60px 40px; }
  .seo-cards-grid { grid-template-columns: 1fr 1fr; }
  .seo-process-steps { grid-template-columns: 1fr; gap: 48px; }
  .seo-process-steps::before { display: none; }
  .seo-results-section { grid-template-columns: 1fr; }
  .seo-results-img { min-height: 300px; }
  .seo-results-content { padding: 60px 40px; }
  .seo-approach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .seo-cards-grid { grid-template-columns: 1fr; }
  .seo-hero-h1 { font-size: 2.8rem; }
  .seo-intro-stats { flex-direction: column; gap: 20px; }
}

/* ════════════════════════════════════════════════
   SOCIAL MEDIA SERVICE PAGE — page-social-media.php
════════════════════════════════════════════════ */

/* ── HERO ── */
.sm-hero {
  min-height: 100vh;
  background: #0b1622;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.sm-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: seoGridDrift 20s linear infinite;
  pointer-events: none;
}
.sm-hero-glow {
  position: absolute; top: -80px; right: -80px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: seoGlowPulse 5s ease-in-out infinite alternate;
}
.sm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 80px);
}
.sm-hero-left {
  position: relative; z-index: 2;
  padding: 80px 60px 80px 0;
  display: flex; flex-direction: column; gap: 28px;
}
.sm-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.05;
  color: #ffffff; letter-spacing: -0.02em;
}
.sm-hero-h1 em { font-style: italic; color: #c9a84c; }
.sm-hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 420px;
}
.sm-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.sm-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #c9a84c; color: #0b1622;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.sm-btn-primary:hover { background: #e8c96a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.sm-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 3px;
  transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.sm-btn-ghost:hover { border-color: #c9a84c; color: #c9a84c; }

/* ── Hero Right: Feed ── */
.sm-hero-right {
  position: relative; z-index: 2;
  padding: 60px 0 60px 40px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.sm-feed-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 360px; margin-bottom: 4px;
}
.sm-feed-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.sm-feed-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #c9a84c; opacity: 0.7;
  animation: smBlink 1.4s ease-in-out infinite;
}
@keyframes smBlink { 0%,100%{opacity:0.7;} 50%{opacity:0.2;} }
.sm-feed-live {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #e1306c;
  display: flex; align-items: center; gap: 5px;
}
.sm-feed-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #e1306c; animation: smBlink 1s ease-in-out infinite;
}

/* Feed stack */
.sm-feed-stack {
  position: relative; width: 100%; max-width: 360px; height: 420px;
}
.sm-post-card {
  position: absolute; top: 0; left: 0; right: 0;
  background: #0f1e2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 16px;
  opacity: 0; transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}
.sm-post-card.sm-card-active {
  opacity: 1; transform: translateY(0) scale(1); z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.sm-post-card.sm-card-prev {
  opacity: 0.3; transform: translateY(-12px) scale(0.97); pointer-events: none; z-index: 2;
}
.sm-post-card.sm-card-prev2 {
  opacity: 0.1; transform: translateY(-22px) scale(0.94); pointer-events: none; z-index: 1;
}
.sm-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sm-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.sm-card-meta { flex: 1; }
.sm-card-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.2; }
.sm-card-handle { font-size: 0.68rem; color: rgba(255,255,255,0.35); }
.sm-card-platform {
  width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sm-card-platform svg { width: 14px; height: 14px; fill: #fff; }
.sm-card-img { width: 100%; height: 140px; border-radius: 8px; margin-bottom: 12px; overflow: hidden; position: relative; }
.sm-card-img-inner { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.sm-post-card.sm-card-active .sm-card-img-inner { transform: scale(1.04); }
.sm-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%); }
.sm-card-caption { font-size: 0.78rem; line-height: 1.55; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.sm-card-caption strong { color: #c9a84c; font-weight: 500; }
.sm-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.sm-card-tag { font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.sm-card-footer {
  display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px;
}
.sm-card-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.sm-card-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1;
}
.sm-card-stat-lbl { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.sm-card-stat-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.06); }
.sm-reach-bar-wrap { margin-top: 14px; }
.sm-reach-label { display: flex; justify-content: space-between; margin-bottom: 6px; }
.sm-reach-label span { font-size: 0.62rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.sm-reach-label strong { font-size: 0.62rem; color: #c9a84c; font-family: 'JetBrains Mono', monospace; }
.sm-reach-track { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.sm-reach-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, rgba(201,168,76,0.5), #c9a84c);
  width: 0%; transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}
.sm-post-card.sm-card-active .sm-reach-fill { width: var(--sm-reach-pct, 70%); }

/* Platform indicator dots */
.sm-feed-dots { display: flex; gap: 6px; align-items: center; margin-top: 4px; }
.sm-feed-dot-item {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s, transform 0.3s;
}
.sm-feed-dot-item.active { transform: scale(1.4); }

/* ── INTRO SPLIT ── */
.sm-intro-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.sm-intro-img { position: relative; overflow: hidden; }
.sm-intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.sm-intro-img:hover img { transform: scale(1.04); }
.sm-intro-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,22,34,0.3) 0%, transparent 60%); }
.sm-intro-content { background: #f5f0e8; padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.sm-intro-h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 300; line-height: 1.2; color: #0b1622; }
.sm-intro-h2 em { font-style: italic; color: #c9a84c; }
.sm-intro-p { font-size: 0.95rem; line-height: 1.8; color: #4a4a6a; font-weight: 300; }
.sm-intro-stats { display: flex; gap: 40px; padding-top: 16px; border-top: 1px solid rgba(11,22,34,0.08); }
.sm-stat-item { display: flex; flex-direction: column; gap: 4px; }
.sm-stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 300; color: #0b1622; line-height: 1; }
.sm-stat-num span { color: #c9a84c; }
.sm-stat-lbl { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #8888aa; }

/* ── PLATFORM STRIP ── */
.sm-platform-strip {
  background: #0f1e2e; padding: 32px 80px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sm-platform-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; position: relative; transition: transform 0.3s;
}
.sm-platform-item:hover { transform: translateY(-4px); }
.sm-platform-item + .sm-platform-item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.06);
}
.sm-platform-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sm-platform-icon svg { width: 22px; height: 22px; fill: #fff; }
.sm-platform-name { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.sm-platform-reach { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: #c9a84c; }

/* ── SERVICES GRID ── */
.sm-services-section { background: #0f1e2e; padding: 100px 0; }
.sm-section-header { text-align: center; margin-bottom: 64px; }
.sm-section-h2 { font-family: 'Fraunces', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; color: #fff; line-height: 1.15; margin-top: 14px; }
.sm-section-h2 em { font-style: italic; color: #c9a84c; }
.sm-section-h2-dark { color: #0b1622 !important; }
.sm-section-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 560px; margin: 16px auto 0; line-height: 1.7; }
.sm-section-sub-dark { color: #4a4a6a !important; }
.sm-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.sm-svc-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 36px; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s; cursor: default;
}
.sm-svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  transform: scaleX(0); transform-origin: center; transition: transform 0.4s ease;
}
.sm-svc-card:hover { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.sm-svc-card:hover::before { transform: scaleX(1); }
.sm-card-icon { width: 48px; height: 48px; margin-bottom: 20px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sm-card-icon svg { width: 22px; height: 22px; stroke: #c9a84c; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sm-card-h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 400; color: #fff; margin-bottom: 12px; }
.sm-card-p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }
.sm-card-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #c9a84c; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s; }
.sm-svc-card:hover .sm-card-arrow { opacity: 1; transform: translateX(0); }

/* ── PROCESS ── */
.sm-process-section { position: relative; padding: 100px 0; overflow: hidden; }
.sm-process-bg { position: absolute; inset: 0; }
.sm-process-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15) saturate(0.4); }
.sm-process-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,22,34,0.88) 0%, rgba(11,22,34,0.65) 100%); }
.sm-process-content { position: relative; z-index: 2; }
.sm-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 64px; position: relative; }
.sm-process-steps::before {
  content: ''; position: absolute; top: 36px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px; background: linear-gradient(90deg, transparent, #c9a84c, #c9a84c, transparent); opacity: 0.25;
}
.sm-process-step { padding: 0 28px; text-align: center; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sm-process-step:nth-child(2) { transition-delay: 0.12s; }
.sm-process-step:nth-child(3) { transition-delay: 0.24s; }
.sm-process-step:nth-child(4) { transition-delay: 0.36s; }
.sm-step-visible { opacity: 1 !important; transform: translateY(0) !important; }
.sm-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4); background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 300; color: #c9a84c;
  position: relative; z-index: 1;
}
.sm-step-h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 300; color: #fff; margin-bottom: 12px; }
.sm-step-p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ── MARQUEE override ── */
.sm-marquee-gold { background: #c9a84c !important; }

/* ── RESULTS ── */
.sm-results-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.sm-results-img { position: relative; overflow: hidden; }
.sm-results-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.85); }
.sm-results-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, #f5f0e8 100%); }
.sm-results-content { background: #f5f0e8; padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.sm-quote-stars { display: flex; gap: 4px; }
.sm-star { width: 16px; height: 16px; background: #c9a84c; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.sm-quote-text { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 300; font-style: italic; line-height: 1.65; color: #0b1622; position: relative; padding-left: 24px; }
.sm-quote-text::before { content: '"'; position: absolute; left: 0; top: -8px; font-size: 3rem; color: #c9a84c; opacity: 0.4; font-family: 'Fraunces', serif; line-height: 1; }
.sm-quote-attr { display: flex; flex-direction: column; gap: 4px; }
.sm-quote-name { font-size: 0.85rem; font-weight: 600; color: #0b1622; }
.sm-quote-co { font-size: 0.75rem; color: #8888aa; }
.sm-quote-link { color: #c9a84c; font-size: 0.72rem; text-decoration: none; }

/* ── APPROACH ── */
.sm-approach-section { background: #ede8df; padding: 100px 0; }
.sm-approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 64px; }
.sm-approach-card { background: #f5f0e8; padding: 48px 40px; border: 1px solid rgba(11,22,34,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.sm-approach-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(11,22,34,0.1); }
.sm-approach-num { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 300; color: #c9a84c; opacity: 0.3; line-height: 1; margin-bottom: 20px; }
.sm-approach-divider { width: 32px; height: 2px; background: #c9a84c; margin: 20px 0; opacity: 0.5; }
.sm-approach-h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 400; color: #0b1622; margin-bottom: 12px; }
.sm-approach-p { font-size: 0.85rem; line-height: 1.75; color: #4a4a6a; font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sm-hero-inner { grid-template-columns: 1fr; }
  .sm-hero-right { display: none; }
  .sm-hero-left { padding: 60px 0; }
  .sm-intro-split { grid-template-columns: 1fr; }
  .sm-intro-img { min-height: 300px; }
  .sm-intro-content { padding: 60px 40px; }
  .sm-platform-strip { flex-wrap: wrap; padding: 24px 40px; }
  .sm-cards-grid { grid-template-columns: 1fr 1fr; }
  .sm-process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .sm-process-steps::before { display: none; }
  .sm-results-section { grid-template-columns: 1fr; }
  .sm-results-img { min-height: 300px; }
  .sm-results-content { padding: 60px 40px; }
  .sm-approach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sm-cards-grid { grid-template-columns: 1fr; }
  .sm-process-steps { grid-template-columns: 1fr; }
  .sm-hero-h1 { font-size: 2.8rem; }
  .sm-intro-stats { flex-direction: column; gap: 20px; }
}

/* ════════════════════════════════════════════════
   ABOUT US PAGE — page-about.php
════════════════════════════════════════════════ */

/* ── HERO ── */
.au-hero {
  background: #1C2B3A;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.au-hero-texture {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 28px, rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 29px);
}
.au-hero-glow {
  position: absolute; top: 30%; right: -100px; width: 600px; height: 600px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(201,123,42,0.07) 0%, transparent 65%);
}
.au-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px;
  padding-top: 80px; padding-bottom: 90px;
}
.au-hero-left { max-width: 580px; }
.au-hero-h1 {
  font-family: 'Fraunces', serif; font-size: clamp(44px, 5vw, 78px);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.022em;
  color: #fff; margin-bottom: 24px;
}
.au-hero-h1 em { font-style: italic; color: #E4A96A; }
.au-hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: #6B7E8F; max-width: 520px; margin-bottom: 40px;
}
.au-hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.au-btn-primary {
  display: inline-block; background: #C97B2A; color: #fff;
  padding: 16px 32px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; border-radius: 3px;
  transition: background 0.3s, transform 0.25s; text-decoration: none; white-space: nowrap;
}
.au-btn-primary:hover { background: #b06e24; transform: translateY(-2px); }
.au-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none; transition: color 0.2s;
}
.au-btn-ghost:hover { color: #E4A96A; }
.au-btn-ghost svg { transition: transform 0.25s; }
.au-btn-ghost:hover svg { transform: translateX(5px); }

/* Stat cards */
.au-hero-right { display: flex; align-items: center; justify-content: center; }
.au-hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 520px; }
.au-stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 20px 24px; display: flex; align-items: center; gap: 16px;
}
.au-card-wide { grid-column: 1 / -1; }
@keyframes auHeroFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.au-card-float { animation: auHeroFloat 6s ease-in-out infinite; }
.au-stat-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 4px;
  background: rgba(201,123,42,0.12); border: 1px solid rgba(201,123,42,0.25);
  display: flex; align-items: center; justify-content: center; color: #E4A96A;
}
.au-stat-num { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 300; color: #fff; line-height: 1; }
.au-stat-sup { font-size: 18px; }
.au-stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #6B7E8F; margin-top: 4px;
}

/* ── OUR STORY ── */
.au-story { background: #EAE6DE; overflow: hidden; }
.au-story-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.au-story-img { position: relative; overflow: hidden; min-height: 500px; }
.au-story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s; }
.au-story-img:hover img { transform: scale(1.04); }
.au-story-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,43,58,0.12) 0%, transparent 60%); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.88s cubic-bezier(0.16,1,0.3,1), transform 0.88s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.88s cubic-bezier(0.16,1,0.3,1), transform 0.88s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }
.au-story-copy { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.au-story-heading {
  font-family: 'Fraunces', serif; font-size: clamp(1.8rem,2.6vw,2.6rem);
  font-weight: 300; line-height: 1.12; letter-spacing: -0.018em;
  color: #1C2B3A; margin-bottom: 24px;
}
.au-story-heading em { font-style: italic; color: #C97B2A; }
.au-story-body { font-size: 15px; line-height: 1.82; color: #635E59; margin-bottom: 18px; }
.au-story-stats {
  display: flex; gap: 40px; margin-top: 36px;
  padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.07);
}
.au-story-stat { display: flex; flex-direction: column; gap: 4px; }
.au-story-stat-num {
  font-family: 'Fraunces', serif; font-size: clamp(28px,2.8vw,40px);
  font-weight: 300; color: #1C2B3A; line-height: 1; letter-spacing: -0.02em;
}
.au-story-stat-num span { font-size: 0.55em; color: #C97B2A; }
.au-story-stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #8A8279;
}

/* ── DIFFERENCE ── */
.au-diff {
  background: #1C2B3A; padding: 110px 0 120px;
  position: relative; overflow: hidden;
}
.au-diff::before {
  content: attr(data-wm); position: absolute; top: -40px; left: -16px;
  font-family: 'Fraunces', serif; font-size: 240px; font-weight: 300;
  color: rgba(255,255,255,0.022); letter-spacing: -0.06em;
  pointer-events: none; line-height: 1; user-select: none;
}
.au-diff::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(201,123,42,0.09) 0%, transparent 65%);
}
.au-diff-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 28px, rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 29px);
}
.au-diff-wrap { position: relative; z-index: 1; }
.au-diff-head { margin-bottom: 64px; }
.au-diff-heading {
  font-family: 'Fraunces', serif; font-size: clamp(2rem,3.8vw,3rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.022em;
  color: #fff; max-width: 640px;
}
.au-diff-heading em { color: #E4A96A; font-style: italic; }
.au-diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.au-diff-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 36px 30px 52px; position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.au-diff-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,123,42,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.au-diff-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); }
.au-diff-card:hover::before { opacity: 1; }
.au-diff-card-icon {
  width: 52px; height: 52px; border-radius: 4px; margin-bottom: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #E4A96A;
  transition: background 0.4s, border-color 0.4s;
}
.au-diff-card:hover .au-diff-card-icon { background: rgba(201,168,76,0.18); border-color: rgba(201,168,76,0.4); }
.au-diff-card h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 300; color: #fff; margin-bottom: 12px; line-height: 1.25; }
.au-diff-card p { font-size: 13px; line-height: 1.78; color: #6B7E8F; font-weight: 300; }
.au-diff-arrow {
  position: absolute; bottom: 28px; right: 28px; color: #E4A96A;
  opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s;
}
.au-diff-card:hover .au-diff-arrow { opacity: 1; transform: translateX(0); }

/* ── FOUNDER ── */
.au-founder { background: #F5F3EE; padding: 120px 0; }
.au-founder-grid {
  display: grid; grid-template-columns: 420px 1fr; gap: 100px; align-items: center;
}
.au-founder-photo-wrap { position: relative; flex-shrink: 0; }
.au-founder-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  background: linear-gradient(155deg, #cdc8c2, #b5afa8);
}
.au-founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.au-founder-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.au-founder-ph svg { opacity: 0.38; }
.au-founder-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: #C97B2A; color: #fff; padding: 20px 24px; border-radius: 3px;
  box-shadow: 0 16px 44px rgba(201,123,42,0.38);
}
.au-founder-badge strong { display: block; font-family: 'Fraunces', serif; font-size: 34px; font-weight: 300; line-height: 1; }
.au-founder-badge strong span { font-size: 0.55em; }
.au-founder-badge > span { font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }
.au-founder-heading {
  font-family: 'Fraunces', serif; font-size: clamp(36px,3.1vw,54px);
  font-weight: 300; line-height: 1.12; color: #1C2B3A; margin-bottom: 24px; letter-spacing: -0.022em;
}
.au-founder-heading em { font-style: italic; color: #C97B2A; }
.au-founder-body { font-size: 15px; font-weight: 300; line-height: 1.88; color: #635E59; margin-bottom: 18px; }
.au-founder-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; margin-bottom: 32px; }
.au-cred-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #EAE6DE; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px; padding: 8px 16px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: #635E59;
}
.au-cred-pill svg { color: #C97B2A; flex-shrink: 0; }
.au-founder-sig { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.07); }
.au-founder-sig-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; color: #1C2B3A; line-height: 1.2; }
.au-founder-sig-title { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #8A8279; margin-top: 5px; }

/* ── TESTIMONIALS ── */
.au-testi-section { background: #EAE6DE; padding: 120px 0; }
.au-testi-head { text-align: center; margin-bottom: 64px; }
.au-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.au-testi-card {
  background: #fff; border-radius: 3px; padding: 44px 40px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transition: transform 0.4s, box-shadow 0.4s;
}
.au-testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.13); }
.au-testi-stars { display: flex; gap: 4px; margin-bottom: 22px; }
.au-testi-star { width: 13px; height: 13px; fill: #C97B2A; flex-shrink: 0; }
.au-testi-quote {
  font-size: 15px; font-weight: 300; line-height: 1.88;
  color: #635E59; font-style: italic; margin-bottom: 30px;
}
.au-testi-quote::before { content: '\201C'; }
.au-testi-quote::after  { content: '\201D'; }
.au-testi-author {
  display: flex; align-items: center; gap: 13px;
  border-top: 1px solid #EAE6DE; padding-top: 20px;
}
.au-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: #EAE6DE; display: flex; align-items: center; justify-content: center; color: #8A8279;
}
.au-testi-name { font-size: 13px; font-weight: 600; color: #1C2B3A; letter-spacing: 0.02em; }
.au-testi-co   { font-size: 11px; color: #8A8279; margin-top: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .au-hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .au-hero-right { display: none; }
  .au-story-inner { grid-template-columns: 1fr; }
  .au-story-img { height: 380px; }
  .au-story-copy { padding: 60px 32px; }
  .au-diff-grid { grid-template-columns: repeat(2,1fr); }
  .au-diff-head { flex-direction: column; }
  .au-founder-grid { grid-template-columns: 1fr; gap: 56px; }
  .au-founder-photo-wrap { max-width: 380px; }
  .au-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .au-diff-grid { grid-template-columns: 1fr; }
  .au-testi-grid { grid-template-columns: 1fr; }
  .au-story-stats { gap: 28px; flex-wrap: wrap; }
  .au-hero-h1 { font-size: 2.8rem; }
}
