/* LINKAH — split hero, list-based services, light nav (intentionally unlike “full-bleed + card grid” pattern) */
:root {
  --la-paper: #f4f2ee;
  --la-ink: #14110f;
  --la-muted: #5c5652;
  --la-line: #1a1714;
  --la-accent: #c45c26;
  --la-accent-dim: #9a4318;
  --bs-body-bg: var(--la-paper);
  --bs-body-color: var(--la-ink);
  --bs-link-color: var(--la-accent-dim);
  --bs-link-hover-color: #6b3010;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-size: 1.02rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Headings: Fraunces — distinct from the other site’s Cormorant + Source stack */
.font-head,
h1, h2, h3, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Fraunces", "Georgia", ui-serif, serif;
  color: var(--la-ink);
  font-weight: 600;
}

.font-mono {
  font-family: ui-monospace, "Cascadia Code", "SFMono-Regular", Menlo, monospace;
  font-size: 0.9em;
  letter-spacing: 0.02em;
}

/* —— Sticky light header (no transparent/overlay bar on dark hero) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(244, 242, 238, 0.92);
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header .navbar-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--la-ink) !important;
}

.site-header .nav-link {
  color: var(--la-muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0 !important;
}

.site-header .nav-pill:hover,
.site-header .nav-pill:focus {
  color: var(--la-ink) !important;
}

.site-header .nav-cta {
  color: var(--la-ink) !important;
  border: 1px solid var(--la-line);
  border-radius: 99px;
  padding: 0.4rem 1.1rem !important;
  margin-top: 0.25rem;
  transition: background 0.2s, color 0.2s;
}

.site-header .nav-cta:hover {
  background: var(--la-line);
  color: var(--la-paper) !important;
}

/* —— Split hero: copy left / image right (not full-viewport background) —— */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  border-bottom: 1px solid rgba(20, 17, 15, 0.1);
}

@media (min-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    min-height: 85dvh;
  }
}

.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem 2rem;
}

@media (min-width: 768px) {
  .hero-split__text {
    padding: 3rem 2.5rem 3rem 3.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-split__text {
    padding: 3.5rem 3rem 3.5rem 5rem;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display-1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  max-width: 32rem;
  font-weight: 400;
}

.link-arrow {
  color: var(--la-accent-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
  border-bottom: 2px solid var(--la-accent);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.link-arrow:hover {
  color: var(--la-line);
  border-color: var(--la-line);
}

.hero-split__media {
  position: relative;
  min-height: 42vh;
  background: #e8e4df;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-split__media {
    min-height: 0;
  }
}

.hero-split__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 42vh;
  object-fit: cover;
  object-position: 50% 40%;
}

@media (min-width: 768px) {
  .hero-split__img {
    min-height: 100%;
    position: absolute;
    inset: 0;
  }
}

.caption-media {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

/* —— About: narrow reading column (no “card split” panel) —— */
.section-narrow {
  background: var(--la-paper);
}

.py-md-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

@media (min-width: 768px) {
  .py-md-6 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
}

.lh-lg {
  line-height: 1.75 !important;
}

/* —— Full-bleed figure strip —— */
.figure-frame {
  overflow: hidden;
  line-height: 0;
  border-top: 1px solid rgba(20, 17, 15, 0.1);
  border-bottom: 1px solid rgba(20, 17, 15, 0.1);
}

.figure-frame .figure-img-tall {
  display: block;
  object-fit: cover;
  max-height: 28rem;
}

/* —— Services: horizontal rules + numbers (not Bootstrap cards) —— */
.list-services__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(20, 17, 15, 0.12);
  align-items: start;
}

.list-services__item--last {
  border-bottom: 1px solid rgba(20, 17, 15, 0.12);
}

.list-services__num {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: var(--la-accent);
  padding-top: 0.2rem;
}

/* —— Contact: dark slab (inverted) —— */
.contact-slab {
  background: var(--la-line);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.82) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.55) !important;
}

.link-email-inverse {
  color: #fff !important;
  text-decoration: none;
  line-height: 1.2;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-block;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.link-email-inverse:hover,
.link-email-inverse:focus {
  color: rgba(255, 200, 160, 0.95) !important;
  border-color: var(--la-accent);
}

/* —— Footer: minimal bar —— */
.site-footer {
  background: #ebe6e0;
  border-top: 1px solid rgba(20, 17, 15, 0.08);
}

/* Utilities */
.text-secondary {
  color: var(--la-muted) !important;
}

h3.h5 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Navbar toggler on light bg */
.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(196, 92, 38, 0.2);
}
