/* =============================================================================
   LOCHLANN STRATEGIES — BRAND PROFESSIONAL SYSTEM
   Version 15.0

   Reviewability conventions:
   - All brand decisions are centralized in Design Tokens.
   - Layout and components are grouped by purpose.
   - No inline styles, decorative diagrams, arrows, or utility-class chains.
   - Mobile behavior is defined explicitly at the end of the file.
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */

:root {
  color-scheme: dark;

  /* Primary brand field: layered navy rather than white page stock. */
  --ink-975: #071520;
  --ink-950: #0b1d2b;
  --ink-900: #102938;
  --ink-850: #163443;
  --ink-800: #1d4050;
  --ink-700: #365a68;

  /* Warm neutrals remain available for small accents and controls. */
  --paper-100: #f5f0e8;
  --paper-200: #eee7dc;
  --paper-300: #e2d8ca;
  --stone-100: #203d49;
  --stone-200: #294957;
  --mist-100: #132d3a;
  --mist-200: #1a3947;

  --brass-700: #c09b61;
  --brass-600: #d0ad72;
  --brass-400: #dfc38f;
  --brass-300: #ead7b1;

  --text: #f4f0e9;
  --text-muted: #b8c6c8;
  --text-on-dark: #f7f3ec;
  --text-on-dark-muted: #c5d0d0;

  --line: rgba(236, 241, 239, 0.14);
  --line-strong: rgba(236, 241, 239, 0.24);
  --line-on-dark: rgba(236, 241, 239, 0.17);
  --focus: #dfc38f;

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 75rem;
  --text-column: 46rem;
  --gutter: clamp(1.2rem, 4vw, 2.5rem);
  --header-height: 5.25rem;
  --section-space: clamp(4.5rem, 7.5vw, 7.25rem);
  --section-space-small: clamp(3.25rem, 5.5vw, 5rem);

  --radius: 0.2rem;
  --shadow-header: 0 0.6rem 1.8rem rgba(20, 39, 53, 0.08);
  --transition: 180ms ease;
}

/* Brand balance for Version 14.1:
   - The site is predominantly navy and slate.
   - Warm ivory is reserved for text and the light CTA treatment.
   - Brass is an accent, not a decorative field.
   - Adjacent sections transition dark-to-dark to avoid abrupt contrast shifts.
   ============================================================================= */

/* =============================================================================
   2. RESET AND SAFARI-SAFE BASE
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink-950);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
header,
footer,
section,
article,
aside,
nav,
div,
dl,
ul,
ol,
li {
  min-width: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

p,
li,
dd,
dt {
  max-width: 100%;
  overflow-wrap: anywhere;
}

ul,
ol {
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  overflow-wrap: break-word;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  hyphens: none;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.05rem, 3.8vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.78rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
}

::selection {
  background: var(--brass-300);
  color: var(--ink-950);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.breakable,
.contact-email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* =============================================================================
   3. SHARED LAYOUT AND TYPE
   ============================================================================= */

