:root {
  --ink: #1a1f1e;
  --header: #303636;
  --moss: #495a58;
  --terra: #d4967d;
  --terra-deep: #c07d63;
  --cream: #e5e3dc;
  --paper: #f7f5f0;
  --white: #fffcfa;
  --line: rgba(26, 31, 30, 0.1);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Figtree", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
a { color: var(--moss); }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.85rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
blockquote { margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.wrap.narrow { width: min(720px, calc(100% - 40px)); }

.eyebrow, .kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 14px;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--moss);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  background: var(--terra);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--terra-deep); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: inherit; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header);
  color: #f3f0ea;
}
.header-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  flex: 0 1 auto;
  min-width: 0;
}
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 57px;
  max-width: 100%;
  object-fit: contain;
}
.nav-toggle,
.header-cta {
  flex-shrink: 0;
}
.header-cta .btn { min-height: 42px; padding: 8px 16px; }

.primary-nav { margin-left: auto; }
.primary-nav > ul {
  display: flex;
  align-items: stretch;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 88px;
  padding: 0 12px;
  color: #f3f0ea;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a[aria-current="page"] {
  color: var(--terra);
}
.has-sub { position: relative; }
.has-sub > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.has-sub > ul {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  min-width: 300px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: var(--white);
  color: var(--ink);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  display: none;
  z-index: 50;
}
.has-sub:hover > ul,
.has-sub:focus-within > ul {
  display: block;
}
.has-sub > ul a {
  display: block;
  padding: 13px 20px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
}
.has-sub > ul a:hover { background: var(--cream); color: var(--ink); }
.nav-check {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}

