:root {
    --brand-primary: #1f4d3a;
    --brand-primary-dark: #16392b;
    --brand-secondary: #c9a227;
    --brand-light: #f7f6f1;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border-soft: rgba(31, 77, 58, 0.1);
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  /* ── Section wrapper ── */
  .skcc-section {
    background-color: var(--brand-light);
    padding: 96px 0 80px;
    overflow: hidden;
  }

  /* ── Section eyebrow ── */
  .skcc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    margin-bottom: 16px;
  }
  .skcc-eyebrow::before,
  .skcc-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--brand-secondary);
    border-radius: 2px;
  }

  .skcc-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.2;
    margin-bottom: 0;
  }

  .skcc-subheading {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.75;
  }

  /* ── Gold divider ── */
  .skcc-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-secondary), transparent);
    border-radius: 4px;
    margin: 20px 0 28px;
  }

  /* ── Stat pills ── */
  .skcc-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }
  .skcc-stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .skcc-stat-pill .skcc-pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-secondary);
    font-size: 0.85rem;
  }
  .skcc-stat-pill .skcc-pill-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
  }
  .skcc-stat-pill .skcc-pill-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ── Building visual card ── */
  .skcc-building-card {
    background: var(--brand-primary);
    border-radius: 20px;
    padding: 32px 28px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  .skcc-building-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
  }
  .skcc-building-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .skcc-building-icon {
    font-size: 3rem;
    color: var(--brand-secondary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .skcc-building-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }
  .skcc-building-sub {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .skcc-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .skcc-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    opacity: 0.85;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .skcc-info-list li:last-child { border-bottom: none; }
  .skcc-info-list li i {
    color: var(--brand-secondary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.8rem;
  }
  .skcc-inaug-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.76rem;
    color: var(--brand-secondary);
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }

  /* ── Floor directory table ── */
  .skcc-dir-section {
    background: var(--white);
    padding: 80px 0 96px;
  }

  .skcc-table-wrap {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
  }

  .skcc-floor-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
  }

  .skcc-floor-table thead tr {
    background: var(--brand-primary);
    color: var(--white);
  }
  .skcc-floor-table thead th {
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
  }
  .skcc-floor-table thead th:first-child { width: 180px; }

  .skcc-floor-table tbody tr {
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.2s ease;
  }
  .skcc-floor-table tbody tr:last-child { border-bottom: none; }
  .skcc-floor-table tbody tr:hover {
    background: rgba(31, 77, 58, 0.03);
  }
  .skcc-floor-table tbody tr:nth-child(even) {
    background: rgba(247, 246, 241, 0.6);
  }
  .skcc-floor-table tbody tr:nth-child(even):hover {
    background: rgba(31, 77, 58, 0.05);
  }

  .skcc-floor-table td {
    padding: 16px 24px;
    font-size: 0.875rem;
    color: var(--text-dark);
    vertical-align: top;
    border: none;
  }

  /* Floor badge */
  .skcc-floor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .skcc-badge-basement { background: rgba(31,77,58,0.1); color: var(--brand-primary); }
  .skcc-badge-ground   { background: rgba(201,162,39,0.15); color: #9a7a18; }
  .skcc-badge-first    { background: rgba(31,77,58,0.08); color: var(--brand-primary); }
  .skcc-badge-second   { background: rgba(201,162,39,0.12); color: #9a7a18; }
  .skcc-badge-third    { background: rgba(31,77,58,0.08); color: var(--brand-primary); }
  .skcc-badge-fourth   { background: rgba(201,162,39,0.12); color: #9a7a18; }
  .skcc-badge-fifth    { background: rgba(107,114,128,0.12); color: var(--text-muted); }
  .skcc-badge-upper    { background: rgba(31,77,58,0.1); color: var(--brand-primary); }
  .skcc-badge-roof     { background: rgba(201,162,39,0.2); color: #9a7a18; }

  /* Tenant tags */
  .skcc-tenant-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .skcc-tenant-list li {
    background: var(--brand-light);
    border: 1px solid var(--border-soft);
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 14px;
    color: var(--text-dark);
    white-space: nowrap;
  }

  /* Vacant badge */
  .skcc-vacant {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
  }
  .skcc-vacant::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    display: inline-block;
  }

  /* ── Address card ── */
  .skcc-address-card {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-radius: 16px;
    padding: 36px 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
  }
  .skcc-address-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(201,162,39,0.08);
  }
  .skcc-address-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(201,162,39,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .skcc-address-icon-wrap i {
    font-size: 1.6rem;
    color: var(--brand-secondary);
  }
  .skcc-address-body {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
  }
  .skcc-address-body h6 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    margin-bottom: 6px;
    font-weight: 700;
  }
  .skcc-address-body p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    opacity: 0.92;
  }

  /* ── Scroll-in animation ── */
  .skcc-reveal {
    opacity: 1;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .skcc-reveal.skcc-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .skcc-reveal { opacity: 1; transform: none; }
  }

  /* ── Mobile ── */
  @media (max-width: 767px) {
    .skcc-section { padding: 64px 0 56px; }
    .skcc-dir-section { padding: 56px 0 72px; }
    .skcc-floor-table thead th,
    .skcc-floor-table tbody td { padding: 12px 14px; }
    .skcc-address-card { padding: 24px; gap: 20px; }
    .skcc-stats-row { gap: 8px; }
    .skcc-floor-table { font-size: 0.82rem; }
    .skcc-tenant-list li { font-size: 0.7rem; }
  }