/* samfurr.co.uk
   Built from the design canvas artboard (Main.dc.html).
   Palette, type and spacing mirror the design; layout is responsive. */

:root {
  --paper: #FAF8F4;
  --ink: #191713;
  --accent: #1E4B3A;
  --accent-hover: #143327;
  --accent-soft: #8CA39A;
  --muted: #5C574D;
  --rule: #E4DFD5;
  --underline: #C9C2B4;
  --footer-ink: #6B6558;
  --dark-bg: #191713;
  --dark-muted: #A9A294;
  --dark-rule: #3A362E;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --measure: 1120px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; }
p { margin: 0; }
dl, dd, dt { margin: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 10;
}
.skip:focus {
  left: 0;
  color: var(--paper);
}

.container {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- shared pieces ---------- */

.eyebrow {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
}
.eyebrow-soft {
  color: var(--accent-soft);
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 28px;
}

.lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 34em;
}

.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 36em;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 2px;
}
.button:hover { background: var(--accent-hover); color: var(--paper); }

.quiet-link {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--underline);
  padding-bottom: 2px;
  display: inline-block;
}
.quiet-link:hover { border-bottom-color: var(--accent); }

.cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- nav ---------- */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 36px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.wordmark span { color: var(--accent); }
.wordmark:hover { color: var(--ink); }

.nav .quiet-link { color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  display: flex;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 124px);
}

.hero-copy { flex: 1 1 auto; min-width: 0; }

h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 15em;
  text-wrap: balance;
}

.hero .lede { margin-top: 32px; }

.portrait { flex: 0 0 auto; margin: 0; width: 360px; }
.portrait img {
  width: 100%;
  aspect-ratio: 360 / 420;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  border-radius: 2px;
}
.portrait::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent);
}

/* ---------- the record ---------- */

.record {
  border-top: 1px solid var(--rule);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.record .section-lede { margin-bottom: 48px; }

.rows { display: flex; flex-direction: column; }

.row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  border-top: 1px solid var(--rule);
  padding: 26px 0;
}
.row-last { border-bottom: 1px solid var(--rule); }

.row dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
}
.row dd { max-width: 760px; }

.row-standout {
  background: var(--dark-bg);
  border: 0;
  border-radius: 2px;
  padding: 30px 32px;
  margin-top: 24px;
}
.row-standout dt { color: var(--accent-soft); }
.row-standout dd { color: var(--paper); font-size: 18px; }

/* ---------- dark band ---------- */

.band {
  background: var(--dark-bg);
  color: var(--paper);
  padding-block: clamp(64px, 8vw, 96px);
}

.band-title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  max-width: 20em;
  margin-bottom: 28px;
  text-wrap: balance;
}

.band-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--dark-muted);
  max-width: 38em;
  margin-bottom: 56px;
}

.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.three-up-wide { gap: clamp(32px, 4vw, 64px); }

.card {
  border-top: 1px solid var(--dark-rule);
  padding-top: 20px;
}
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--dark-muted); }

/* ---------- what I do ---------- */

.lanes {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 96px);
}
.lanes h2 { margin-bottom: 56px; }

.lane {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lane-num { font-size: 14px; font-weight: 700; color: var(--accent); }
.lane h3 { font-size: 26px; }
.lane p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.lane .quiet-link { color: var(--accent); align-self: flex-start; }

/* ---------- how I work ---------- */

.how {
  display: flex;
  gap: clamp(40px, 5vw, 72px);
  align-items: flex-start;
  border-top: 1px solid var(--rule);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.working-shot { flex: 0 0 auto; margin: 0; width: 420px; }
.working-shot img {
  width: 100%;
  aspect-ratio: 420 / 540;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  border-radius: 2px;
}
.working-shot::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent);
}

.how-copy { flex: 1 1 auto; min-width: 0; }
.how-copy h2 { margin-bottom: 48px; }

.principles { display: flex; flex-direction: column; gap: 36px; }
.principle {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.principle h3 { font-size: 24px; margin-bottom: 10px; }
.principle p { font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ---------- contact ---------- */

.contact {
  border-top: 1px solid var(--rule);
  padding-top: clamp(64px, 8vw, 96px);
}
.contact-title {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 32px;
}
.contact-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 32em;
}

/* ---------- footer ---------- */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--rule);
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: 28px;
  padding-bottom: 72px;
  font-size: 13px;
  color: var(--footer-ink);
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .portrait { width: clamp(240px, 32vw, 320px); }
  .working-shot { width: clamp(260px, 34vw, 360px); }
  .row { grid-template-columns: 200px minmax(0, 1fr); gap: 24px; }
  /* While the hero is still two columns, keep the headline in proportion to
     its narrower column so it wraps at roughly the same line length as the design. */
  h1 { font-size: clamp(34px, 4.6vw, 46px); }
}

/* Tablet and below: the side-by-side blocks stack, so the headline and the
   lane copy get the full measure instead of a squeezed column.
   Copy comes before the photo, so visual order matches reading order. */
@media (max-width: 860px) {
  .three-up { grid-template-columns: minmax(0, 1fr); gap: 32px; }

  .hero {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .portrait { width: 100%; max-width: 420px; }
  .portrait img { aspect-ratio: 4 / 3; object-position: 50% 22%; }

  .how { flex-direction: column; align-items: stretch; }
  .working-shot { width: 100%; max-width: 420px; }

  h1 { max-width: 20em; }
}

@media (max-width: 760px) {
  .row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .row dt { padding-top: 0; }
  .row-standout { padding: 24px; }

  h1 { max-width: none; }
  .band-title, .contact-title { max-width: none; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .nav { padding-top: 24px; }
  .wordmark { font-size: 24px; }
  .nav .quiet-link { font-size: 13px; }
  .button { padding: 14px 24px; }
  .footer { flex-direction: column; gap: 6px; }
}

@media print {
  .skip, .band { color: #000; }
  body { background: #fff; }
}
