/* ─────────────────────────────────────────────────────────
   Base
───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111111;
  --bg-card: #1a1a1a;
  --bg-light: #222222;
  --gold: #fac832;
  --gold-dim: rgba(201, 168, 76, 0.4);
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.5);
  --white-mute: rgba(255, 255, 255, 0.12);
  --mono: "IBM Plex Sans", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─────────────────────────────────────────────────────────
   Modal
───────────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 200;
  padding: 40px;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  padding: 60px;
  max-width: 700px;
  width: 100%;
  position: relative;
  border: 1px solid var(--white-mute);
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  cursor: pointer;
  color: var(--white-dim);
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
   Nav
───────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.95) 10%,
    transparent 100%
  );
}

.nav-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-brand span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 5px 0;
}

/* ─────────────────────────────────────────────────────────
   Bracket Button
───────────────────────────────────────────────────────── */
.bracket-btn {
  position: relative;
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 32px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.bracket-btn::before,
.bracket-btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  transition: all 0.5s ease;
}

.bracket-btn::before {
  top: 0;
  right: 0;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.bracket-btn::after {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.bracket-btn:hover::before,
.bracket-btn:hover::after {
  width: 100%;
  height: 100%;
}

/* ─────────────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: grayscale(100%);
  animation: heroCarousel 21s infinite;
  animation-timing-function: linear;
  will-change: opacity;
}

.hero-slide-1 {
  background-image: url("../images/hero-tl.jpg");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("../images/hero-professional-services.jpg");
  animation-delay: 7s;
}

.hero-slide-3 {
  background-image: url("../images/hero-technology-saas.jpg");
  animation-delay: 14s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.42) 0%,
      rgba(17, 17, 17, 0.68) 100%
    ),
    radial-gradient(
      ellipse at 50% 40%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 60%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 900px;
  margin-bottom: 60px;
}

.hero-gold {
  color: var(--gold);
}

.hero-subline {
  margin: -28px auto 60px;
  max-width: 820px;
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
}

@keyframes heroCarousel {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  29% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-pause {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-dim);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.hero-pause:hover,
.hero-pause:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  outline: none;
}

.hero-pause svg {
  width: 12px;
  height: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────
   Statement
───────────────────────────────────────────────────────── */
.statement {
  padding: 160px 0;
  position: relative;
}

.statement-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 60px;
}

.statement .section-label {
  margin-bottom: 0;
  padding-top: 12px;
}

.statement-text {
  position: relative;
  padding: 40px 0;
}

.statement-text::before,
.statement-text::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
}

