/*
  KWR Acuity Strategies — Modern 2026 concept
  Avenir LT Pro is supplied by the licensed Adobe Fonts kit. The remaining
  families form the explicit offline fallback stack.
*/
@font-face {
  font-family: "Roboto Local";
  src: url("../assets/fonts/roboto-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --color-primary-teal: #00b3c5; /* Primary KWR teal */
  --color-darkest: #1b1b1b; /* Deep neutral */
  --color-footer: #26272e; /* Footer charcoal */
  --color-dark-muted: #464754; /* Dark slate neutral */
  --color-white: #ffffff; /* Pure white */
  --color-off-white: #f5f5f5; /* Soft section background */
  --color-border: #e6e6e6; /* Standard light border */
  --color-warm-light: #e5e3df; /* Warm light neutral */
  --color-text: #333333; /* Primary text gray */
  --color-text-medium: #4f4f4f; /* Medium text gray */
  --color-text-slate: #5b5f68; /* Slate text gray */
  --color-text-light: #a4a7a9; /* Light text gray */
  --color-hero-overlay: #21366fbf; /* Boardwalk hero overlay */

  --color-ink: #151922;
  --color-midnight: #192538;
  --color-navy: #21366f;
  --color-paper: #f7f5f1;
  --color-sand: #ebe7df;
  --color-mist: #edf1f2;
  --color-copy: #616771;
  --shadow-soft: 0 24px 70px rgba(21,25,34,.11);
  --shadow-card: 0 12px 40px rgba(21,25,34,.08);
  --radius-large: 28px;
  --radius-medium: 18px;
  --font-heading: "avenir-lt-pro", "Avenir LT Pro", "Avenir Next", Avenir, Montserrat, Arial, sans-serif; /* Adobe kit + fallbacks */
  --font-body: "Roboto Local", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-copy);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(54px,7vw,98px); line-height: .98; }
h2 { font-size: clamp(36px,4.3vw,62px); line-height: 1.08; }
h3 { font-size: 28px; line-height: 1.25; }
h4 { font-size: 21px; line-height: 1.35; }
p { margin: 0 0 22px; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 130px 0; }
.section--soft { background: var(--color-paper); }
.section--warm { background: var(--color-white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--color-primary-teal);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 1px; background: currentColor; content: ""; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--color-primary-teal);
  border-radius: 999px;
  color: var(--color-ink);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover, .button:focus-visible { color: var(--color-white); background: var(--color-primary-teal); transform: translateY(-2px); }
.button--solid { color: var(--color-ink); background: var(--color-primary-teal); }
.button--solid:hover, .button--solid:focus-visible { color: var(--color-ink); background: var(--color-white); border-color: var(--color-white); }
.reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .7s ease var(--reveal-delay,0ms), transform .7s cubic-bezier(.2,.7,.2,1) var(--reveal-delay,0ms); }
.reveal-ready.is-revealed { opacity: 1; transform: translateY(0); }

/* Date-aware event announcement */
.announcement {
  position: relative;
  z-index: 40;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 7px 58px;
  color: var(--color-white);
  background: var(--color-midnight);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
}
.announcement::before { position: absolute; inset: auto 0 0; height: 2px; background: var(--color-primary-teal); content: ""; }
.announcement[hidden] { display: none; }
.announcement-link { display: flex; width: 100%; min-width: 0; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0 14px; color: var(--color-white); text-decoration: none; }
.announcement-cta { padding-bottom: 1px; border-bottom: 1px solid var(--color-primary-teal); color: var(--color-primary-teal); white-space: nowrap; }
.announcement-close { position: absolute; top: 0; right: max(18px,calc((100% - var(--container)) / 2)); bottom: 0; width: 36px; border: 0; color: var(--color-white); background: transparent; font-size: 22px; cursor: pointer; opacity: .7; }

