/* Blackshore Private - shared stylesheet */

:root {
  --ink: #07090c;
  --navy: #0b1620;
  --paper: #f6f4ee;
  --mist: #9fb0bf;
  --slate: #48566b;
  --gold: #b3925a;
  --charcoal: #1c2833;

  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--mist);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.nowrap {
  white-space: nowrap;
}

/* Header / logo lockup */

.site-header {
  background: transparent;
}

.site-header .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .site-header .page {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--paper);
}

.lockup svg {
  width: 32px;
  height: 32px;
  color: var(--paper);
  flex-shrink: 0;
}

.lockup-divider {
  width: 1px;
  height: 34px;
  background: var(--slate);
  flex-shrink: 0;
}

.lockup-word {
  line-height: 1.2;
}

.lockup-word .name {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 8px;
  padding: 0 0 2px 0;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
}

.lockup-word .sub {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--mist);
  margin-top: 6px;
}

@media (max-width: 479px) {
  .lockup-word {
    display: none;
  }
}

.site-nav {
  width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .site-nav {
    width: auto;
  }
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--mist);
}

.site-nav a[aria-current="true"] {
  color: var(--gold);
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a:focus-visible {
  outline: none;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

/* Screens */

main {
  padding-top: 0;
}

.screen {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
}

@media (min-width: 768px) {
  .screen {
    padding: 160px 0;
  }
}

/* Hero: must fit above the fold (1366x768 and 375 wide phones), so it
   opts out of the standard .screen sizing and keeps its own tight,
   viewport-relative spacing instead. */

.hero {
  display: block;
  min-height: 0;
  padding-top: 12px;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

.hero-monogram {
  width: 80px;
  height: 80px;
  color: var(--gold);
  opacity: 0.15;
  margin: 0 0 12px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: normal;
  color: var(--paper);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  font-size: clamp(26px, 5vh, 54px);
}

.hero-desc {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 0 12px;
}

/* Section label / heading */

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

h2 {
  font-family: var(--serif);
  font-weight: normal;
  color: var(--paper);
  line-height: 1.2;
  margin: 0 0 48px;
  font-size: 30px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

@media (min-width: 1280px) {
  h2 {
    font-size: 48px;
  }
}

p {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  p {
    font-size: 17px;
  }
}

/* What we do / Problem: numbered list */

.numbered-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}

.numbered-item {
  padding: 32px 0;
}

.numbered-item + .numbered-item {
  border-top: 1px solid rgba(72, 86, 107, 0.4);
}

.numbered-item:first-child {
  padding-top: 0;
}

.item-number {
  display: block;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 14px;
  margin: 0 0 8px;
}

.numbered-item h3 {
  font-family: var(--serif);
  font-weight: normal;
  color: var(--paper);
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 12px;
}

/* Statement list (How we work) */

.statement-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 48px;
  margin: 0 0 48px;
}

@media (min-width: 768px) {
  .statement-list {
    grid-template-columns: 1fr 1fr;
  }
}

.statement {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
}

.standard-of-care {
  max-width: 640px;
}

/* Contact */

.contact .link {
  margin-bottom: 20px;
}

.contact p:first-of-type {
  margin-bottom: 8px;
}

/* Principal */

.sub-heading {
  font-family: var(--serif);
  font-weight: normal;
  color: var(--mist);
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 24px;
}

/* Link */

.link {
  display: inline-block;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}

.link:hover {
  color: var(--gold);
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: var(--mist);
  font-size: 13px;
}

.site-footer .page {
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-footer a {
  color: var(--mist);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer a:focus-visible {
  outline: none;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
