/* ============================================================
   PRIME MEDIA LLC — Mockup v2
   Direction: "Deep water" — layered navy depth, luminous accents,
   crafted detail. Rich, finished, credible-but-creative.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..700;1,9..144,400..700&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --blue:      #1F4E79;
  --blue-deep: #12314E;
  --blue-ink:  #0B2033;
  --blue-mid:  #2E75B6;
  --blue-lum:  #5FA8E8;
  --steel:     #5B7FA6;
  --silver:    #9DA7B3;
  --silver-lt: #EEF1F5;
  --ink:       #1A1A1A;
  --paper:     #F7F9FB;
  --white:     #FFFFFF;
  --gold:      #C9A227;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11,32,51,.08);
  --shadow-md: 0 10px 32px -8px rgba(11,32,51,.18);
  --shadow-lg: 0 24px 60px -16px rgba(11,32,51,.32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--blue-deep); letter-spacing: -0.015em; }
a { color: var(--blue-mid); text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- utilities ---------- */
.eyebrow {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-mid); display: inline-flex; align-items: center; gap: .55rem; font-weight: 600;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--blue-mid)); border-radius: 2px; }
.on-dark .eyebrow, .eyebrow.light { color: var(--blue-lum); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: .95rem 1.8rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); box-shadow: 0 8px 24px -8px rgba(46,117,182,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(46,117,182,.65); }
.btn-gold { background: linear-gradient(135deg, #E3BC4B, var(--gold)); color: var(--blue-ink); box-shadow: 0 8px 24px -8px rgba(201,162,39,.55); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue-mid); }
.btn-ghost:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,32,51,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95,168,232,.15);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: .9rem; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--white); }
.brand .mark { width: 34px; height: 34px; flex: none; filter: drop-shadow(0 2px 6px rgba(95,168,232,.5)); }
.brand small { display: block; font-family: var(--mono); font-size: .58rem; letter-spacing: .3em; color: var(--blue-lum); font-weight: 500; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; list-style: none; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 600; }
.nav-links a:hover { color: var(--blue-lum); }
.nav-links a.active { color: var(--white); position: relative; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--blue-lum)); }
.nav-cta { font-size: .85rem !important; padding: .6rem 1.25rem; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.3); border-radius: 6px; padding: .4rem .7rem; cursor: pointer; font-family: var(--mono); font-size: .75rem; color: var(--white); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--blue-ink); padding: 1.2rem var(--gutter); gap: 1.1rem; border-bottom: 1px solid rgba(95,168,232,.2); align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(95,168,232,.28), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(46,117,182,.35), transparent 55%),
    linear-gradient(165deg, var(--blue-ink) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  color: var(--white);
  padding-block: clamp(4rem, 10vw, 7.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600' fill='none'%3E%3Cpath d='M0 480 Q 225 400 450 470 T 900 440' stroke='%235FA8E8' stroke-opacity='.25' fill='none'/%3E%3Cpath d='M0 520 Q 225 440 450 510 T 900 480' stroke='%235FA8E8' stroke-opacity='.18' fill='none'/%3E%3Cpath d='M0 560 Q 225 480 450 550 T 900 520' stroke='%235FA8E8' stroke-opacity='.12' fill='none'/%3E%3Cpath d='M0 120 Q 300 60 560 110 T 900 80' stroke='%23C9A227' stroke-opacity='.15' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); color: var(--white); font-weight: 650; }
.hero h1 .accent { font-style: italic; background: linear-gradient(100deg, var(--blue-lum), #A8D4FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { font-size: 1.22rem; color: rgba(255,255,255,.82); margin-top: 1.5rem; max-width: 36ch; }
.hero-actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { margin-top: 2.6rem; display: flex; gap: 1.6rem; flex-wrap: wrap; }
.hero-badge { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: .45rem; }
.hero-badge::before { content: "◆"; color: var(--gold); font-size: .6rem; }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.hero-card::after {
  content: ""; position: absolute; top: -30px; right: -20px; width: 130px; height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M40 8C40 8 22 10 14 24C10.5 30 10 36 10 40L14 40C14 36 15 31 18 27C18 27 20 30 25 29C25 29 22 26 23 24C26 25 30 24 32 20C32 20 28 19 27 17C31 17 36 15 40 8Z' fill='%235FA8E8' fill-opacity='.35'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transform: rotate(12deg);
  pointer-events: none;
}
.hero-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 1.3rem; }
.hero-row { display: flex; align-items: center; gap: 1rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.hero-row .ico { width: 40px; height: 40px; flex: none; border-radius: 10px; background: linear-gradient(135deg, rgba(95,168,232,.35), rgba(46,117,182,.25)); display: flex; align-items: center; justify-content: center; }
.hero-row .ico svg { width: 21px; height: 21px; }
.hero-row span { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.92); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; } }

/* ---------- ribbon divider ---------- */
.ribbon { height: 5px; background: linear-gradient(90deg, var(--gold), var(--blue-lum) 40%, var(--blue-mid)); }

/* ---------- sections ---------- */
.section { padding-block: clamp(3.4rem, 8vw, 6.5rem); position: relative; }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-top: .9rem; }
.section-head p { color: #44506a; margin-top: 1rem; font-size: 1.1rem; }

.bg-dark {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(95,168,232,.18), transparent 55%),
    linear-gradient(160deg, var(--blue-ink), var(--blue-deep));
  color: rgba(255,255,255,.85);
}
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-soft { background: linear-gradient(180deg, #FFFFFF 0%, var(--silver-lt) 100%); }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid #E2E8F1;
  border-radius: var(--r-md);
  padding: 2.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-mid), var(--blue-lum)); opacity: 0; transition: opacity .22s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-lum); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--silver-lt), #DDE7F2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(91,127,166,.25);
}
.card .ico svg { width: 26px; height: 26px; }
.card .num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: #E4EBF3; font-weight: 700; }
.card h3 { font-size: 1.4rem; margin-bottom: .55rem; }
.card p { color: #44506a; font-size: .97rem; flex-grow: 1; }
.card .more { margin-top: 1.3rem; font-weight: 700; font-size: .88rem; color: var(--blue-mid); display: inline-flex; align-items: center; gap: .4rem; }
.card:hover .more { gap: .7rem; }
.card .more { transition: gap .2s; }
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; } }