/* Hero */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(86vh, 780px);
  background: var(--ink);
  color: #f4f1ea;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 7vw 72px 8vw;
}
.hero-copy h1 { color: #fff; max-width: 14ch; }
.hero-copy .lead { color: rgba(244,241,234,.82); max-width: 38ch; }
.hero-copy .eyebrow { color: var(--terra); }
.hero-meta {
  margin-top: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(244,241,234,.55);
}
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

/* Sections */
.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-ink {
  background: var(--ink);
  color: #f4f1ea;
}
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .lead { color: rgba(244,241,234,.78); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img, .shot img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.split img.photo-square {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 12%;
}
.shot { margin: 0 0 2rem; }
.shot.square img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.shot.tall img {
  max-height: 520px;
  object-fit: cover;
  width: 100%;
  object-position: center 12%;
}
.shot.portrait img {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.caption,
.photo-credit {
  font-size: 0.85rem;
  color: var(--moss);
  margin: -1.1em 0 1.8em;
}
.photo-credit a { color: inherit; }
.caption { margin-top: 8px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0 8px;
}
.steps article {
  background: var(--white);
  padding: 28px 26px 30px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.steps span {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--terra);
  margin-bottom: 8px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.services a {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.services a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(26,31,30,.08);
  color: inherit;
}
.services a img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.services a img.photo-face { object-position: 40% 18%; }
.services a div { padding: 22px 22px 26px; }
.services h3 { margin-bottom: 8px; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quotes blockquote, .quote {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.45;
  border: 1px solid var(--line);
}
.prose .quote { margin: 0 0 16px; }
.quotes p, .quote cite {
  display: block;
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--moss);
}

.page-hero {
  background: var(--ink);
  color: #f4f1ea;
  padding: 56px 0 48px;
}
.page-hero .wrap { width: min(720px, calc(100% - 40px)); }
.page-hero h1 { color: #fff; max-width: none; }
.page-hero .lead { color: rgba(244,241,234,.8); max-width: none; }
.page-hero .hl-blog-intro { color: rgba(244,241,234,.88); }
.page-hero .hl-blog-intro p { margin: 0 0 1em; }
.page-hero .hl-blog-intro a { color: #fff; text-decoration: underline; }
.page-hero .btn-ghost { color: #fff; }

.prose { width: min(720px, calc(100% - 40px)); margin: 0 auto; }
.prose:has(.color-row),
.prose:has(.product-row) { width: min(920px, calc(100% - 40px)); }
.prose h2 { margin-top: 1.6em; }
.prose h3, .prose h4 { margin-top: 1.45em; }
.prose h4 { font-size: 1.1rem; }
.prose .shot { margin: 1.6em 0; }
.prose img { border-radius: 12px; }

.color-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  margin: 2.4em 0;
}
.color-row.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}
@media (min-width: 641px) {
  .color-row.reverse > img,
  .color-row.reverse > p:has(img) { order: -1; }
}
.color-row > p:has(img) { margin: 0; }
.color-row h2 { margin-top: 0; margin-bottom: 0.4em; }
.color-row p:last-child { margin-bottom: 0; }
.color-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}
.color-kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.color-kicker-red { color: #c44536; }
.color-kicker-yellow { color: #c4a016; }
.color-kicker-green { color: #4a7a46; }
.color-kicker-blue { color: #3a6a96; }

.product-row {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 48px;
  align-items: center;
  margin: 0;
}
.product-row .product-shot {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #495A58;
}
.product-row-copy .lead { margin-top: 0; }
.product-row-copy p:last-child { margin-bottom: 0; }

.hl-download-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 1.4em 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.hl-download-card > p:empty { display: none; }
.hl-download-thumb {
  flex: 0 0 180px;
  max-width: 180px;
}
.hl-download-card img {
  width: 180px;
  height: auto;
  border-radius: 8px;
  background: var(--ink);
}
.hl-download-copy { flex: 1; min-width: 0; }
.hl-download-copy h2 { margin: 0 0 0.25em; font-size: 1.2rem; }
.hl-download-copy p { margin: 0 0 0.65em; }
.hl-download-copy p:last-child { margin-bottom: 0; }

.figure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 1.6em 0 2em;
}
.figure-grid.four { grid-template-columns: repeat(4, 1fr); }
.figure-grid.three { grid-template-columns: repeat(3, 1fr); }
.figure-grid figure { margin: 0; }
.figure-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
.figure-grid.wide img { aspect-ratio: 4/3; }
.figure-grid figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--moss);
  font-weight: 700;
}

.partner-logo { max-width: 180px; margin: 1.2em 0 2em; }

.cta-band {
  background: var(--header);
  color: #f4f1ea;
  text-align: center;
  padding: 72px 24px 48px;
}
.cta-band h2 { color: #fff; max-width: none; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(244,241,234,.75); max-width: 36em; margin: 0 auto 8px; }
.cta-legal {
  margin: 24px auto 0;
  font-size: 0.92rem;
  color: rgba(244,241,234,.62);
  line-height: 1.7;
}
.cta-legal a { color: #f4f1ea; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.contact-photo img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: 50% 10%;
  max-height: 420px;
}
.form {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.form label { display: block; font-size: 0.88rem; font-weight: 600; margin: 0 0 6px; }
.form div { margin-bottom: 14px; }
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.form-message {
  background: #e8f0e9;
  padding: 12px 14px;
  border-radius: 8px;
}

.split > a { display: block; color: inherit; }
.book-shot { max-width: 280px; margin: 24px 0; }
.prose a { text-underline-offset: 3px; }

.blog-grid,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card h3 {
  margin: 18px 20px 8px;
}
.card p {
  margin: 0 20px 20px;
  color: var(--moss);
}

@media (max-width: 980px) {
  .hero-split,
  .split,
  .steps,
  .services,
  .quotes,
  .contact-grid,
  .blog-grid,
  .grid-3 { grid-template-columns: 1fr; }
  .hero-split { min-height: 0; }
  .hero-copy { padding: 56px 24px 40px; }
  .hero-photo { min-height: 420px; }
  .hero-photo img { height: 420px; }
  .figure-grid.four { grid-template-columns: repeat(2, 1fr); }
  .header-inner { gap: 12px; }
  .header-cta .btn { min-height: 38px; padding: 8px 12px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 88px;
    background: var(--header);
    padding: 8px 0 20px;
    max-height: calc(100vh - 88px);
    overflow: auto;
    z-index: 60;
  }
  .nav-check:checked ~ .primary-nav { display: block; }
  .primary-nav > ul { flex-direction: column; }
  .primary-nav > ul > li > a {
    height: auto;
    width: 100%;
    padding: 14px 20px;
    justify-content: flex-start;
  }
  .has-sub > a::after { display: none; }
  .has-sub:hover > ul,
  .has-sub:focus-within > ul {
    display: block;
  }
  .has-sub > ul {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    background: #242a2a;
    padding: 0 0 8px;
    top: auto;
  }
  .has-sub > ul a { color: #f3f0ea; padding: 12px 20px 12px 32px; }
  .has-sub > ul a:hover { background: #303636; color: #fff; }
  .section { padding: 56px 0; }
  .color-row,
  .color-row.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .color-row.reverse > img,
  .color-row.reverse > p:has(img) { order: 0; }
  .product-row {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }
  .product-row .product-shot { max-width: 280px; }
}

@media (max-width: 640px) {
  .figure-grid, .figure-grid.three { grid-template-columns: 1fr; }
  .color-row,
  .color-row.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .color-row.reverse > img,
  .color-row.reverse > p:has(img) { order: 0; }
  .color-row img { max-width: 100%; }
  .hl-download-card {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hl-download-thumb {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
  }
  .hl-download-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
