/*
Theme Name: DSC Ventures Group
Theme URI: https://dscventuresgroup.com
Author: DSC Ventures Group
Author URI: https://dscventuresgroup.com
Description: A premium consulting firm theme for DSC Ventures Group with editorial luxury aesthetic - dark backgrounds, sovereign gold accents, asymmetric layouts, and contextual SVG graphics designed for B2B service businesses. Includes Customizer support for all copy, contact info, and social links.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dsc-ventures
Tags: business, dark, custom-colors, custom-menu, custom-logo, featured-images, theme-options
*/

  :root {
    --black: #0a0a0a;
    --off-black: #141414;
    --charcoal: #1f1f1f;
    --gold: #A67C2E;
    --gold-bright: #C99A4A;
    --gold-deep: #7a5a20;
    --cream: #f5f1e8;
    --paper: #ede6d3;
    --rule: rgba(166, 124, 46, 0.25);
    --rule-strong: rgba(166, 124, 46, 0.5);
    --text-muted: rgba(245, 241, 232, 0.55);
    --text-soft: rgba(245, 241, 232, 0.78);
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Inter Tight', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ===== NAV ===== */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
  }

a.logo,
  a.logo:link,
  a.logo:visited,
  a.logo:hover,
  a.logo:active {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .logo:hover .logo-mark {
    transform: scale(1.08);
  }

 .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--cream);
  }
  .logo-text .sub {
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a:hover { color: var(--gold-bright); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold-bright) !important;
    transition: all 0.3s;
  }
  .nav-cta:hover {
    background: var(--gold);
    color: var(--black) !important;
  }
  .nav-cta::after { display: none; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    padding: 9rem 3rem 4rem;
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 124, 46, 0.18) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
  }

  /* Topographic background motif — drone/inspection reference */
  .hero-topo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
  }

  /* Blueprint grid corner accent */
  .blueprint-corner {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
  }
  .blueprint-corner.top-left { top: 6rem; left: 2rem; }
  .blueprint-corner.bottom-right {
    bottom: 2rem;
    right: 2rem;
    transform: rotate(180deg);
  }

  /* Circuit trace background */
  .circuit-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
  }

  /* Radar/scan rings */
  .radar-rings {
    position: absolute;
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: 0.25;
    z-index: 0;
  }

  /* Hexagonal architecture grid */
  .hex-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
  }

  .hero-content { position: relative; z-index: 2; }

  .eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    color: var(--cream);
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 400;
  }

  .hero-desc {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 540px;
    margin-bottom: 2.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
    font-weight: 300;
  }

  .hero-ctas {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-primary {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--gold-bright);
  }
  .btn-primary span { transition: transform 0.3s; }
  .btn-primary:hover span { transform: translateX(4px); }

  .btn-ghost {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
    transition: all 0.3s;
  }
  .btn-ghost:hover {
    color: var(--gold-bright);
    border-bottom-color: var(--gold);
  }

  /* Hero side panel */
  .hero-visual {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards;
  }

  .hero-panel {
    border: 1px solid var(--rule);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(31, 31, 31, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
  }

  .hero-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 1.5rem;
  }
  .hero-panel-header .label {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .hero-panel-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-services {
    display: flex;
    flex-direction: column;
  }

  .hero-service {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--cream);
  }
  .hero-service:last-child { border-bottom: none; }
  .hero-service:hover {
    padding-left: 0.75rem;
    color: var(--gold-bright);
  }

  /* Offset for fixed nav when jumping to anchors */
  .sub-card[id] {
    scroll-margin-top: 100px;
  }

  .hero-service-name {
    font-family: var(--serif);
    font-size: 1.15rem;
  }
  .hero-service-num {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
  }

  /* ===== MARQUEE ===== */
  .marquee {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    background: var(--off-black);
  }

  .marquee-track {
    display: flex;
    gap: 4rem;
    animation: scroll 50s linear infinite;
    white-space: nowrap;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-muted);
  }
  .marquee-track span {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .marquee-track span::after {
    content: '✦';
    color: var(--gold);
    font-style: normal;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== APPROACH ===== */
  .approach {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    overflow: hidden;
  }
  .approach > .approach-left,
  .approach > .approach-right { position: relative; z-index: 1; }

  .section-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-label .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
  }

  .approach-left h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    position: sticky;
    top: 8rem;
  }
  .approach-left h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }

  .approach-right {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-soft);
    font-weight: 300;
  }
  .approach-right p { margin-bottom: 1.5rem; }
  .approach-right p:first-child::first-letter {
    font-family: var(--serif);
    font-size: 4.5rem;
    line-height: 0.85;
    float: left;
    padding: 0.4rem 0.75rem 0 0;
    color: var(--gold);
    font-weight: 500;
  }

  .principles {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .principle {
    padding: 2rem 1.5rem 0 0;
    border-right: 1px solid var(--rule);
  }
  .principle:last-child { border-right: none; padding-right: 0; }
  .principle:not(:first-child) { padding-left: 1.5rem; }

  .principle-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
  }
  .principle h4 {
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--cream);
  }
  .principle p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }

  /* ===== SUBSIDIARIES ===== */
  .subs {
    padding: 8rem 0 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--off-black) 100%);
    border-top: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .subs-header, .subs > div:not(.radar-rings) { position: relative; z-index: 1; }

  .subs-header {
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
  }
  .subs-header h2 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    flex: 1;
  }
  .subs-header h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .subs-intro {
    max-width: 400px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 0.75rem;
  }

  .sub-card {
    padding: 4.5rem 3rem;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 80px 1.3fr 1.5fr 0.8fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
    cursor: pointer;
  }
  .sub-card:last-child { border-bottom: 1px solid var(--rule); }
  .sub-card:hover { background: rgba(166, 124, 46, 0.04); }

  /* Make card children sit above the background SVG */
  .sub-card > .sub-number,
  .sub-card > .sub-name,
  .sub-card > .sub-desc,
  .sub-card > .sub-meta { position: relative; z-index: 1; }

  /* Background motifs for each solution card */
  .sub-card-bg {
    position: absolute;
    /* Position behind the name column: 80px (number col) + 3rem (gap) + ~half of name col */
    left: calc(80px + 3rem + 6rem);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .sub-card:hover .sub-card-bg {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .sub-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.6s ease;
  }
  .sub-card:hover::before { width: 100%; }

  .sub-number {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
  }

  .sub-name { transition: transform 0.4s ease; }
  .sub-card:hover .sub-name { transform: translateX(8px); }

  .sub-name .abbr {
    display: block;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.85rem;
    text-transform: uppercase;
  }
  .sub-name .name-line {
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.05;
    color: var(--cream);
    font-weight: 400;
    display: block;
  }
  .sub-name em {
    display: block;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-bright);
    margin-top: 0.75rem;
    font-family: var(--serif);
  }

  .sub-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
  }
  .sub-desc-list {
    margin-top: 1.25rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sub-desc-list li {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--rule);
  }

  .sub-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .sub-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--rule);
  }
  .sub-meta-row span:first-child { color: var(--text-muted); }
  .sub-meta-row span:last-child { color: var(--gold-bright); font-size: 0.78rem; }

  /* ===== ABOUT DSC ===== */
  .about {
    padding: 8rem 0;
    background: var(--off-black);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }

  .about::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(166, 124, 46, 0.1) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
  }

  .about-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
  }

  .about-header {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: end;
  }

  .about-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
  }
  .about-header h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }

  .about-lede {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--gold-bright);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
  }

  .about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
  }

  .about-col h3 {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
  }

  .about-col p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 1.25rem;
    font-weight: 300;
  }

  .about-col p:first-of-type::first-letter {
    font-family: var(--serif);
    font-size: 4rem;
    line-height: 0.85;
    float: left;
    padding: 0.35rem 0.75rem 0 0;
    color: var(--gold);
    font-weight: 500;
  }

  .about-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .signature-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--gold-bright);
    font-weight: 500;
    line-height: 1;
  }

  .signature-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .signature-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--cream);
  }

  .signature-title {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* Follow Me block */
  .follow {
    border-top: 1px solid var(--rule);
    padding-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
  }

  .follow-left h3 {
    font-family: var(--serif);
    font-size: 2.5rem;
    line-height: 1.05;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
  }
  .follow-left h3 em {
    font-style: italic;
    color: var(--gold-bright);
  }

  .follow-left .follow-tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: block;
  }

  .follow-left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 300;
  }

  .follow-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .follow-link {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--cream);
    transition: padding 0.4s ease, color 0.3s ease;
  }
  .follow-link:first-child { border-top: 1px solid var(--rule); }
  .follow-link:hover {
    padding-left: 1.25rem;
    color: var(--gold-bright);
  }

  .follow-link-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
    flex-shrink: 0;
  }
  .follow-link:hover .follow-link-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .follow-link-info {
    flex: 1;
    padding: 0 1.5rem;
  }

  .follow-link-platform {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
  }

  .follow-link-handle {
    font-family: var(--serif);
    font-size: 1.2rem;
  }

  .follow-link-arrow {
    font-family: var(--mono);
    color: var(--gold);
    font-size: 0.9rem;
    transition: transform 0.3s;
  }
  .follow-link:hover .follow-link-arrow { transform: translate(4px, -4px); }

  /* ===== INDUSTRIES ===== */
  .industries {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .industries > .ind-header,
  .industries > .ind-grid { position: relative; z-index: 1; }

  .ind-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
  }
  .ind-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    flex: 1;
  }
  .ind-header h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .ind-header p {
    max-width: 400px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 0.5rem;
  }

  .ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }

  .ind-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transition: background 0.4s, transform 0.4s;
    position: relative;
  }
  .ind-card:hover { background: rgba(166, 124, 46, 0.05); }
  .ind-card:hover .ind-icon { color: var(--gold-bright); transform: scale(1.1); }

  .ind-icon {
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: all 0.4s;
    display: block;
  }
  .ind-card h4 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--cream);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  .ind-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
  }

  /* ===== CAPABILITIES GRID ===== */
  .capabilities {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .capabilities > .cap-header,
  .capabilities > .cap-grid { position: relative; z-index: 1; }

  .cap-header {
    margin-bottom: 5rem;
    max-width: 800px;
  }
  .cap-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .cap-header h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .cap-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
  }

  .cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }
  .cap-item {
    padding: 2.5rem 2.25rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transition: background 0.4s;
  }
  .cap-item:hover { background: rgba(166, 124, 46, 0.04); }
  .cap-item-num {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: block;
  }
  .cap-item h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.15;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.85rem;
  }
  .cap-item p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ===== CREDENTIALS ===== */
  .credentials {
    padding: 6rem 3rem;
    background: var(--off-black);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .cred-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
  }
  .credentials h3 {
    font-family: var(--serif);
    font-size: 2.5rem;
    line-height: 1.05;
    font-weight: 400;
    color: var(--cream);
  }
  .credentials h3 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .cred-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .cred-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--rule);
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .cred-item:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--rule);
  }
  .cred-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  .cred-value {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 400;
  }
  .cred-value em {
    font-family: var(--mono);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold-bright);
    display: block;
    margin-top: 0.15rem;
    letter-spacing: 0.05em;
  }

  /* ===== CONTACT ===== */
  .contact {
    padding: 10rem 3rem 6rem;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 80vw;
    height: 80vw;
    max-width: 1000px;
    max-height: 1000px;
    background: radial-gradient(circle, rgba(166, 124, 46, 0.08) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
  }
  .contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .contact-left h2 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 2rem;
  }
  .contact-left h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .contact-left p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 3rem;
    font-weight: 300;
  }
  .contact-channels {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule);
  }
  .contact-channel {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--cream);
    transition: padding 0.4s ease;
  }
  .contact-channel:hover {
    padding-left: 1.5rem;
    color: var(--gold-bright);
  }
  .contact-channel-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  .contact-channel-value {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
  }

  /* ===== FOOTER ===== */
  .site-footer {
    padding: 4rem 3rem 3rem;
    border-top: 1px solid var(--rule);
    background: var(--black);
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2.5rem;
  }
  .footer-brand h4 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.75rem;
  }
  .footer-logo {
    width: 140px;
    height: 140px;
    display: block;
    margin-bottom: 1.5rem;
  }
  .footer-brand h4 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 380px;
  }
  .footer-tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .footer-col h5 {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-col a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--serif);
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--gold-bright); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 968px) {
    .site-header { padding: 1.25rem 1.5rem; }
    .nav-links { display: none; }
    .hero {
      grid-template-columns: 1fr;
      padding: 7rem 1.5rem 3rem;
      gap: 3rem;
    }
    .approach {
      grid-template-columns: 1fr;
      padding: 5rem 1.5rem;
      gap: 3rem;
    }
    .approach-left h2 { position: static; }
    .principles { grid-template-columns: 1fr; }
    .principle {
      border-right: none;
      border-bottom: 1px solid var(--rule);
      padding: 1.5rem 0;
    }
    .principle:not(:first-child) { padding-left: 0; }
    .subs { padding: 5rem 0 0; }
    .subs-header {
      padding: 0 1.5rem;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 3rem;
    }
    .sub-card {
      grid-template-columns: 1fr;
      padding: 3rem 1.5rem;
      gap: 1.5rem;
    }
    .sub-card-bg { display: none; }
    .about { padding: 5rem 0; }
    .about-inner { padding: 0 1.5rem; }
    .about-header {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .about-body {
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .follow {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding-top: 3rem;
    }
    .follow-link-handle { font-size: 1rem; }
    .industries { padding: 5rem 1.5rem; }
    .ind-header {
      flex-direction: column;
      align-items: flex-start;
    }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .capabilities { padding: 5rem 1.5rem; }
    .cap-grid { grid-template-columns: 1fr; }
    .credentials { padding: 4rem 1.5rem; }
    .cred-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .cred-list { grid-template-columns: 1fr; }
    .cred-item:nth-child(even) { padding-left: 0; border-left: none; }
    .contact { padding: 6rem 1.5rem 4rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-channel-value { font-size: 1.05rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-logo { width: 110px; height: 110px; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
  }

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