.statement-text::before {
  top: 0;
  right: 0;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.statement-text::after {
  bottom: 0;
  left: -8px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.statement-text p {
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────────────────────
   Team
───────────────────────────────────────────────────────── */

.team-section {
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.team-card {
  position: relative;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(1);
  transition:
    filter 0.55s cubic-bezier(.22, .61, .36, 1),
    transform 0.55s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover .team-card-bg {
  filter: brightness(1.08);
  transform: scale(1.015);
}

.team-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;

  filter: grayscale(100%) brightness(0.65) contrast(1.05);

  opacity: 0;
  transform: scale(1.02);

  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1) 0.18s,
    transform 0.9s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover .team-card-photo {
  opacity: 1;
  transform: scale(1);
}

.team-card-initials {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  transition:
    opacity 0.45s cubic-bezier(.22, .61, .36, 1),
    transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover .team-card-initials {
  opacity: 0;
  transform: scale(0.98);
}

.team-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(.22, .61, .36, 1);
}

.team-card:hover .team-card-info {
  max-height: 100%;
}

.team-card-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.team-card-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card-hover-text {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s cubic-bezier(.22, .61, .36, 1) 0.08s,
    transform 0.45s cubic-bezier(.22, .61, .36, 1) 0.08s;
}

.team-card:hover .team-card-hover-text {
  opacity: 1;
  transform: translateY(0);
}

.team-card::before,
.team-card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
  transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
  opacity: 0;
}

.team-card::before {
  top: 12px;
  right: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.team-card::after {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.team-card:hover::before,
.team-card:hover::after {
  opacity: 1;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}

/* Touch devices: show photo state by default (no hover available) */
@media (hover: none) {
  .team-card-photo {
    opacity: 1;
    transform: scale(1);
  }
  .team-card-initials {
    opacity: 0;
  }
}

/* ─────────────────────────────────────────────────────────
   Focus / Industries
───────────────────────────────────────────────────────── */
.focus-section {
  padding: 120px 0;
}

.focus-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}

.focus-text {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.focus-card {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  text-align: left;
}

.focus-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transform: scale(1);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.focus-card-logistics .focus-card-bg {
  background-image: url("../images/hero-tl.jpg");
}

.focus-card-services .focus-card-bg {
  background-image: url("../images/hero-professional-services.jpg");
}

.focus-card-tech .focus-card-bg {
  background-image: url("../images/hero-technology-saas.jpg");
}

.focus-card:hover .focus-card-bg {
  transform: scale(1.06);
  filter: grayscale(100%) brightness(0.6) contrast(1.05);
}

.focus-card-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 15%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.focus-card-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.focus-card-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.focus-card:hover .focus-card-desc {
  max-height: 100px;
}

.focus-card::before,
.focus-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 2;
  transition: all 0.5s ease;
  opacity: 0;
}

.focus-card::before {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.focus-card::after {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.focus-card:hover::before,
.focus-card:hover::after {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────
   Services
───────────────────────────────────────────────────────── */
.services-section {
  padding: 160px 0;
}

.services-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--white-mute);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  transition: all 0.3s;
}

.service-item:first-child {
  border-top: 1px solid var(--white-mute);
}

.service-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  padding-top: 6px;
}

.service-content h3 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-item:hover .service-content h3 {
  color: var(--gold);
}

.service-content p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

/* ─────────────────────────────────────────────────────────
   Process
───────────────────────────────────────────────────────── */
.process-section {
  padding: 120px 0;
  border-top: 1px solid var(--white-mute);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 60px;
}

.process-card {
  background: var(--bg-card);
  padding: 40px 28px;
  position: relative;
  transition: all 0.3s;
}

.process-card:hover {
  background: var(--bg-light);
}

.process-card-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.process-card p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.process-card:hover::before {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────
   Contact
───────────────────────────────────────────────────────── */
.contact-section {
  padding: 160px 0;
  border-top: 1px solid var(--white-mute);
}

.contact-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

.contact-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 24px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--white-dim);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.contact-form .bracket-btn {
  justify-self: start;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: rgba(220, 80, 80, 0.6);
}

.contact-status {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  min-height: 1em;
}

/* ─────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--white-mute);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--gold);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-address {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.footer-disclosure {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--white-mute);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
  max-width: 900px;
}

/* ─────────────────────────────────────────────────────────
   Team Member Page
───────────────────────────────────────────────────────── */

.profile-hero {
  padding-top: 150px;
  padding-bottom: 80px;
}

.profile-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 20px;
}

.profile-left {
  max-width: 340px;
}

.headshot {
  width: 80%;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: block;
  margin-bottom: 22px;
}

.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.headshot:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.headshot span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.profile-name {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 6px;
}

.profile-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}

.profile-phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.profile-body {
  padding-top: 4px;
}

.profile-h1 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.profile-bio {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 780px;
  margin-bottom: 24px;
}

.profile-bio br {
  display: block;
  margin-top: 12px;
}

.profile-icons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 6px;
}

.profile-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s, transform 0.25s;
}

.profile-icons a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.profile-icons svg {
  width: 22px;
  height: 22px;
}

/* ─────────────────────────────────────────────────────────
   Transactions Page
───────────────────────────────────────────────────────── */
.page-hero {
  padding-top: 110px;
  padding-bottom: 44px;
}

.page-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

.transactions-section {
  padding: 64px 0 140px;
  border-top: 1px solid var(--white-mute);
}

.transactions-block {
  margin-bottom: 80px;
}

.transactions-block:last-child {
  margin-bottom: 0;
}

.transactions-block-secondary {
  padding-top: 24px;
  border-top: 1px solid var(--white-mute);
}

.block-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.block-subtitle {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 28px;
}

.transactions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}

.tx-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 32px;
  min-height: 260px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.tx-card:hover {
  background: var(--bg-light);
  border-color: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.tx-card::before,
.tx-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tx-card::before {
  top: 12px;
  right: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.tx-card::after {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.tx-card:hover::before,
.tx-card:hover::after {
  opacity: 1;
}

.tx-sector {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.tx-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.tx-title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
  max-width: 90%;
}

.tx-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
  max-width: 92%;
}

.tx-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tx-meta-item {
  padding-top: 10px;
  border-top: 1px solid var(--white-mute);
}

.tx-meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.tx-meta-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.tx-meta-value--value {
  color: var(--white);
  font-weight: 500;
}

.tx-meta-value--confidential {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

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

  .transactions-section {
    padding: 56px 0 120px;
  }

  .transactions-block {
    margin-bottom: 56px;
  }

  .tx-card {
    padding: 28px;
  }
}

/* ─────────────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px 40px;
    gap: 20px;
  }

  .statement-inner,
  .focus-intro,
  .services-inner,
  .contact-inner,
  .profile-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-wrap {
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid,
  .transactions-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .profile-left {
    max-width: 420px;
  }

  .profile-icons {
    justify-content: flex-start;
  }

  .profile-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 20px 24px;
  }

  .container {
    padding: 0 24px;
  }

  .team-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}