.container {
  width: min(var(--container), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.surface-paper {
  background: linear-gradient(132deg, var(--ink-900), var(--ink-950));
}

.surface-stone {
  background: linear-gradient(135deg, var(--stone-100), var(--ink-900));
}

.surface-mist {
  background: linear-gradient(132deg, var(--mist-100), var(--ink-950) 92%);
}

.eyebrow {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--brass-700);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow-plain::before {
  display: none;
}

.eyebrow-on-dark {
  color: var(--brass-300);
}

.lead {
  color: var(--text);
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  line-height: 1.58;
}

.index {
  display: block;
  color: var(--brass-700);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.15em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.section-heading h2 {
  max-width: 15ch;
  margin-top: 1rem;
}

.section-heading > p {
  max-width: 40rem;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.section-heading.compact {
  margin-bottom: 2.5rem;
}

.secondary-link,
.decision-item a {
  display: inline-block;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid var(--brass-600);
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}

.secondary-link:hover,
.decision-item a:hover {
  border-color: var(--brass-300);
  color: var(--brass-300);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  border: 1px solid var(--line);
  background: var(--ink-800);
  color: var(--text-on-dark);
  font-weight: 700;
  text-decoration: none;
}

/* =============================================================================
   4. HEADER AND NAVIGATION
   ============================================================================= */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 21, 32, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(7, 21, 32, 0.985);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 2.5vw, 2.3rem);
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 0.72rem;
  align-items: center;
  max-width: 100%;
  color: var(--text-on-dark);
  text-decoration: none;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-text strong {
  overflow-wrap: normal;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 0.36rem;
  color: var(--text-muted);
  font-size: 0.55rem;
  font-weight: 740;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: clamp(0.8rem, 1.7vw, 1.5rem);
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.35rem;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  font-weight: 690;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brass-600);
  content: "";
  transition: transform var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
}

/* =============================================================================
   5. BUTTONS
   ============================================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.05rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid var(--brass-600);
  border-radius: var(--radius);
  background: var(--brass-600);
  color: var(--ink-975);
  font-size: 0.81rem;
  font-weight: 730;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--brass-400);
  background: var(--brass-400);
}

.button-compact {
  min-height: 2.55rem;
  padding: 0.64rem 0.9rem;
  font-size: 0.73rem;
}

.button-light {
  border-color: var(--paper-100);
  background: var(--paper-100);
  color: var(--ink-950);
}

.button-light:hover {
  border-color: var(--paper-300);
  background: var(--paper-300);
}

/* =============================================================================
   6. HOME HERO AND PERSPECTIVE STRIP
   ============================================================================= */

.home-hero,
.page-hero {
  background: linear-gradient(126deg, var(--ink-975) 0%, var(--ink-950) 54%, var(--ink-850) 100%);
}

.home-hero {
  position: relative;
  padding: clamp(5rem, 8.5vw, 8rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
}

.home-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(var(--gutter), calc((100% - var(--container)) / 2));
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brass-600) 20%, var(--brass-600) 80%, transparent);
  content: "";
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.home-hero-copy {
  padding-left: clamp(1.25rem, 2.7vw, 2.25rem);
}

.home-hero h1 {
  max-width: 12.5ch;
  margin-top: 1.25rem;
}

.home-hero-copy > p {
  max-width: 43rem;
  margin-top: 1.55rem;
  color: var(--text-muted);
  font-size: clamp(1.12rem, 1.65vw, 1.38rem);
  line-height: 1.56;
}

.actions {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.15rem;
}

.hero-note {
  padding: 1.35rem 0 0 1.4rem;
  border-top: 2px solid var(--brass-600);
  border-left: 1px solid var(--line);
}

.hero-note > span {
  color: var(--brass-700);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note p {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.22;
}

.perspective-strip {
  padding-block: clamp(1.9rem, 3.5vw, 2.8rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, var(--ink-850), var(--ink-900));
}

.perspective-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.perspective-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.perspective-strip p {
  color: var(--text-muted);
}

/* =============================================================================
   7. PAGE HERO
   ============================================================================= */

.page-hero {
  padding: clamp(4.75rem, 7.5vw, 7rem) 0 clamp(4.25rem, 6.5vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  position: relative;
  padding-left: clamp(1.25rem, 2.7vw, 2.25rem);
}

.page-hero-inner::before {
  position: absolute;
  top: 0.2rem;
  bottom: 0.25rem;
  left: 0;
  width: 1px;
  background: var(--brass-600);
  content: "";
}

.page-hero h1 {
  max-width: 16ch;
  margin-top: 1.2rem;
}

.page-hero p {
  max-width: 46rem;
  margin-top: 1.45rem;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
}

/* =============================================================================
   8. HOME PAGE EDITORIAL COMPONENTS
   ============================================================================= */

.decision-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 3rem;
}

.decision-item {
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  min-height: 18.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-strong);
}

.decision-item:nth-child(4),
.decision-item:nth-child(5) {
  grid-column: span 6;
  min-height: 16rem;
}

.decision-item h3 {
  max-width: 15ch;
  margin-top: 1.65rem;
}

.decision-item p {
  max-width: 34rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.decision-item a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.6rem;
}

.three-column-grid,
.four-column-grid {
  display: grid;
  gap: 1.5rem;
}

.three-column-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-column-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-item {
  min-height: 12.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-strong);
}

.editorial-item p {
  margin-top: 0.85rem;
  color: var(--text-muted);
}

.engagement-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.engagement-preview > div:first-child h2 {
  max-width: 14ch;
  margin-top: 1rem;
}

.engagement-preview > div:first-child p {
  max-width: 34rem;
  margin-top: 1.15rem;
  color: var(--text-muted);
}

.engagement-preview > div:first-child .secondary-link {
  margin-top: 1.8rem;
}