/* Shared navigation */
.site-header { position: sticky; top: 0; z-index: 30; height: 82px; border-bottom: 1px solid rgba(230,230,230,.75); background: rgba(255,255,255,.94); box-shadow: 0 8px 34px rgba(21,25,34,.04); backdrop-filter: blur(18px); }
.header-inner { display: flex; height: 82px; align-items: center; justify-content: space-between; }
.brand { display: flex; width: 118px; align-items: center; }
.brand img { width: 104px; }
.site-nav { display: flex; height: 100%; align-items: center; gap: 8px; }
.site-nav a { position: relative; display: flex; height: 100%; align-items: center; padding: 0 18px; color: var(--color-ink); font-family: var(--font-heading); font-size: 13px; font-weight: 400; letter-spacing: .025em; text-decoration: none; }
.site-nav a::after { position: absolute; right: 18px; bottom: 20px; left: 18px; height: 1px; background: var(--color-primary-teal); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 46px; height: 46px; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; color: var(--color-ink); background: transparent; cursor: pointer; }
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after { display: block; width: 18px; height: 1px; background: currentColor; content: ""; }
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; top: -6px; }
.nav-toggle-lines::after { position: absolute; top: 6px; }

/* Cinematic homepage hero */
.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 82px);
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background-image: linear-gradient(90deg,rgba(15,25,39,.94) 0%,rgba(21,38,65,.76) 43%,rgba(33,54,111,.23) 78%), url("../assets/img/home-hero.jpg");
  background-position: center;
  background-size: cover;
}
.home-hero::before { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 62%,rgba(15,25,39,.48)); content: ""; }
.home-hero::after { position: absolute; top: 12%; right: -10%; width: 48vw; height: 48vw; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: inset 0 0 0 100px rgba(0,179,197,.035); content: ""; }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 64px),var(--container)); margin-inline: auto; padding: 110px 0 100px; text-align: left; }
.hero-mark { width: 250px; margin: 0 0 42px; }
.hero-kicker { margin-bottom: 22px; color: var(--color-primary-teal); font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero-content h1 { max-width: 850px; margin-bottom: 28px; color: var(--color-white); }
.hero-summary { max-width: 610px; margin-bottom: 40px; color: rgba(255,255,255,.76); font-size: 20px; line-height: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-content .button { color: var(--color-white); border-color: rgba(255,255,255,.7); }
.hero-content .button--solid { color: var(--color-ink); border-color: var(--color-primary-teal); }
.hero-social { position: absolute; right: max(32px,calc((100% - var(--container)) / 2)); bottom: 40px; z-index: 3; }
.hero-social a { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; transition: background .25s ease, transform .25s ease; }
.hero-social a:hover { background: var(--color-primary-teal); transform: translateY(-3px); }
.hero-social img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.anchor-nav { display: flex; min-height: 68px; align-items: center; justify-content: center; gap: 52px; border-bottom: 1px solid var(--color-border); background: var(--color-white); }
.anchor-nav a { color: var(--color-text-slate); font-family: var(--font-heading); font-size: 12px; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

/* Shared inner-page hero */
.page-hero { position: relative; display: grid; min-height: 460px; place-items: end start; overflow: hidden; color: var(--color-white); background: linear-gradient(90deg,rgba(15,25,39,.93),rgba(33,54,111,.45)), url("../assets/img/boardwalk-hero.jpg") center 54%/cover no-repeat; }
.page-hero::after { position: absolute; right: -8%; bottom: -65%; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 1; padding-bottom: 78px; }
.page-hero .container::before { display: block; margin-bottom: 20px; color: var(--color-primary-teal); font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .21em; content: "KWR ACUITY STRATEGIES"; }
.page-hero h1 { max-width: 900px; margin: 0; color: var(--color-white); font-size: clamp(54px,7vw,88px); }
.page-hero-summary { max-width: 680px; margin: 24px 0 0; color: rgba(255,255,255,.68); font-size: 19px; line-height: 30px; }
.hero-role { display: inline-flex; margin-top: 20px; padding: 8px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: var(--color-white); font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .16em; line-height: 18px; text-transform: uppercase; }

/* Home — strategic introduction */
#intro.section { padding: 140px 0; background: var(--color-white); }
#intro .container { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(60px,8vw,120px); }
#intro .media { position: relative; }
#intro .media::before { position: absolute; top: -28px; right: -28px; width: 42%; height: 42%; border-top: 1px solid var(--color-primary-teal); border-right: 1px solid var(--color-primary-teal); content: ""; }
#intro .media::after { position: absolute; right: -42px; bottom: -42px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle,var(--color-primary-teal) 1.5px,transparent 1.5px); background-size: 11px 11px; content: ""; opacity: .35; }
#intro .media img { position: relative; z-index: 1; width: 100%; height: 630px; object-fit: cover; border-radius: 0 0 var(--radius-large) 0; box-shadow: var(--shadow-soft); }
#intro .container > div:last-child { position: relative; padding-left: 32px; }
#intro .container > div:last-child::before { position: absolute; top: 4px; bottom: 0; left: 0; width: 1px; background: var(--color-border); content: ""; }
#intro h2 { margin-bottom: 32px; }
#intro p:not(.eyebrow) { max-width: 560px; }

/* Home — identity and founder */
.who-section { padding: 130px 0; background: var(--color-paper); }
.who-section > .container { display: grid; grid-template-columns: .88fr 1.12fr; align-items: start; gap: 72px; }
.who-overview { position: sticky; top: 120px; padding: 20px 10px 0 0; }
.who-overview h2 { margin-bottom: 18px; }
.who-overview > p:not(.eyebrow) { max-width: 500px; }
.hub-badge { width: 96px; margin-top: 24px; filter: grayscale(1); opacity: .65; }
.founder-overview { display: grid; overflow: hidden; grid-template-columns: 1fr 280px; align-items: center; background: var(--color-midnight); border-radius: var(--radius-large); box-shadow: var(--shadow-soft); }
.founder-overview > div { padding: 54px 34px 54px 48px; }
.founder-overview p { color: rgba(255,255,255,.68); }
.founder-overview .eyebrow { color: var(--color-primary-teal); }
.founder-overview a { color: var(--color-white); font-family: var(--font-heading); font-size: 13px; text-underline-offset: 5px; }
.founder-overview > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; filter: saturate(.88) contrast(1.04); }

/* Recognition */
.awards-section { padding: 0 0 130px; background: var(--color-paper); }
.awards { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.award { display: grid; min-height: 160px; padding: 32px 26px; grid-template-columns: 42px 1fr; align-items: center; gap: 18px; border-right: 1px solid var(--color-border); }
.award:last-child { border-right: 0; }
.award img { width: 34px; height: 34px; object-fit: contain; filter: grayscale(1); opacity: .72; }
.award strong { color: var(--color-text-slate); font-family: var(--font-heading); font-size: 15px; font-weight: 300; line-height: 1.5; }

/* Home — events */
.events-section { padding: 135px 0; background: var(--color-white); }
.events-heading { display: grid; margin-bottom: 64px; grid-template-columns: .7fr 1.3fr; align-items: end; gap: 60px; }
.events-heading .eyebrow { grid-column: 1; }
.events-heading h2 { grid-column: 1; margin: 0; }
.events-heading > p:last-child { grid-column: 2; margin: 0 0 8px; max-width: 570px; justify-self: end; font-size: 20px; line-height: 33px; }
.event-calendar { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.event-card { position: relative; display: grid; min-height: 255px; overflow: hidden; grid-template-columns: 130px 1fr; border: 1px solid var(--color-border); border-radius: var(--radius-medium); background: var(--color-white); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.event-card:hover { border-color: rgba(0,179,197,.6); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.event-card.is-live { border-color: var(--color-primary-teal); }
.event-card.is-past { opacity: .58; }
.event-date { display: flex; padding: 28px 14px; flex-direction: column; align-items: center; justify-content: center; color: var(--color-white); background: var(--color-midnight); font-family: var(--font-heading); text-align: center; }
.event-card.is-live .event-date { background: var(--color-primary-teal); }
.event-month { color: var(--color-primary-teal); font-size: 11px; font-weight: 700; letter-spacing: .2em; line-height: 1; text-transform: uppercase; }
.event-card.is-live .event-month { color: var(--color-white); }
.event-days { margin: 13px 0 8px; font-size: 32px; line-height: 1; }
.event-year { color: rgba(255,255,255,.56); font-size: 11px; letter-spacing: .13em; }
.event-card-body { display: flex; padding: 31px 30px 28px; flex-direction: column; }
.event-meta { display: flex; margin-bottom: 16px; align-items: flex-start; justify-content: space-between; gap: 16px; }
.event-status { color: var(--color-primary-teal); font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.event-location { color: var(--color-text-light); font-size: 13px; line-height: 1.4; text-align: right; }
.event-card h3 { margin-bottom: 12px; font-size: 23px; }
.event-sponsorship { margin: 0; color: var(--color-primary-teal); font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.event-actions { display: flex; margin-top: auto; align-items: center; gap: 20px; }
.event-actions .button { min-height: 40px; padding: 6px 16px; font-size: 11px; }
.event-calendar-link { color: var(--color-text-slate); font-family: var(--font-heading); font-size: 12px; text-underline-offset: 4px; }
.event-noscript { text-align: center; }

/* Local LinkedIn CTA */
.linkedin-section { padding: 0 0 135px; background: var(--color-white); }
.linkedin-panel { position: relative; display: grid; min-height: 230px; overflow: hidden; padding: 50px 58px; grid-template-columns: 82px 1fr auto; align-items: center; gap: 35px; border-radius: var(--radius-large); color: rgba(255,255,255,.65); background: linear-gradient(120deg,var(--color-midnight),#24344b); box-shadow: var(--shadow-soft); }
.linkedin-panel::after { position: absolute; top: -150px; right: -70px; width: 380px; height: 380px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; content: ""; }
.linkedin-mark { position: relative; z-index: 1; display: grid; width: 72px; height: 72px; place-items: center; border-radius: 22px; background: var(--color-primary-teal); }
.linkedin-mark img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.linkedin-live-dot { position: absolute; top: -4px; right: -4px; width: 15px; height: 15px; border: 4px solid var(--color-midnight); border-radius: 50%; background: var(--color-white); animation: linkedin-pulse 2.5s ease-out infinite; }
.linkedin-copy { position: relative; z-index: 1; }
.linkedin-copy .eyebrow { margin-bottom: 9px; }
.linkedin-copy h2 { margin-bottom: 8px; color: var(--color-white); font-size: clamp(28px,3.2vw,42px); }
.linkedin-copy p:last-child { max-width: 690px; margin: 0; }
.linkedin-button { position: relative; z-index: 1; color: var(--color-white); border-color: rgba(255,255,255,.55); white-space: nowrap; }
@keyframes linkedin-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); } 70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

/* Editorial features */
.featured-section { padding: 130px 0; background: var(--color-paper); }
.featured-layout { display: grid; grid-template-columns: 180px 1fr; gap: 42px; }
.featured-label { position: sticky; top: 120px; align-self: start; color: var(--color-ink); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.featured-label::after { display: block; width: 1px; height: 110px; margin: 22px 0 0 4px; background: var(--color-primary-teal); content: ""; }
.featured-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: start; }
.feature-card { overflow: hidden; background: var(--color-white); border-radius: var(--radius-medium); box-shadow: var(--shadow-card); }
.feature-card:nth-child(2) { margin-top: 90px; }
.feature-card img { width: 100%; height: 360px; object-fit: cover; transition: transform .65s ease; }
.feature-card:nth-child(2) img { height: 285px; }
.feature-card:hover img { transform: scale(1.025); }
.feature-card-content { padding: 35px 38px 40px; }
.feature-card h3 { margin-bottom: 18px; font-size: 27px; }
.feature-card p { font-size: 16px; line-height: 27px; }
.feature-card .button { min-height: 0; padding: 0 0 4px; border: 0; border-bottom: 1px solid var(--color-primary-teal); border-radius: 0; color: var(--color-ink); }
.feature-card .button:hover { color: var(--color-primary-teal); background: transparent; transform: none; }

/* Services */
.services-intro { padding: 125px 0; background: var(--color-white); }
.services-intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.services-quote { position: relative; padding: 0 0 0 34px; color: var(--color-ink); font-family: var(--font-heading); font-size: clamp(28px,3.3vw,44px); line-height: 1.23; }
.services-quote::before { position: absolute; top: 6px; bottom: 6px; left: 0; width: 2px; background: var(--color-primary-teal); content: ""; }
.services-quote em { color: var(--color-primary-teal); font-style: normal; }
.services-copy { padding-top: 8px; }
.services-copy p:first-child { color: var(--color-text-medium); font-size: 22px; line-height: 35px; }
.services-method { padding: 130px 0; background: var(--color-paper); }
.method-heading { display: grid; margin-bottom: 70px; grid-template-columns: .55fr 1.45fr; gap: 50px; }
.method-heading h2 { margin: 0; font-size: clamp(32px,4vw,52px); }
.method-heading h2 br { display: none; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--color-border); }
.service-item { display: grid; min-height: 250px; padding: 42px 44px; grid-template-columns: 66px 1fr; align-items: start; gap: 28px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); transition: background .25s ease, transform .25s ease; }
.service-item:nth-child(2n) { border-right: 0; }
.service-item:hover { background: var(--color-white); transform: translateY(-3px); }
.service-icon { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 20px; background: var(--color-midnight); }
.service-icon img { width: 36px; height: 36px; object-fit: contain; }
.service-item h3 { display: block; margin-bottom: 10px; font-size: 24px; }
.service-item p { margin: 0; }

/* Team */
.team-section { padding: 130px 0; background: var(--color-white); }
.team-lead { display: grid; margin-bottom: 120px; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.team-lead > img { width: 100%; height: 660px; object-fit: cover; border-radius: var(--radius-large) 0 var(--radius-large) 0; box-shadow: var(--shadow-soft); }
.team-lead > div { max-width: 610px; }
.team-lead h2 { margin-bottom: 15px; }
.team-lead .eyebrow { margin-bottom: 28px; }
.team-lead .button, .team-card .button { min-height: 0; padding: 0 0 4px; border: 0; border-bottom: 1px solid var(--color-primary-teal); border-radius: 0; }
.team-lead .button:hover, .team-card .button:hover { color: var(--color-primary-teal); background: transparent; transform: none; }
.card-social { display: flex; gap: 12px; margin: 24px 0 0; }
.card-social a, .profile-contact a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; background: var(--color-white); transition: border-color .25s ease, transform .25s ease; }
.card-social a:hover, .profile-contact a:hover { border-color: var(--color-primary-teal); transform: translateY(-2px); }
.card-social img, .profile-contact img { width: 17px; height: 17px; object-fit: contain; }
.team-awards { margin-bottom: 125px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 70px 32px; }
.team-card { min-width: 0; }
.team-card > img, .team-card-placeholder-visual { width: 100%; aspect-ratio: .92; object-fit: cover; border-radius: var(--radius-medium); filter: saturate(.86); transition: filter .35s ease, transform .35s ease; }
.team-card:hover > img { filter: saturate(1); transform: translateY(-4px); }
.team-card-content { padding: 24px 8px 0; }
.team-card h3 { margin-bottom: 8px; font-size: 28px; }
.job-title { display: inline-block; margin-bottom: 15px; color: var(--color-primary-teal); font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }
.team-card .card-social { margin: 0 0 16px; }
.team-card p { min-height: 116px; font-size: 16px; line-height: 27px; }
.team-card-placeholder-visual { display: grid; place-items: center; border: 1px dashed var(--color-text-light); background: var(--color-paper); }
.placeholder-mark { display: grid; width: 110px; height: 110px; place-items: center; border-radius: 50%; color: var(--color-white); background: var(--color-midnight); font-family: var(--font-heading); font-size: 32px; }

/* Individual profiles */
.profile-section, main > .section:has(.profile-layout) { padding: 130px 0; }
.profile-layout { display: grid; max-width: 1080px; margin: 0 auto; grid-template-columns: 380px 1fr; align-items: start; gap: 80px; }
.profile-photo { position: sticky; top: 112px; }
.profile-photo > img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-large) 0 var(--radius-large) 0; box-shadow: var(--shadow-card); }
.profile-contact { display: flex; gap: 12px; margin-top: 18px; }
.profile-layout .bio { padding-top: 8px; }
.profile-layout .bio > .eyebrow, .profile-layout .bio > h2 { display: none; }
.bio p { margin-bottom: 24px; }
.bio p:first-of-type { color: var(--color-text-medium); font-size: 21px; line-height: 34px; }

/* Contact */
.contact-section { padding: 130px 0; background: var(--color-white); }
.contact-form-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 90px; }
.contact-form-copy { padding: 35px 0 0 10px; }
.contact-form-copy h2 { margin-bottom: 32px; }
.contact-form-copy > p:not(.eyebrow) { max-width: 480px; }
.contact-response-note { margin-top: 38px; padding: 24px 0 0 32px; border-top: 1px solid var(--color-border); font-size: 15px; line-height: 25px; }
.contact-form { position: relative; padding: 54px 52px 48px; border-radius: var(--radius-large); background: var(--color-paper); box-shadow: var(--shadow-card); }
.contact-form::before { position: absolute; top: 0; right: 52px; left: 52px; height: 3px; background: var(--color-primary-teal); content: ""; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 22px; }
.form-field { display: grid; gap: 9px; color: var(--color-text-slate); font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.form-field em { margin-left: 5px; color: var(--color-text-light); font-size: 9px; font-style: normal; }
.form-field--full { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 54px; padding: 12px 15px; border: 1px solid var(--color-border); border-radius: 10px; outline: 0; color: var(--color-ink); background: var(--color-white); font-family: var(--font-body); font-size: 17px; font-weight: 300; line-height: 27px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--color-primary-teal); box-shadow: 0 0 0 3px rgba(0,179,197,.1); }
.form-submit-row { display: flex; margin-top: 30px; align-items: center; gap: 22px; }
.form-submit-row .button { color: var(--color-white); background: var(--color-midnight); border-color: var(--color-midnight); cursor: pointer; }
.form-submit-row .button:hover { background: var(--color-primary-teal); border-color: var(--color-primary-teal); }
.form-submit-row p { margin: 0; font-size: 12px; line-height: 19px; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.intro-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.thank-you-section { padding: 140px 0; text-align: center; }
.thank-you-section .container { max-width: 720px; }
.thank-you-section h2 { margin: 6px 0 24px; }
.thank-you-actions { display: flex; margin-top: 38px; align-items: center; justify-content: center; gap: 24px; }
.thank-you-actions > a:not(.button) { color: var(--color-primary-teal); text-underline-offset: 4px; }

/* Footer */
.site-footer { padding: 78px 0 28px; color: rgba(255,255,255,.5); background: var(--color-ink); }
.footer-grid { display: grid; min-height: 150px; grid-template-columns: 1.2fr .8fr .45fr; align-items: start; gap: 60px; }
.footer-logo { width: 155px; margin-bottom: 20px; }
.site-footer p { max-width: 330px; font-size: 15px; line-height: 25px; }
.site-footer h3 { margin-bottom: 18px; color: var(--color-white); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.footer-nav a { font-size: 14px; text-decoration: none; transition: color .2s ease; }
.footer-nav a:hover { color: var(--color-primary-teal); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.footer-social img { width: 17px; height: 17px; filter: brightness(0) invert(1); }
.footer-bottom { display: flex; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); justify-content: space-between; font-size: 12px; letter-spacing: .04em; }

/* 404 */
.not-found { position: relative; display: grid; min-height: 100vh; place-items: center; overflow: hidden; padding: 60px; color: rgba(255,255,255,.7); background: linear-gradient(90deg,rgba(15,25,39,.95),rgba(33,54,111,.58)), url("../assets/img/not-found-bridge.jpg") center/cover; text-align: center; }
.not-found::after { position: absolute; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.not-found > div { position: relative; z-index: 1; }
.not-found h1 { color: var(--color-white); }

@media (max-width: 1050px) {
  .container { width: min(calc(100% - 48px),var(--container)); }
  .home-hero::after { right: -18%; }
  #intro .container { gap: 58px; }
  #intro .media img { height: 540px; }
  .who-section > .container { grid-template-columns: 1fr; }
  .who-overview { position: static; max-width: 720px; }
  .founder-overview { grid-template-columns: 1fr 330px; }
  .awards { grid-template-columns: 1fr 1fr; }
  .award:nth-child(2) { border-right: 0; }
  .award:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .events-heading { grid-template-columns: 1fr; gap: 15px; }
  .events-heading .eyebrow, .events-heading h2, .events-heading > p:last-child { grid-column: 1; justify-self: start; }
  .linkedin-panel { grid-template-columns: 76px 1fr; }
  .linkedin-button { grid-column: 2; justify-self: start; }
  .featured-layout { grid-template-columns: 120px 1fr; }
  .services-intro-grid, .contact-form-layout { gap: 55px; }
  .team-lead { grid-template-columns: .9fr 1.1fr; gap: 50px; }
  .team-lead > img { height: 590px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .profile-layout { grid-template-columns: 330px 1fr; gap: 55px; }
}

@media (max-width: 780px) {
  body { font-size: 17px; line-height: 29px; }
  .container { width: min(calc(100% - 38px),var(--container)); }
  .announcement { min-height: 48px; padding: 7px 48px 7px 14px; font-size: 8px; line-height: 12px; }
  .announcement-close { right: 8px; }
  .site-header, .header-inner { height: 72px; }
  .brand img { width: 92px; }
  .nav-toggle { display: grid; }
  .site-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; height: auto; padding: 16px 19px 22px; background: rgba(255,255,255,.98); box-shadow: 0 20px 50px rgba(21,25,34,.12); }
  .site-nav.is-open { display: grid; }
  .site-nav a { height: 52px; padding: 0 8px; border-bottom: 1px solid var(--color-border); }
  .site-nav a::after { right: 8px; bottom: 0; left: 8px; }
  .home-hero { min-height: 820px; background-image: linear-gradient(180deg,rgba(15,25,39,.85),rgba(21,38,65,.62)),url("../assets/img/not-found-bridge.jpg"); background-position: center; }
  .home-hero::after { top: 31%; right: -65%; width: 130vw; height: 130vw; }
  .hero-content { width: min(calc(100% - 38px),var(--container)); padding: 100px 0 125px; text-align: left; }
  .hero-mark { width: 200px; margin-bottom: 35px; }
  .hero-summary { font-size: 18px; line-height: 29px; }
  .hero-social { right: 20px; bottom: 26px; }
  .anchor-nav { gap: 28px; }
  .page-hero { min-height: 385px; }
  .page-hero .container { padding-bottom: 55px; }
  #intro.section { padding: 90px 0; }
  #intro .container { grid-template-columns: 1fr; gap: 60px; }
  #intro .media img { height: 440px; }
  #intro .container > div:last-child { padding-left: 24px; }
  .who-section { padding: 90px 0; }
  .founder-overview { grid-template-columns: 1fr; }
  .founder-overview > img { min-height: 380px; order: -1; }
  .founder-overview > div { padding: 38px 30px 44px; }
  .awards-section { padding-bottom: 90px; }
  .event-calendar { grid-template-columns: 1fr; }
  .events-section { padding: 90px 0; }
  .linkedin-section { padding-bottom: 90px; }
  .linkedin-panel { padding: 38px 32px; grid-template-columns: 1fr; border-radius: var(--radius-medium); }
  .linkedin-button { grid-column: 1; }
  .featured-section { padding: 90px 0; }
  .featured-layout { grid-template-columns: 1fr; }
  .featured-label { position: static; }
  .featured-label::after { width: 90px; height: 1px; margin: 15px 0 10px; }
  .featured-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(2) { margin-top: 0; }
  .feature-card img, .feature-card:nth-child(2) img { height: 300px; }
  .services-intro, .services-method, .team-section, .contact-section { padding: 90px 0; }
  .services-intro-grid, .contact-form-layout { grid-template-columns: 1fr; gap: 55px; }
  .method-heading { grid-template-columns: 1fr; gap: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item, .service-item:nth-child(2n) { border-right: 0; }
  .team-lead { grid-template-columns: 1fr; gap: 42px; }
  .team-lead > img { height: auto; aspect-ratio: .78; }
  .team-grid { grid-template-columns: 1fr; gap: 58px; }
  .team-card p { min-height: 0; }
  .profile-layout { grid-template-columns: 1fr; gap: 40px; }
  .profile-photo { position: static; }
  .profile-photo > img { height: auto; aspect-ratio: .78; }
  .contact-form-copy { padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero-content h1 { font-size: 53px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-social { display: none; }
  .anchor-nav { min-height: 58px; gap: 20px; }
  #intro .media::before, #intro .media::after { display: none; }
  #intro .media img { height: 360px; border-radius: var(--radius-medium); }
  .awards { grid-template-columns: 1fr; }
  .award, .award:nth-child(2) { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--color-border); }
  .award:last-child { border-bottom: 0; }
  .event-card { grid-template-columns: 1fr; }
  .event-date { padding: 16px 22px; flex-direction: row; justify-content: flex-start; gap: 10px; }
  .event-days { margin: 0; font-size: 23px; }
  .event-card-body { padding: 25px 23px 28px; }
  .event-actions { margin-top: 20px; flex-wrap: wrap; }
  .event-location { max-width: 55%; }
  .linkedin-panel { padding: 34px 25px; }
  .feature-card img, .feature-card:nth-child(2) img { height: 235px; }
  .feature-card-content { padding: 27px 25px 32px; }
  .services-quote { padding-left: 22px; }
  .service-item { min-height: 0; padding: 32px 20px; grid-template-columns: 58px 1fr; gap: 18px; }
  .service-icon { width: 54px; height: 54px; border-radius: 16px; }
  .team-lead > img, .team-card > img, .team-card-placeholder-visual { border-radius: var(--radius-medium); }
  .team-grid { gap: 52px; }
  .contact-form { padding: 38px 22px 34px; border-radius: var(--radius-medium); }
  .contact-form::before { right: 22px; left: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .thank-you-actions { flex-direction: column; }
  .site-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .linkedin-live-dot { animation: none; }
}
