:root {
    --bg: #F6F3EC;
    --bg-deep: #ECE7DB;
    --paper: #FBF9F3;
    --ink: #161412;
    --ink-soft: #5C5750;
    --ink-muted: #8A847A;
    --rule: rgba(22,20,18,0.12);
    --rule-strong: rgba(22,20,18,0.2);
    --accent: #1FB4A8;
    --accent-soft: #2FCFC0;
    --accent-pale: #B8E8E0;
    --navy: #0E1A2E;
    --navy-soft: #1A2B45;
    --cyan-bright: #5DEDDC;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; font-family: inherit; }
  input, button, select, textarea { font-family: inherit; font-size: inherit; }
  html { scroll-behavior: smooth; }

  body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  ::selection { background: var(--accent); color: var(--paper); }

  .container { max-width: 1440px; margin: 0 auto; padding: 0 64px; }
  .container-narrow { max-width: 1200px; margin: 0 auto; padding: 0 64px; }

  img { display: block; max-width: 100%; }
  a { color: inherit; }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* LOGO */
  .wbs-logo {
    height: 44px;
    width: auto;
    color: var(--ink);
    display: block;
  }
  .wbs-logo-mark {
    height: 44px;
    width: auto;
    color: var(--ink);
    display: none;
  }
  .wbs-logo-lg { height: 64px; }
  .logo-link { display: inline-block; text-decoration: none; line-height: 0; }
  .logo-dark .wbs-logo, .logo-dark .wbs-logo-mark { color: var(--paper); }

  /* HEADER */
  header {
    position: sticky;
    top: 0;
    background: rgba(14,26,46,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(93,237,220,0.18);
    z-index: 100;
    padding: 14px 0;
  }
  .nav { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
  nav ul { list-style: none; display: flex; gap: 36px; }
  nav a {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--paper);
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s;
  }
  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--cyan-bright);
    transition: width 0.3s ease;
  }
  nav a:hover { color: var(--cyan-bright); }
  nav a:hover::after { width: 100%; }
  .nav-cta {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--paper);
    text-decoration: none;
    padding: 14px 24px;
    border: 1px solid rgba(93,237,220,0.4);
    transition: all 0.3s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }
  /* SPLIT LOGO. Icon + wordmark sized independently. */
  .logo-link { display: flex; align-items: center; gap: 14px; }
  .wbs-icon { height: 40px; width: auto; display: block; }
  .wbs-wordmark { height: 40px; width: auto; display: block; }
  .wbs-icon-lg { height: 80px; width: auto; display: block; }
  .wbs-wordmark-lg { height: 64px; width: auto; display: block; }
  .footer-logo { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }

  /* HERO */
  .hero { padding: 140px 0 0; }

  .hero-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 80px;
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .hero-meta-bar .left { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
  .hero-meta-bar .right { font-style: italic; text-transform: none; letter-spacing: 0.04em; font-size: 14px; }
  .hero-meta-bar .accent { color: var(--accent); }

  .hero h1 {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: clamp(64px, 9vw, 156px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 80px;
    max-width: 1300px;
  }
  .hero h1 .italic { font-style: italic; color: var(--accent); }
  .hero h1 sup {
    font-size: 0.16em;
    font-style: normal;
    font-family: Georgia, serif;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    vertical-align: top;
    margin-left: 0.4em;
    line-height: 1;
    display: inline-block;
    padding-top: 1.4em;
    text-transform: uppercase;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--rule);
  }
  .hero-bottom .left {
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink);
    font-style: italic;
    max-width: 520px;
  }
  .hero-bottom .right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: start;
  }
  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 460px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 18px 32px;
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }
  .btn-primary { background: var(--ink); color: var(--paper); }
  .btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-secondary:hover { background: var(--ink); color: var(--paper); }

  /* HERO IMAGE FULL BLEED */
  .hero-image-fullbleed {
    width: 100%;
    height: 90vh;
    min-height: 720px;
    background-color: var(--bg-deep);
    background-image: url('https://i0.wp.com/wirko.com/wp-content/uploads/2024/06/Union-Unit1-Kitchen-scaled.jpeg?fit=2000%2C1126&ssl=1');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    filter: contrast(1.04) saturate(0.88);
    margin-top: 100px;
  }
  .hero-image-fullbleed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(22,20,18,0.65) 100%);
  }
  .hero-image-overlay {
    position: absolute;
    bottom: 60px;
    left: 64px;
    right: 64px;
    color: var(--paper);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
  }
  .hero-image-overlay .left {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    font-style: italic;
    line-height: 1.05;
    max-width: 720px;
    letter-spacing: -0.01em;
  }
  .hero-image-overlay .right {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: right;
    color: rgba(251,249,243,0.85);
    line-height: 2;
    white-space: nowrap;
  }
  .hero-image-overlay .right .accent { color: var(--accent-pale); }

  /* CLIENTS BAR */
  .clients-bar {
    background: var(--paper);
    padding: 56px 0;
    border-bottom: 1px solid var(--rule);
  }
  .clients-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .clients-label {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-style: italic;
    flex-shrink: 0;
  }
  .clients-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    font-family: Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .clients-list span { white-space: nowrap; }
  .clients-list .sep { color: var(--accent); padding: 0 4px; }

  /* SECTIONS */
  .section { padding: 160px 0; border-bottom: 1px solid var(--rule); }
  .section-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    margin-bottom: 100px;
    align-items: baseline;
  }
  .section-number {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding-top: 18px;
    border-top: 1px solid var(--ink);
    width: 50px;
  }
  .section-title {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: clamp(44px, 5.6vw, 88px);
    line-height: 1;
    letter-spacing: -0.025em;
    max-width: 1100px;
  }
  .section-title .italic { font-style: italic; color: var(--accent); }

  /* MANIFESTO */
  .manifesto {
    background: var(--paper);
    padding: 200px 0;
  }
  .manifesto-body {
    max-width: 1100px;
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: normal;
  }
  .manifesto-body .accent { color: var(--accent); font-style: italic; }
  .manifesto-body p { margin-bottom: 40px; }
  .manifesto-body p:last-child { margin-bottom: 0; }

  /* SCOPE */
  .scope-intro {
    max-width: 720px;
    margin-bottom: 80px;
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .scope-intro a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
  .scope-intro a:hover { color: var(--accent-soft); }
  .scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .scope-card {
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
    display: flex;
    flex-direction: column;
  }
  .scope-card:hover { transform: translateY(-8px); }
  .scope-image-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--bg-deep);
    position: relative;
  }
  .scope-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: contrast(1.04) saturate(0.88);
    transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .scope-card:hover .scope-image { transform: scale(1.06); }
  .scope-num {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper);
    z-index: 2;
    background: rgba(22,20,18,0.45);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
  }
  .scope-title {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.015em;
  }
  .scope-title .italic { font-style: italic; color: var(--accent); }
  .scope-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 24px;
    max-width: 420px;
  }
  .scope-desc a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
  .scope-list {
    list-style: none;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
  }
  .scope-list li {
    font-size: 13px;
    color: var(--ink);
    padding: 5px 0;
    font-style: italic;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .scope-list li::before {
    content: "→";
    color: var(--accent);
    font-style: normal;
    font-size: 11px;
  }

  .scope-footer {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: start;
  }

  /* CABINET CONSTRUCTION SPEC PANEL */
  .cabinet-spec {
    margin-top: 64px;
    background: var(--paper);
    padding: 72px 80px;
    border: 1px solid var(--rule);
  }
  .cabinet-spec-header {
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--rule);
    max-width: 900px;
  }
  .cabinet-spec-eyebrow {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    padding-top: 14px;
    border-top: 1px solid var(--accent);
    width: 80px;
    display: inline-block;
  }
  .cabinet-spec-title {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
  }
  .cabinet-spec-title .italic { font-style: italic; color: var(--accent); }
  .cabinet-spec-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 720px;
    font-style: italic;
  }
  .cabinet-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
  .cabinet-col-label {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule);
  }
  .cabinet-col-list {
    list-style: none;
  }
  .cabinet-col-list li {
    font-family: Georgia, serif;
    font-size: 19px;
    font-style: italic;
    padding: 11px 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.3;
  }
  .cabinet-col-list li:last-child { border-bottom: none; }
  .scope-footer .label {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .scope-footer .body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 820px;
    font-style: italic;
  }
  .scope-footer .body strong {
    color: var(--ink);
    font-weight: normal;
    font-style: normal;
    border-bottom: 1px solid var(--accent);
  }
  .scope-footer .body a {
    color: var(--accent);
    text-decoration: none;
    font-style: normal;
    border-bottom: 1px solid currentColor;
  }

  /* DIFFERENCE */
  .difference {
    background: var(--navy);
    color: var(--paper);
    padding: 180px 0;
    border-bottom: none;
  }
  .difference .section-number {
    color: var(--accent-pale);
    border-color: var(--accent-pale);
  }
  .difference .section-title { color: var(--paper); }
  .difference .section-title .italic { color: var(--accent-pale); }
  .difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(251,249,243,0.15);
  }
  .pillar {
    padding: 80px 60px 80px 0;
    border-bottom: 1px solid rgba(251,249,243,0.15);
  }
  .pillar:nth-child(odd) { padding-right: 80px; }
  .pillar:nth-child(even) {
    padding-left: 80px;
    border-left: 1px solid rgba(251,249,243,0.15);
  }
  .pillar:nth-last-child(-n+2) { border-bottom: none; }
  .pillar-stat {
    font-family: Georgia, serif;
    font-size: clamp(96px, 10vw, 160px);
    line-height: 0.9;
    margin-bottom: 24px;
    font-weight: normal;
    color: var(--accent-pale);
    letter-spacing: -0.04em;
  }
  .pillar-stat .small {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(251,249,243,0.5);
    display: block;
    margin-top: 24px;
    font-style: normal;
  }
  .pillar-headline {
    font-family: Georgia, serif;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 18px;
    color: var(--paper);
    line-height: 1.15;
  }
  .pillar-body {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(251,249,243,0.65);
    max-width: 480px;
  }
  .pillar-body em {
    color: var(--accent-pale);
    font-style: italic;
    font-weight: normal;
  }

  /* MARKETS */
  .markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .market {
    aspect-ratio: 3/4;
    background-color: var(--bg-deep);
    background-size: cover;
    background-position: center;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
    cursor: pointer;
    color: var(--paper);
  }
  .market:hover { transform: translateY(-8px); }
  .market::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22,20,18,0.2) 0%, rgba(22,20,18,0.85) 100%);
    z-index: 1;
  }
  .market > * { position: relative; z-index: 2; }
  .market-num {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--accent-pale);
    text-transform: uppercase;
  }
  .market-bottom { display: flex; flex-direction: column; gap: 16px; }
  .market-name {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.015em;
  }
  .market-name .italic { font-style: italic; color: var(--accent-pale); }
  .market-stat {
    font-size: 12px;
    color: rgba(251,249,243,0.75);
    border-top: 1px solid rgba(251,249,243,0.25);
    padding-top: 14px;
    line-height: 1.5;
  }

  /* PROCESS / TIMELINE */
  .process { background: var(--paper); }

  .timeline-headline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: end;
  }
  .timeline-claim {
    font-family: Georgia, serif;
    font-size: clamp(120px, 16vw, 240px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--accent);
    font-weight: normal;
    text-transform: uppercase;
  }
  .timeline-claim .small {
    display: block;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 32px;
    font-style: normal;
  }
  .timeline-context p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .timeline-context p:last-child { margin-bottom: 0; }
  .timeline-context .accent {
    color: var(--accent);
    font-style: italic;
    font-size: 22px;
  }

  /* TWO TRACK TIMELINE */
  .timeline-tracks {
    background: var(--bg-deep);
    padding: 60px;
    margin-bottom: 100px;
  }
  .track-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    margin-bottom: 24px;
    align-items: center;
  }
  .track-row:last-of-type { margin-bottom: 32px; }
  .track-header {
    text-align: right;
  }
  .track-num {
    font-family: Georgia, serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 6px;
  }
  .track-name {
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.1;
  }
  .track-name .italic { font-style: italic; color: var(--accent); }
  .track-bar {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    gap: 4px;
    height: 76px;
  }
  .phase {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .phase-name {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .phase-time {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .phase-spec {
    grid-column: span 2;
    background: var(--bg);
    color: var(--ink);
  }
  .phase-prod-cabinets {
    grid-column: span 4;
    background: var(--accent);
    color: var(--paper);
  }
  .phase-hold {
    grid-column: span 8;
    background: linear-gradient(90deg, var(--accent-pale) 0%, rgba(217,167,147,0.15) 85%, transparent 100%);
    color: var(--ink);
  }
  .phase-prod-asia {
    grid-column: span 12;
    background: var(--ink-soft);
    color: var(--paper);
  }

  .ship-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .ship-meta {
    text-align: right;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-muted);
  }
  .ship-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: Georgia, serif;
  }
  .ship-arrow {
    font-size: 28px;
    color: var(--accent);
  }
  .ship-label {
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .ship-label .italic {
    font-style: italic;
    color: var(--accent);
  }

  .timeline-footnote {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule-strong);
  }
  .step {
    padding: 50px 36px 60px 0;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: transparent;
    position: relative;
  }
  .step:nth-child(n+2) { padding-left: 36px; }
  .step:last-child { border-right: none; }
  .step-week {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    line-height: 1.3;
  }
  .step-num {
    font-family: Georgia, serif;
    font-size: 88px;
    line-height: 0.9;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: normal;
    letter-spacing: -0.04em;
  }
  .step-title {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .step-title .italic { font-style: italic; color: var(--accent); }
  .step-detail {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  /* FEATURED PROJECT */
  .featured { padding: 0; border-bottom: 1px solid var(--rule); }
  .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
  .featured-image {
    background-color: var(--bg-deep);
    background-size: cover;
    background-position: center;
    filter: contrast(1.04) saturate(0.88);
    position: relative;
    overflow: hidden;
  }
  .featured-image-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper);
    background: rgba(22,20,18,0.5);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    z-index: 2;
  }
  .featured-content {
    padding: 120px 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
  }
  .featured-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
  }
  .featured-title {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: clamp(44px, 4.6vw, 72px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 36px;
  }
  .featured-title .italic { font-style: italic; color: var(--accent); }
  .featured-desc {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 480px;
  }
  .featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--rule);
    padding-top: 32px;
    max-width: 520px;
  }
  .featured-stat .num {
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .featured-stat .label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  /* TESTIMONIAL */
  .testimonial {
    padding: 200px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
  }
  .testimonial-quote {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1.2;
    font-style: italic;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    color: var(--ink);
    letter-spacing: -0.015em;
  }
  .testimonial-quote .accent { color: var(--accent); font-style: normal; }
  .testimonial-attribution {
    text-align: center;
    margin-top: 64px;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .testimonial-attribution strong {
    font-weight: normal;
    color: var(--ink);
    display: block;
    font-size: 16px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  /* CONTACT */
  .contact {
    padding: 180px 0 120px;
    background: var(--navy);
    color: var(--paper);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 100px;
    align-items: end;
  }
  .contact h2 {
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: clamp(56px, 7vw, 112px);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .contact h2 .italic { font-style: italic; color: var(--accent-pale); }
  .contact-side { padding-bottom: 32px; }
  .contact-block {
    border-top: 1px solid rgba(251,249,243,0.18);
    padding: 24px 0;
  }
  .contact-label {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(251,249,243,0.5);
    margin-bottom: 10px;
  }
  .contact-value {
    font-family: Georgia, serif;
    font-size: 20px;
    color: var(--paper);
    font-style: italic;
    line-height: 1.5;
  }
  .contact-value a {
    color: var(--paper);
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
  }
  .contact-value a:hover {
    color: var(--accent-pale);
    border-bottom-color: var(--accent-pale);
  }
  .contact-cta {
    display: inline-block;
    margin-top: 64px;
    padding: 24px 48px;
    background: var(--accent);
    color: var(--paper);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .contact-cta:hover {
    background: var(--accent-soft);
    transform: translateY(-3px);
  }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: rgba(251,249,243,0.55);
    padding: 80px 0 48px;
    border-top: 1px solid rgba(93,237,220,0.18);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }
  .footer-tagline {
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    max-width: 380px;
    margin-top: 28px;
  }
  .footer-sisters {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(251,249,243,0.45);
    line-height: 2;
  }
  .footer-sisters a { color: var(--accent-pale); text-decoration: none; }
  .footer-sisters a:hover { color: var(--paper); }
  .footer-sisters .label {
    color: rgba(251,249,243,0.45);
    display: block;
    margin-bottom: 8px;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 13px;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 20px;
    font-weight: normal;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 14px; padding: 5px 0; }
  .footer-col a {
    color: rgba(251,249,243,0.55);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--accent-pale); }
  .footer-meta {
    border-top: 1px solid rgba(251,249,243,0.12);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .container, .container-narrow { padding: 0 32px; }
    .scope-grid { grid-template-columns: repeat(2, 1fr); }
    .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(2n) { border-right: none; }
    .featured-content { padding: 80px 48px; }
    .hero-image-overlay { left: 32px; right: 32px; bottom: 40px; }
    .track-row { grid-template-columns: 180px 1fr; gap: 24px; }
    .ship-row { grid-template-columns: 180px 1fr; gap: 24px; }
    .cabinet-spec { padding: 56px 48px; }
    .cabinet-spec-grid { grid-template-columns: 1fr; gap: 48px; max-width: 540px; }
  }
  @media (max-width: 760px) {
    .container, .container-narrow { padding: 0 20px; }
    header { padding: 10px 0; }
    nav ul { display: none; }
    .nav-cta { display: none; }
    .wbs-logo { display: none; }
    .wbs-logo-mark { display: block; }
    /* Mobile logo: smaller icon, drop wordmark in header to keep tight */
    .wbs-icon { height: 32px; }
    .wbs-wordmark { display: none; }
    .wbs-icon-lg { height: 48px; }
    .wbs-wordmark-lg { height: 36px; }
    .footer-logo { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    /* Mobile contact section grid */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    /* Hero h1 cap on mobile */
    .hero h1 { font-size: clamp(40px, 9vw, 56px); }
    .hero { padding: 80px 0 0; }
    .hero-meta-bar { flex-direction: column; gap: 16px; align-items: start; }
    .hero h1 { margin-bottom: 60px; }
    .hero-bottom, .timeline-headline, .featured-grid, .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hero-image-fullbleed { height: 70vh; min-height: 480px; }
    .hero-image-overlay { flex-direction: column; align-items: start; }
    .hero-image-overlay .right { text-align: left; }
    .clients-row { flex-direction: column; align-items: start; gap: 20px; }
    .scope-grid { grid-template-columns: 1fr; }
    .scope-footer { grid-template-columns: 1fr; gap: 16px; }
    .cabinet-spec { padding: 40px 24px; }
    .cabinet-spec-grid { grid-template-columns: 1fr; gap: 40px; }
    .difference-grid { grid-template-columns: 1fr; }
    .pillar:nth-child(even), .pillar:nth-child(odd) {
      padding: 60px 0;
      border-left: none;
    }
    .markets-grid { grid-template-columns: 1fr 1fr; }
    .timeline-tracks { padding: 32px 24px; }
    .track-row, .ship-row { grid-template-columns: 1fr; gap: 12px; }
    .track-header { text-align: left; }
    .ship-meta { text-align: left; }
    .track-bar { gap: 2px; }
    .phase { padding: 10px 12px; }
    .phase-name { font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 60px; }
    .section { padding: 100px 0; }
    .featured-content { padding: 60px 24px; }
    .step { padding: 40px 24px; }
    .step:nth-child(n+2) { padding-left: 24px; }
    .testimonial { padding: 120px 0; }
  }