.engagement-preview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.engagement-preview-list article {
  padding: 1.25rem 1.2rem 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.engagement-preview-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.engagement-preview-list article:nth-child(even) {
  padding-left: 1.2rem;
}

.engagement-preview-list h3 {
  font-size: 1.16rem;
}

.engagement-preview-list p {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.experience-band {
  padding-block: 0.5rem;
}

.organization-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.organization-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 0.9rem;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  text-align: center;
}

.organization-list span:last-child {
  border-right: 0;
}

.disclaimer {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.7rem;
}

/* =============================================================================
   9. CONTAINED DARK PANELS
   ============================================================================= */

.proof-shell,
.principle-shell,
.environment-shell,
.founder-shell,
.cta-shell {
  background: linear-gradient(130deg, var(--ink-850), var(--ink-900));
}

.proof-panel,
.environment-panel,
.founder-panel,
.principle-panel,
.cta-panel,
.contact-panel {
  background: linear-gradient(118deg, var(--ink-975), var(--ink-850));
  color: var(--text-on-dark);
}

.proof-panel {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-left: 0.28rem solid var(--brass-400);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}

.proof-heading h2 {
  max-width: 17ch;
  color: var(--text-on-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article {
  padding: 1.7rem 1.3rem 0 0;
  border-right: 1px solid var(--line-on-dark);
}

.proof-grid article + article {
  padding-left: 1.3rem;
}

.proof-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-grid h3 {
  color: var(--text-on-dark);
  font-size: 1.2rem;
}

.proof-grid p {
  margin-top: 0.65rem;
  color: var(--text-on-dark-muted);
  font-size: 0.86rem;
}

.principle-panel,
.founder-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-left: 0.28rem solid var(--brass-400);
}

.principle-panel h2,
.founder-panel h2 {
  max-width: 15ch;
  margin-top: 1rem;
  color: var(--text-on-dark);
}

.principle-panel > p,
.founder-panel > div:last-child p {
  color: var(--text-on-dark-muted);
}

.founder-panel .lead {
  color: var(--text-on-dark);
}

.founder-panel > div:last-child p + p {
  margin-top: 1rem;
}

.environment-panel {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-left: 0.28rem solid var(--brass-400);
}

.environment-panel h2 {
  max-width: 18ch;
  margin-top: 1rem;
  color: var(--text-on-dark);
}

.environment-panel > div:first-child > p {
  max-width: 48rem;
  margin-top: 1rem;
  color: var(--text-on-dark-muted);
}

.organization-list-dark {
  border-color: var(--line-on-dark);
}

.organization-list-dark span {
  border-color: var(--line-on-dark);
  color: var(--text-on-dark);
}

.disclaimer-on-dark {
  color: var(--text-on-dark-muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.25rem);
  border-left: 0.28rem solid var(--brass-400);
}

.cta-panel h2 {
  max-width: 18ch;
  margin-top: 1rem;
  color: var(--text-on-dark);
}

.cta-panel p {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--text-on-dark-muted);
}

/* =============================================================================
   10. SERVICES AND EXPERIENCE ROWS
   ============================================================================= */

.service-list,
.perspective-list,
.engagement-list-full {
  border-top: 1px solid var(--line-strong);
}

.service-row,
.perspective-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.service-row h2,
.perspective-row h2 {
  max-width: 16ch;
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.service-row ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.service-row li::marker {
  color: var(--brass-600);
}

.perspective-row > div:last-child > p:not(.lead) {
  margin-top: 1rem;
  color: var(--text-muted);
}

.client-value {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.client-value strong {
  color: var(--text);
}

/* =============================================================================
   11. ENGAGEMENT MODELS
   ============================================================================= */

.engagement-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-block: clamp(3rem, 5.5vw, 4.75rem);
  border-bottom: 1px solid var(--line);
}

.engagement-row > div:first-child h2 {
  max-width: 16ch;
  margin-top: 0.85rem;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.engagement-row > div:first-child .lead {
  margin-top: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.detail-grid > div {
  padding: 1.15rem 1.1rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.detail-grid > div:nth-child(even) {
  padding-left: 1.1rem;
}

.detail-grid dt {
  color: var(--brass-700);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-grid dd {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =============================================================================
   12. ABOUT AND CONTACT
   ============================================================================= */

.editorial-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.editorial-split h2,
.contact-grid > div > h2 {
  max-width: 15ch;
  margin-top: 1rem;
}

.editorial-split > div:last-child p + p {
  margin-top: 1.15rem;
  color: var(--text-muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: start;
}

.contact-grid > div > .lead {
  max-width: 42rem;
  margin-top: 1.25rem;
}

.contact-steps {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-strong);
}

.contact-steps article {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.contact-steps h3 {
  font-size: 1.2rem;
}

.contact-steps p {
  margin-top: 0.4rem;
  color: var(--text-muted);
}

.contact-panel {
  padding: clamp(2rem, 4vw, 3.25rem);
  border-left: 0.28rem solid var(--brass-400);
}

.contact-panel h2 {
  margin-top: 1rem;
  color: var(--text-on-dark);
}

.contact-panel > p {
  margin-top: 1rem;
  color: var(--text-on-dark-muted);
}

.contact-email {
  display: block;
  margin-top: 1.5rem;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
  text-decoration-color: var(--brass-400);
  text-underline-offset: 0.22rem;
}

.contact-panel .button {
  width: 100%;
  margin-top: 1.5rem;
}

.contact-panel .small-note {
  font-size: 0.78rem;
}

/* =============================================================================
   13. FOOTER
   ============================================================================= */

.site-footer {
  padding: clamp(4rem, 7vw, 6rem) 0 1.5rem;
  background: var(--ink-975);
  color: var(--text-on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(9rem, 0.55fr) minmax(12rem, 0.7fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.brand-on-dark {
  color: var(--text-on-dark);
}

.brand-on-dark .brand-text small {
  color: var(--text-on-dark-muted);
}

.footer-brand p {
  max-width: 31rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
}

.footer-nav h2 {
  color: var(--brass-300);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  list-style: none;
}

.footer-nav a {
  color: var(--text-on-dark-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--text-on-dark);
}

.footer-bottom {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.67rem;
}

/* =============================================================================
   14. RESPONSIVE LAYOUTS
   ============================================================================= */

@media (max-width: 72rem) {
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    justify-content: end;
  }

  .proof-grid,
  .four-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid article:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .proof-grid article:nth-child(n + 3) {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-on-dark);
  }
}

@media (max-width: 58rem) {
  :root {
    --header-height: 4.75rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 0.55rem 0.72rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text-on-dark);
    font-size: 0.75rem;
    font-weight: 740;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: grid;
    width: min(20rem, calc(100vw - (2 * var(--gutter))));
    max-width: calc(100vw - (2 * var(--gutter)));
    padding: 0.75rem;
    border: 1px solid var(--line);
    background: var(--ink-900);
    box-shadow: var(--shadow-header);
  }

  .mobile-menu-panel > a:not(.button) {
    padding: 0.8rem 0.7rem;
    border-bottom: 1px solid var(--line);
    color: var(--text-on-dark);
    font-size: 0.84rem;
    text-decoration: none;
  }

  .mobile-menu:not([open]) .mobile-menu-panel {
    display: none;
  }

  .mobile-menu[open] summary {
    border-color: var(--brass-600);
    background: var(--ink-800);
  }

  .mobile-menu-panel .button {
    margin-top: 0.75rem;
  }

  .home-hero-grid,
  .perspective-strip-inner,
  .section-heading,
  .proof-heading,
  .engagement-preview,
  .service-row,
  .perspective-row,
  .engagement-row,
  .principle-panel,
  .founder-panel,
  .cta-panel,
  .editorial-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 3rem;
  }

  .hero-note {
    max-width: 34rem;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .decision-item,
  .decision-item:nth-child(4),
  .decision-item:nth-child(5) {
    grid-column: span 6;
    min-height: auto;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
  }

  .editorial-item {
    min-height: auto;
  }

  .organization-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organization-list span:nth-child(even) {
    border-right: 0;
  }

  .organization-list span {
    border-bottom: 1px solid var(--line);
  }

  .organization-list span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .organization-list-dark span {
    border-color: var(--line-on-dark);
  }

  .service-row,
  .perspective-row,
  .engagement-row {
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 40rem) {
  :root {
    --gutter: 1.05rem;
    --section-space: 4.25rem;
    --section-space-small: 3.25rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12.2vw, 3.55rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .brand img {
    width: 2.3rem;
    height: 2.3rem;
  }

  .brand-text strong {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }

  .brand-text small {
    font-size: 0.47rem;
    letter-spacing: 0.12em;
  }

  .home-hero {
    padding-top: 4.25rem;
  }

  .home-hero::before {
    left: var(--gutter);
  }

  .home-hero-copy,
  .page-hero-inner {
    padding-left: 1rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .button,
  .actions .secondary-link {
    width: 100%;
    text-align: center;
  }

  .actions .secondary-link {
    padding: 0.8rem 0;
  }

  .decision-grid,
  .proof-grid,
  .four-column-grid,
  .engagement-preview-list,
  .organization-list,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .decision-item,
  .decision-item:nth-child(4),
  .decision-item:nth-child(5) {
    grid-column: 1;
  }

  .decision-item a {
    margin-top: 1.5rem;
  }

  .proof-grid article,
  .proof-grid article + article,
  .proof-grid article:nth-child(n + 3) {
    margin-top: 0;
    padding: 1.3rem 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-on-dark);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .engagement-preview-list article,
  .engagement-preview-list article:nth-child(even) {
    padding: 1.1rem 0;
    border-right: 0;
  }

  .organization-list span,
  .organization-list span:nth-child(even),
  .organization-list span:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .organization-list span:last-child {
    border-bottom: 0;
  }

  .organization-list-dark span,
  .organization-list-dark span:nth-child(even),
  .organization-list-dark span:last-child {
    border-color: var(--line-on-dark);
  }

  .detail-grid > div,
  .detail-grid > div:nth-child(even),
  .detail-grid > div:nth-child(odd) {
    padding: 1rem 0;
    border-right: 0;
  }

  .cta-panel,
  .proof-panel,
  .principle-panel,
  .founder-panel,
  .environment-panel,
  .contact-panel {
    padding: 2rem 1.25rem;
  }

  .cta-panel .button {
    width: 100%;
  }

  .contact-steps article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 22rem) {
  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 0.78rem;
  }
}





/* Desktop hero proportion: striking without becoming a poster-sized block. */
@media (min-width: 58.01rem) {
  .home-hero {
    padding: clamp(4.5rem, 6vw, 6rem) 0 clamp(4rem, 5.5vw, 5.25rem);
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
  }

  .home-hero h1 {
    max-width: 15ch;
    font-size: clamp(3.8rem, 5vw, 4.85rem);
  }

  .hero-note {
    width: min(100%, 23rem);
    justify-self: end;
  }
}

/* =============================================================================
   15. RELEASE 14 MOBILE-SAFARI SAFEGUARDS
   ============================================================================= */

.header-inner > *,
.home-hero-grid > *,
.perspective-strip-inner > *,
.section-heading > *,
.proof-heading > *,
.engagement-preview > *,
.service-row > *,
.perspective-row > *,
.engagement-row > *,
.principle-panel > *,
.founder-panel > *,
.cta-panel > *,
.editorial-split > *,
.contact-grid > * {
  min-width: 0;
}

.button,
.secondary-link,
.decision-item a,
.mobile-menu-panel a,
.footer-nav a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mobile-menu-panel {
  z-index: 20;
}

@supports (width: 100dvw) {
  @media (max-width: 58rem) {
    .mobile-menu-panel {
      width: min(20rem, calc(100dvw - (2 * var(--gutter))));
      max-width: calc(100dvw - (2 * var(--gutter)));
    }
  }
}

@media (max-width: 30rem) {
  .home-hero-copy,
  .page-hero-inner {
    padding-left: 0.75rem;
  }

  .home-hero-copy h1,
  .page-hero-inner h1 {
    max-width: 100%;
  }

  .hero-note,
  .decision-item,
  .editorial-item,
  .contact-panel,
  .cta-panel,
  .proof-panel,
  .principle-panel,
  .founder-panel,
  .environment-panel {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =============================================================================
   16. VERSION 14.2 — BRAND POLISH

   Purpose:
   - Preserve the Version 14.1 structure and mobile behavior.
   - Strengthen Lochlann's own visual identity without adding illustrations.
   - Simplify surfaces, transitions, brass usage, and repeated panel treatments.
   ============================================================================= */

:root {
  --surface-deep: #091923;
  --surface-navy: #102936;
  --surface-slate: #1a3b48;
  --surface-navy-soft: #142f3d;
  --transition-band: 2.25rem;
}

/* Three disciplined surfaces replace near-duplicate gradients. */
.surface-paper {
  background: var(--surface-navy);
}

.surface-stone {
  background: var(--surface-slate);
}

.surface-mist {
  background: var(--surface-navy-soft);
}

.section {
  position: relative;
}

/* Tonal fades create continuity without visible section boxes. */
.section + .section::before,
.perspective-strip + .section::before,
.home-hero + .perspective-strip::before,
.page-hero + .section::before {
  position: absolute;
  z-index: 0;
  top: calc(-1 * var(--transition-band));
  right: 0;
  left: 0;
  height: var(--transition-band);
  background: linear-gradient(to bottom, rgba(9, 25, 35, 0), rgba(9, 25, 35, 0.18));
  pointer-events: none;
  content: "";
}

.section > .container,
.perspective-strip > .container {
  position: relative;
  z-index: 1;
}

/* The crest is the sole decorative brand device. */
.page-home .home-hero::after {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 7vw, 7rem);
  width: clamp(24rem, 35vw, 36rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("lochlann-crest-1024.png") center / contain no-repeat;
  opacity: 0.027;
  filter: grayscale(1) contrast(1.08);
  pointer-events: none;
  content: "";
}

.home-hero-grid,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

/* One signature page line replaces repeated brass-edged boxes. */
.home-hero-copy,
.page-hero-inner {
  border-left-color: rgba(208, 173, 114, 0.78);
}

.proof-panel,
.environment-panel,
.founder-panel,
.principle-panel,
.cta-panel,
.contact-panel {
  border-left: 0;
  box-shadow: inset 0 1px 0 rgba(234, 215, 177, 0.14), inset 0 -1px 0 rgba(236, 241, 239, 0.08);
}

.proof-panel::before,
.environment-panel::before,
.founder-panel::before,
.principle-panel::before,
.cta-panel::before,
.contact-panel::before {
  display: none;
}

/* Keep brass for selection, action, and a limited number of page signatures. */
.eyebrow {
  color: var(--brass-400);
}

.eyebrow::before {
  width: 1.35rem;
  opacity: 0.78;
}

.button {
  background: var(--brass-600);
  border-color: var(--brass-600);
}

.button:hover {
  background: var(--brass-400);
  border-color: var(--brass-400);
}

.secondary-link,
.decision-item a {
  color: var(--text-on-dark);
  text-decoration-color: rgba(208, 173, 114, 0.55);
  text-underline-offset: 0.28em;
}

.secondary-link:hover,
.decision-item a:hover {
  color: var(--brass-300);
}

/* Reduce visible compartmentalization. */
.decision-item,
.editorial-item,
.engagement-preview-list article,
.organization-list span,
.proof-grid article,
.detail-grid > div {
  border-color: rgba(236, 241, 239, 0.11);
}

.decision-item {
  padding-top: 2rem;
}

.decision-item .index {
  color: rgba(223, 195, 143, 0.86);
}

/* Page-specific rhythm, achieved only through proportion and rules. */
.page-services .page-hero-inner {
  max-width: 61rem;
}

.page-engagements .page-hero-inner {
  max-width: 58rem;
}

.page-experience .page-hero-inner {
  max-width: 64rem;
}

.page-about .page-hero-inner {
  max-width: 55rem;
}

.page-contact .page-hero {
  padding-bottom: clamp(3.25rem, 5vw, 4.75rem);
}

.page-contact .page-hero-inner {
  max-width: 50rem;
}

/* Sharper brand lockup and more readable mobile descriptor. */
.brand img {
  width: 46px;
  height: 46px;
}

.brand-text small {
  letter-spacing: 0.105em;
}

/* Subtle initial entrance only; no scroll effects or page transitions. */
@media (prefers-reduced-motion: no-preference) {
  .home-hero-copy,
  .page-hero-inner {
    animation: lochlann-intro 150ms ease-out both;
  }

  @keyframes lochlann-intro {
    from { opacity: 0.01; transform: translateY(0.35rem); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 58rem) {
  .page-home .home-hero::after {
    display: none;
  }

  .section + .section::before,
  .perspective-strip + .section::before,
  .home-hero + .perspective-strip::before,
  .page-hero + .section::before {
    height: 1.5rem;
    top: -1.5rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-text small {
    font-size: 0.64rem;
    letter-spacing: 0.075em;
  }
}

/* =============================================================================
   17. VERSION 15.0 — EDITORIAL COMPRESSION AND VISUAL INTEREST

   Intent:
   - Preserve the stable Version 14 responsive foundation.
   - Reduce page density and repeated consulting language.
   - Add selective photography, restrained crest watermarks, branded flourishes,
     and small interface motion without introducing diagrams or visual clutter.
   ============================================================================= */

:root {
  --image-cut: clamp(1rem, 2.2vw, 2rem);
  --motion-fast: 200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* -----------------------------------------------------------------------------
   Accessible utility used by the animated menu control.
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------------------------
   Header and animated hamburger.
   -------------------------------------------------------------------------- */

@media (max-width: 58rem) {
  .mobile-menu summary {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    padding: 0;
    border-color: rgba(236, 241, 239, 0.19);
    border-radius: 0.25rem;
    background: rgba(7, 21, 32, 0.54);
    transition: border-color var(--motion-fast), background-color var(--motion-fast);
  }

  .hamburger {
    position: relative;
    display: block;
    width: 1.15rem;
    height: 0.9rem;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    border-radius: 99px;
    background: var(--text-on-dark);
    transform-origin: center;
    transition: top var(--motion-fast), transform var(--motion-fast), opacity 120ms ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: calc(50% - 0.75px); }
  .hamburger span:nth-child(3) { top: calc(100% - 1.5px); }

  .mobile-menu[open] summary {
    border-color: rgba(223, 195, 143, 0.75);
    background: var(--ink-800);
  }

  .mobile-menu[open] .hamburger span:nth-child(1) {
    top: calc(50% - 0.75px);
    transform: rotate(45deg);
  }

  .mobile-menu[open] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .mobile-menu[open] .hamburger span:nth-child(3) {
    top: calc(50% - 0.75px);
    transform: rotate(-45deg);
  }

  .mobile-menu-panel {
    transform-origin: top right;
  }

  @media (prefers-reduced-motion: no-preference) {
    .mobile-menu[open] .mobile-menu-panel {
      animation: lochlann-menu-open 160ms ease-out both;
    }

    @keyframes lochlann-menu-open {
      from { opacity: 0; transform: translateY(-0.4rem) scale(0.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
  }
}

/* -----------------------------------------------------------------------------
   Buttons and text links: no arrows, no bounce, no theatrical movement.
   -------------------------------------------------------------------------- */

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform var(--motion-fast), background-color var(--motion-fast),
              border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.button::after {
  position: absolute;
  z-index: -1;
  top: -40%;
  bottom: -40%;
  left: -55%;
  width: 38%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  transition: left 420ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 0.55rem 1.3rem rgba(0, 0, 0, 0.12);
}

.button:hover::after {
  left: 125%;
}

.button:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.14);
}

.secondary-link,
.decision-item a {
  position: relative;
  border-bottom: 0;
  text-decoration: none;
}

.secondary-link::after,
.decision-item a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0.55);
  transform-origin: left;
  background: var(--brass-600);
  content: "";
  transition: transform var(--motion-fast), background-color var(--motion-fast);
}

.secondary-link:hover::after,
.decision-item a:hover::after {
  transform: scaleX(1);
  background: var(--brass-300);
}

/* -----------------------------------------------------------------------------
   Editorial flourish used only at principal section headings.
   -------------------------------------------------------------------------- */

.section-heading-short {
  position: relative;
  padding-bottom: 1.6rem;
}

.section-heading-short::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-600), rgba(208, 173, 114, 0));
  content: "";
}

.section-heading-short::before {
  position: absolute;
  bottom: -0.19rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  transform: rotate(45deg);
  border: 1px solid var(--brass-600);
  background: var(--surface-navy-soft);
  content: "";
}

/* -----------------------------------------------------------------------------
   Home hero photography and watermark treatment.
   -------------------------------------------------------------------------- */

.page-home .home-hero::after {
  display: none;
}

.home-hero-grid-visual {
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 1.12fr);
  gap: clamp(2.5rem, 6vw, 5.75rem);
}

.home-hero-copy > p {
  max-width: 34rem;
}

.hero-visual,
.mission-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 215, 177, 0.2);
  background: var(--ink-975);
  clip-path: polygon(
    0 0,
    calc(100% - var(--image-cut)) 0,
    100% var(--image-cut),
    100% 100%,
    var(--image-cut) 100%,
    0 calc(100% - var(--image-cut))
  );
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.28);
}

.hero-visual::before,
.mission-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(122deg, rgba(7, 21, 32, 0.16), rgba(7, 21, 32, 0.02) 45%, rgba(208, 173, 114, 0.08));
  pointer-events: none;
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -4%;
  width: 58%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("lochlann-crest-1024.png") center / contain no-repeat;
  opacity: 0.055;
  filter: grayscale(1) brightness(1.5);
  pointer-events: none;
  content: "";
}

.hero-visual img,
.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  min-height: clamp(24rem, 39vw, 34rem);
}

.hero-visual figcaption,
.mission-image figcaption {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1rem;
  left: 1.25rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(234, 215, 177, 0.35);
  color: rgba(247, 243, 236, 0.82);
  font-size: 0.67rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual {
    animation: lochlann-image-reveal 420ms ease-out both;
  }

  @keyframes lochlann-image-reveal {
    from { opacity: 0.01; transform: translateY(0.45rem); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* -----------------------------------------------------------------------------
   Interior-page crest watermarks. Limited to Experience and About.
   -------------------------------------------------------------------------- */

.page-hero-watermark {
  position: relative;
  overflow: hidden;
}

.page-hero-watermark::after {
  position: absolute;
  top: 50%;
  right: clamp(-4rem, 2vw, 1rem);
  width: clamp(19rem, 31vw, 30rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("lochlann-crest-1024.png") center / contain no-repeat;
  opacity: 0.026;
  filter: grayscale(1) brightness(1.4);
  pointer-events: none;
  content: "";
}

/* -----------------------------------------------------------------------------
   More concise page components.
   -------------------------------------------------------------------------- */

.decision-grid-three .decision-item,
.decision-grid-three .decision-item:nth-child(4),
.decision-grid-three .decision-item:nth-child(5) {
  grid-column: span 4;
  min-height: 15.5rem;
}

.proof-panel-compact {
  padding-block: clamp(2.2rem, 4vw, 3.5rem);
}

.proof-panel-compact .proof-heading {
  padding-bottom: 1.8rem;
}

.proof-panel-compact .proof-grid article {
  padding-top: 1.35rem;
}

.surface-slate {
  background: var(--surface-slate);
}

.surface-navy {
  background: var(--surface-navy);
}

.advisory-preview > div:first-child h2,
.visual-band-grid h2,
.image-led-grid h2,
.selectivity-panel h2 {
  max-width: 14ch;
  margin-top: 1rem;
}

.advisory-preview > div:first-child p,
.visual-band-grid > div:first-child > p,
.selectivity-panel p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.advisory-preview .secondary-link,
.visual-band-grid .secondary-link,
.selectivity-panel .secondary-link {
  margin-top: 1.5rem;
}

.compact-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.compact-list article {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.compact-list h3 {
  font-size: 1.15rem;
}

.compact-list p {
  color: var(--text-muted);
}

.visual-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.organization-list-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.organization-list-compact span:last-child {
  grid-column: 1 / -1;
}

.service-list-compact .service-row {
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: clamp(2rem, 4vw, 3rem);
}

.service-list-compact .service-row h2 {
  max-width: none;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.service-list-compact .service-row p {
  max-width: 48rem;
  margin-top: 0.75rem;
}

.outcome-tags {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
  list-style: none;
}

.outcome-tags li {
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(236, 241, 239, 0.14);
  color: var(--text-on-dark-muted);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.045em;
  line-height: 1.3;
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(236, 241, 239, 0.12);
}

.engagement-card {
  min-height: 22rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--surface-navy);
}

.engagement-card h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.engagement-card > p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.engagement-card .outcome-tags {
  margin-top: 2rem;
}

.principle-panel-compact {
  align-items: center;
}

.principle-points {
  display: grid;
  gap: 1rem;
}

.principle-points p {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-on-dark);
}

.principle-points p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.principle-points strong {
  color: var(--text-on-dark);
}

.image-led-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.mission-image {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  min-height: 34rem;
}

.perspective-list-compact {
  margin-top: 2rem;
}

.perspective-list-compact .perspective-row {
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.2rem;
}

.perspective-list-compact .perspective-row h3 {
  font-size: 1.15rem;
}

.perspective-list-compact .perspective-row p {
  margin-top: 0.35rem;
}

.environment-panel-compact {
  display: grid;
  gap: 2rem;
}

.environment-panel-compact .organization-list {
  margin-top: 0;
}

.founder-panel-branded {
  position: relative;
  overflow: hidden;
}

.founder-panel-branded::after {
  position: absolute;
  right: -5%;
  bottom: -45%;
  width: clamp(20rem, 36vw, 34rem);
  aspect-ratio: 1;
  background: url("lochlann-crest-1024.png") center / contain no-repeat;
  opacity: 0.022;
  filter: grayscale(1) brightness(1.4);
  pointer-events: none;
  content: "";
}

.founder-panel-branded > * {
  position: relative;
  z-index: 1;
}

.principles-grid .editorial-item {
  min-height: 10.5rem;
}

.selectivity-panel {
  align-items: center;
}

.contact-grid-compact {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
}

.contact-steps-compact article {
  padding-block: 1.15rem;
}

.contact-steps-compact h3 {
  font-size: 1.12rem;
}

/* -----------------------------------------------------------------------------
   Mobile and tablet composition.
   -------------------------------------------------------------------------- */

@media (max-width: 68rem) {
  .home-hero-grid-visual,
  .image-led-grid,
  .visual-band-grid,
  .contact-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: clamp(20rem, 58vw, 30rem);
  }

  .mission-image {
    position: relative;
    top: auto;
    min-height: clamp(22rem, 62vw, 34rem);
  }

  .engagement-cards {
    grid-template-columns: 1fr;
  }

  .engagement-card {
    min-height: 0;
  }
}

@media (max-width: 58rem) {
  .home-hero-grid-visual {
    gap: 2.6rem;
  }

  .home-hero-copy {
    padding-left: 0.9rem;
  }

  .hero-visual figcaption,
  .mission-image figcaption {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .page-hero-watermark::after {
    right: -8rem;
    width: 23rem;
    opacity: 0.02;
  }

  .decision-grid-three .decision-item,
  .decision-grid-three .decision-item:nth-child(4),
  .decision-grid-three .decision-item:nth-child(5) {
    grid-column: span 12;
    min-height: 0;
  }

  .compact-list article {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .organization-list-compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 40rem) {
  .hero-visual,
  .mission-image {
    min-height: 19rem;
    --image-cut: 1rem;
  }

  .hero-visual figcaption,
  .mission-image figcaption {
    right: 0.9rem;
    bottom: 0.75rem;
    left: 0.9rem;
  }

  .section-heading-short {
    padding-bottom: 1.35rem;
  }

  .service-list-compact .service-row {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .service-list-compact .service-row h2 {
    font-size: 1.7rem;
  }

  .outcome-tags {
    gap: 0.4rem;
  }

  .outcome-tags li {
    padding: 0.32rem 0.5rem;
    font-size: 0.63rem;
  }

  .engagement-card {
    padding: 1.6rem 1.25rem;
  }

  .organization-list-compact {
    grid-template-columns: 1fr;
  }

  .organization-list-compact span:last-child {
    grid-column: auto;
  }

  .founder-panel-branded::after {
    right: -8rem;
    bottom: -7rem;
    width: 22rem;
  }
}

@media (max-width: 24rem) {
  .hero-visual,
  .mission-image {
    min-height: 16.5rem;
  }

  .hero-visual figcaption,
  .mission-image figcaption {
    font-size: 0.54rem;
  }
}