/* ---------- why band ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.why-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(95,168,232,.2);
  border-radius: var(--r-md);
  padding: 1.7rem 1.5rem;
  transition: background .2s, transform .2s;
}
.why-item:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.why-item .glyph { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #E3BC4B); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; box-shadow: 0 6px 16px -6px rgba(201,162,39,.6); }
.why-item .glyph svg { width: 22px; height: 22px; }
.why-item h4 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.why-item p { font-size: .92rem; color: rgba(255,255,255,.65); }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: phase; }
.phase {
  background: var(--white); border-radius: var(--r-md); padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid #E2E8F1; position: relative;
}
.phase .step {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: var(--white); font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
  box-shadow: 0 8px 20px -8px rgba(46,117,182,.6);
}
.phase h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.phase p { font-size: .92rem; color: #44506a; }
.phase::after { content: "→"; position: absolute; right: -1.15rem; top: 50%; transform: translateY(-50%); color: var(--silver); font-size: 1.3rem; z-index: 2; }
.phase:last-child::after { display: none; }
@media (max-width: 820px) { .timeline { grid-template-columns: 1fr 1fr; } .phase::after { display: none; } }
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }

/* ---------- art tiles (portfolio/insight visuals) ---------- */
.art { aspect-ratio: 16/10; border-radius: var(--r-md) var(--r-md) 0 0; position: relative; overflow: hidden; }
.art-1 { background: radial-gradient(120% 120% at 20% 20%, #5FA8E8, transparent 55%), radial-gradient(100% 100% at 85% 80%, #C9A227, transparent 45%), linear-gradient(150deg, #12314E, #1F4E79); }
.art-2 { background: radial-gradient(110% 110% at 80% 15%, #A8D4FF, transparent 50%), linear-gradient(200deg, #2E75B6, #12314E); }
.art-3 { background: radial-gradient(130% 130% at 15% 85%, #C9A227, transparent 40%), linear-gradient(120deg, #0B2033, #2E75B6); }
.art-4 { background: radial-gradient(100% 100% at 60% 40%, #5B7FA6, transparent 55%), linear-gradient(170deg, #1F4E79, #0B2033); }
.art::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='250' viewBox='0 0 400 250' fill='none'%3E%3Cpath d='M0 200 Q 100 150 200 190 T 400 170' stroke='white' stroke-opacity='.3' fill='none'/%3E%3Cpath d='M0 220 Q 100 170 200 210 T 400 190' stroke='white' stroke-opacity='.18' fill='none'/%3E%3Ccircle cx='330' cy='60' r='26' stroke='white' stroke-opacity='.25' fill='none'/%3E%3Ccircle cx='330' cy='60' r='40' stroke='white' stroke-opacity='.12' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
}
.art .label { position: absolute; bottom: .9rem; left: 1.1rem; z-index: 2; font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); background: rgba(11,32,51,.45); padding: .3rem .7rem; border-radius: 40px; backdrop-filter: blur(4px); }

.portfolio-item { background: var(--white); border: 1px solid #E2E8F1; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.portfolio-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.portfolio-item .body { padding: 1.3rem 1.5rem 1.6rem; }
.portfolio-item .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-mid); font-weight: 600; }
.portfolio-item h4 { font-size: 1.18rem; margin: .45rem 0 .35rem; }
.portfolio-item p { font-size: .92rem; color: #44506a; }

/* ---------- article list ---------- */
.article-card {
  display: grid; grid-template-columns: 120px 1fr; gap: 1.4rem; align-items: center;
  background: var(--white); border: 1px solid #E2E8F1; border-radius: var(--r-md);
  padding: 1.1rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.article-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.article-card .thumb { aspect-ratio: 1; border-radius: var(--r-sm); }
.article-card .meta { font-family: var(--mono); font-size: .68rem; color: var(--blue-mid); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.article-card h4 { font-size: 1.2rem; margin: .3rem 0 .3rem; }
.article-card p { font-size: .92rem; color: #44506a; }
@media (max-width: 560px) { .article-card { grid-template-columns: 1fr; } .article-card .thumb { aspect-ratio: 16/7; } }

/* ---------- pull quote ---------- */
.pullquote { position: relative; text-align: center; max-width: 800px; margin-inline: auto; }
.pullquote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.35; color: var(--white); font-weight: 500; }
.pullquote blockquote::before { content: "“"; display: block; font-size: 5rem; line-height: .6; color: var(--gold); margin-bottom: 1.2rem; font-style: normal; }
.pullquote cite { display: block; margin-top: 1.6rem; font-family: var(--mono); font-style: normal; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-lum); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 85% 20%, rgba(95,168,232,.3), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(201,162,39,.25), transparent 55%),
    linear-gradient(150deg, var(--blue-deep), var(--blue));
  border-radius: var(--r-lg);
  padding: clamp(2.6rem, 6vw, 4.2rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
.cta-band p { color: rgba(255,255,255,.8); max-width: 48ch; margin: 1rem auto 2rem; font-size: 1.08rem; }

/* ---------- page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(800px 320px at 90% -20%, rgba(95,168,232,.25), transparent 60%),
    linear-gradient(160deg, var(--blue-ink), var(--blue-deep));
  color: var(--white);
  padding-block: clamp(3.2rem, 7vw, 5.2rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -40px; bottom: -50px; width: 280px; height: 280px; opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M40 8C40 8 22 10 14 24C10.5 30 10 36 10 40L14 40C14 36 15 31 18 27C18 27 20 30 25 29C25 29 22 26 23 24C26 25 30 24 32 20C32 20 28 19 27 17C31 17 36 15 40 8Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; transform: rotate(15deg);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin-top: .8rem; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 62ch; margin-top: 1.1rem; }

/* ---------- prose & misc ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2.2rem; } }
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.8rem; margin: 2.2rem 0 .8rem; }
.prose h3 { font-size: 1.25rem; margin: 1.7rem 0 .6rem; color: var(--blue-mid); }
.prose p, .prose li { color: #37425c; margin-bottom: .9rem; }
.prose ul { padding-left: 1.2rem; }

.value-statement {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic;
  color: var(--blue-deep); line-height: 1.35; font-weight: 500;
  background: linear-gradient(135deg, var(--silver-lt), #FFFFFF);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.5rem 1.8rem; margin: 1.6rem 0 2.2rem;
  box-shadow: var(--shadow-sm);
}

.bios { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.bio {
  background: var(--white); border: 1px solid #E2E8F1; border-radius: var(--r-md);
  padding: 2rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.bio::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--blue-lum)); }
.bio .avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-lum), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--serif); font-size: 1.7rem; font-weight: 700;
  margin-bottom: 1.1rem; box-shadow: 0 10px 26px -10px rgba(46,117,182,.7);
}
.bio h3 { font-size: 1.35rem; }
.bio .role { font-family: var(--mono); font-size: .74rem; color: var(--blue-mid); text-transform: uppercase; letter-spacing: .1em; margin: .3rem 0 .9rem; font-weight: 600; }
@media (max-width: 700px) { .bios { grid-template-columns: 1fr; } }

.values { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.value-chip {
  font-weight: 700; font-size: .88rem; color: var(--blue-deep);
  background: var(--white); padding: .6rem 1.2rem; border-radius: 999px;
  border: 1.5px solid #D7E1EC; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: .45rem;
}
.value-chip::before { content: "◆"; color: var(--gold); font-size: .6rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow-md); border: 1px solid #E2E8F1; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .4rem; color: var(--blue-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid #D7E1EC; border-radius: 10px;
  font-family: var(--sans); font-size: .95rem; background: var(--paper); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(46,117,182,.18); }
.contact-detail { display: flex; gap: 1rem; align-items: center; padding: 1.05rem 1.2rem; background: var(--white); border: 1px solid #E2E8F1; border-radius: var(--r-md); margin-bottom: .9rem; box-shadow: var(--shadow-sm); }
.contact-detail .ico { width: 42px; height: 42px; flex: none; border-radius: 12px; background: linear-gradient(135deg, var(--silver-lt), #DDE7F2); display: flex; align-items: center; justify-content: center; }
.contact-detail .ico svg { width: 20px; height: 20px; }
.contact-detail a, .contact-detail span.val { font-weight: 600; color: var(--blue-deep); font-size: .95rem; }
.map-embed {
  aspect-ratio: 16/10; border-radius: var(--r-md); margin-top: 1.2rem;
  background: radial-gradient(100% 100% at 30% 30%, #DDE7F2, var(--silver-lt));
  border: 1px solid #D7E1EC; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-embed::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(91,127,166,.12) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(91,127,166,.12) 0 1px, transparent 1px 40px); }
.map-pin { position: relative; z-index: 2; text-align: center; font-family: var(--mono); font-size: .78rem; color: var(--blue-deep); }
.map-pin .dot { width: 18px; height: 18px; border-radius: 50% 50% 50% 0; background: var(--blue-mid); transform: rotate(-45deg); margin: 0 auto .6rem; box-shadow: 0 6px 14px -4px rgba(46,117,182,.7); }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--blue-ink), #071523);
  color: var(--silver); padding-block: 3.4rem 2rem; position: relative;
}
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--blue-lum) 40%, var(--blue-mid)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.4rem; }
.site-footer h4 { color: var(--white); font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.site-footer a { color: var(--silver); font-size: .93rem; display: block; margin-bottom: .55rem; }
.site-footer a:hover { color: var(--blue-lum); }
.footer-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; font-weight: 700; }
.footer-brand .mark { width: 32px; }
.footer-bottom { border-top: 1px solid rgba(157,167,179,.15); margin-top: 2.4rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; font-family: var(--mono); color: rgba(157,167,179,.75); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

.note {
  background: linear-gradient(135deg, #FFF9EA, #FDF3D7); border: 1px solid #EAD68E; border-radius: var(--r-sm);
  padding: .75rem 1.1rem; font-size: .82rem; color: #6b5a1a; font-family: var(--mono); margin-bottom: 1.4rem;
  display: flex; gap: .6rem; align-items: flex-start;
}
.note::before { content: "✎"; flex: none; }

/* ---------- brand logo chip & photos (v2 assets) ---------- */
.mark-chip {
  width: 42px; height: 42px; border-radius: 50%; background: #fff; flex: none;
  display: inline-flex; align-items: center; justify-content: center; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.3), inset 0 0 0 1px rgba(11,32,51,.08);
}
.mark-chip img { width: 78%; height: auto; display: block; }
.footer-brand .mark-chip { width: 36px; height: 36px; }

.photo { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-md); object-fit: cover; display: block; }
.photo-banner { aspect-ratio: 21 / 8; margin-top: 1.6rem; }
.photo-tall { aspect-ratio: 4 / 3; }
figure.photo-fig { margin: 0; }
figure.photo-fig figcaption { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--blue-mid); margin-top: .7rem; text-transform: uppercase; }

.bio .avatar-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--blue-lum); }
