/* ToolShark Holdings — private-bank / investment look (dark navy + gold) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/playfair-latin-var.woff2') format('woff2');
}

:root {
  --bg: #0b1620;           /* deep navy */
  --bg-deep: #081019;      /* darker navy for footer/alt */
  --bg-elev: #0f1d2a;      /* elevated panels */
  --surface: #122433;      /* cards */
  --text: #f4f1ea;         /* warm off-white */
  --text-muted: #9bafc0;   /* cool muted blue-grey */
  --gold: #c8a96a;         /* champagne gold accent */
  --gold-hover: #d9bd82;
  --gold-soft: #b9a374;
  --border: #1e3346;       /* navy border */
  --border-gold: rgba(200,169,106,.35);
  --max: 1180px;
  --radius: 4px;           /* tighter, more corporate */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-soft); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-deep); }
.eyebrow { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; margin-bottom: 1.1rem; }
.lead { color: var(--text-muted); font-size: 1.16rem; max-width: 680px; line-height: 1.7; }

h1, h2, h3.display { font-family: var(--serif); font-weight: 600; letter-spacing: -.005em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15; }
h3 { font-size: 1.2rem; font-weight: 700; font-family: var(--sans); }

/* Gold hairline divider */
.rule { width: 56px; height: 2px; background: var(--gold); margin: 0 0 1.75rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,22,32,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { height: 52px; width: auto; display: block; }
.brand .suffix { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--gold); letter-spacing: .04em; border-left: 1px solid var(--border-gold); padding-left: .8rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text); font-weight: 500; font-size: .92rem; letter-spacing: .02em; }
.nav-links a:hover { color: var(--gold); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .55rem; background: var(--gold); color: #0b1620; font-weight: 700; font-size: .92rem; letter-spacing: .02em; padding: .85rem 1.7rem; border-radius: var(--radius); border: 0; cursor: pointer; transition: background .15s, transform .15s; }
.btn:hover { background: var(--gold-hover); color: #0b1620; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-gold); }
.btn-outline:hover { background: rgba(200,169,106,.08); color: var(--gold); border-color: var(--gold); }

/* Hero with full-bleed photo */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,16,25,.97) 0%, rgba(8,16,25,.86) 45%, rgba(8,16,25,.55) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.6rem; max-width: 14ch; }
.hero .lead { margin-bottom: 2.25rem; font-size: 1.25rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-deep); }
.stats .stat { padding: 2.25rem 1.75rem; border-left: 1px solid var(--border); }
.stats .stat:first-child { border-left: 0; }
.stats .num { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stats .lbl { color: var(--text-muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-top: .6rem; }
@media (max-width: 860px){ .stats { grid-template-columns: repeat(2,1fr); } .stats .stat:nth-child(3){ border-left: 0; } }

/* Grids */
.grid { display: grid; gap: 2.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; } .nav-links { display: none; } }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 2rem; } .split.reverse .split-media { order: 0; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.split-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.split-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,22,32,.1), rgba(11,22,32,.45)); }

/* Portfolio cards */
.portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 880px){ .portfolio { grid-template-columns: 1fr; } }
.pcard { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; transition: border-color .2s, transform .2s, background .2s; }
.pcard:hover { border-color: var(--border-gold); transform: translateY(-3px); background: var(--bg-elev); }
.pcard .tag { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border-gold); border-radius: 99px; padding: .25rem .7rem; margin-bottom: 1.1rem; align-self: flex-start; }
.pcard h3 { color: var(--text); margin-bottom: .5rem; font-size: 1.15rem; }
.pcard p { color: var(--text-muted); font-size: .93rem; margin-bottom: 1.4rem; }
.pcard .visit { margin-top: auto; font-weight: 600; color: var(--gold); font-size: .88rem; letter-spacing: .02em; }
.pcard .domain { color: var(--text-muted); font-size: .8rem; margin-top: .3rem; word-break: break-all; }

.group-label { margin-top: 3rem; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: 1rem; }
.group-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Focus / values */
.values { list-style: none; margin-top: 3rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (max-width: 760px){ .values { grid-template-columns: 1fr; } }
.values li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; }
.values li .vnum { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; opacity: .8; }
.values h3 { color: var(--text); margin: .6rem 0 .6rem; }
.values p { color: var(--text-muted); font-size: .95rem; }

/* Leadership */
.leader { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.leader .badge { width: 96px; height: 96px; border-radius: 50%; background: var(--bg-elev); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 2.1rem; color: var(--gold); }

/* Quote */
.quote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.4; color: var(--text); max-width: 900px; }
.quote .mark { color: var(--gold); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 4rem 0 2.5rem; background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .6rem; }
.site-footer li a { color: var(--text-muted); }
.site-footer li a:hover { color: var(--gold); }
.site-footer .brand img { height: 46px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
