:root {
  --paper: #f4ede2;
  --paper-soft: #fbf8f2;
  --paper-warm: #eadfce;
  --ink: #171514;
  --ink-soft: #3a342e;
  --muted: #675f55;
  --line: #dccfbc;
  --line-strong: #cdbb9f;
  --gold: #b77a38;
  --gold-dark: #7d5127;
  --sage: #5e7367;
  --blue: #3f6571;
  --clay: #b76345;
  --night: #101111;
  --night-soft: #191817;
  --white: #fffdf8;
  --max: 1160px;
  --radius: 8px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(183, 122, 56, 0.1), transparent 34%),
    linear-gradient(245deg, rgba(94, 115, 103, 0.12), transparent 38%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(183, 122, 56, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-140%);
  background: var(--night);
  color: var(--paper-soft);
  padding: 0.75rem 1rem;
  z-index: 20;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(100% - 32px, var(--max));
  min-height: 64px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  background: rgba(244, 237, 226, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.section {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  padding: 76px 0;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  grid-template-areas:
    "copy media"
    "trust trust";
  column-gap: 4rem;
  row-gap: 2.5rem;
  align-items: center;
  padding-top: 64px;
}

.hero-copy { grid-area: copy; }

.hero-media {
  grid-area: media;
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 520px;
}

.portrait {
  width: min(100%, 390px);
  align-self: end;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(38, 28, 18, 0.18));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 860px;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 3.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lede,
.section-heading p,
.proof-copy p,
.cta p {
  max-width: 750px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.05rem;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ink);
  color: var(--paper-soft);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.trust-strip {
  grid-area: trust;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip div {
  min-height: 108px;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.78);
}

.trust-strip span,
.service-card span,
.steps span,
.proof-list span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  max-width: 300px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.help {
  border-top: 1px solid var(--line);
}

.ai-check-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.ai-check-intro p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

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

.service-card,
.steps article,
.audience-grid article {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 42px rgba(72, 54, 32, 0.08);
}

.service-card p,
.steps p,
.audience-grid p,
.faq p,
.footer {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3rem;
  align-items: start;
}

.origin {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 18px 42px rgba(72, 54, 32, 0.12);
}

.origin-mark img {
  display: block;
  border-radius: 50%;
}

.origin-copy p {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number body";
  column-gap: 1rem;
  align-items: start;
}

.steps span {
  grid-area: number;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  background: var(--sage);
  color: var(--paper-soft);
  letter-spacing: 0;
}

.steps h3 {
  grid-area: title;
}

.steps p {
  grid-area: body;
  max-width: 620px;
}

.proof {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3rem;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
}

.proof-list {
  display: grid;
  gap: 0.85rem;
}

.proof-list a {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-list a:hover strong,
.text-link:hover {
  color: var(--gold-dark);
}

.proof-list strong {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.audience {
  border-top: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-statement {
  background: var(--night);
  color: var(--paper-soft);
  padding: 72px 0;
}

.brand-statement-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 3rem;
  align-items: center;
}

.brand-statement h2 {
  color: var(--paper-soft);
  font-size: 2.45rem;
}

.brand-statement p {
  color: #d8cbbb;
}

.brand-art {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background:
    linear-gradient(90deg, var(--night), transparent 18%, transparent 82%, var(--night)),
    var(--night);
}

.brand-art::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  box-shadow:
    inset 0 0 30px 18px var(--night),
    inset 0 0 78px 26px rgba(16, 17, 17, 0.52);
}

.brand-art img {
  display: block;
  width: 112%;
  height: 100%;
  min-height: 330px;
  margin-left: -6%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.98;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.subpage .page-hero {
  padding-top: 92px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
}

.two-up {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: end;
}

.subpage-portrait {
  display: block;
  width: min(100%, 300px);
  justify-self: end;
  filter: drop-shadow(0 22px 30px rgba(38, 28, 18, 0.16));
}

.article-layout {
  max-width: 960px;
}

.article-layout h2 {
  margin-top: 2.4rem;
  font-size: 2.3rem;
}

.article-layout h2:first-child {
  margin-top: 0;
}

.article-layout p,
.article-layout li {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.article-layout a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-grid > article,
.content-grid > section {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 18px 42px rgba(72, 54, 32, 0.08);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

details {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

details p {
  max-width: 720px;
  margin: 0.7rem 0 0;
}

.cta {
  max-width: 920px;
  text-align: center;
}

.cta p {
  margin-inline: auto;
}

.cta .hero-actions {
  justify-content: center;
}

.footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.footer p { margin: 0; }

.footer nav {
  display: flex;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "trust";
  }

  .hero-media {
    min-height: 360px;
    justify-content: flex-start;
  }

  .portrait {
    width: min(80%, 340px);
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .trust-strip,
  .service-grid,
  .ai-check-section,
  .audience-grid,
  .origin,
  .process,
  .proof,
  .faq,
  .two-up,
  .content-grid,
  .brand-statement-inner {
    grid-template-columns: 1fr;
  }

  .subpage-portrait {
    justify-self: start;
  }

  .brand-art {
    max-height: 300px;
  }

  .proof-list a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .footer,
  .brand-statement-inner {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.05rem;
  }

  .lede,
  .section-heading p,
  .proof-copy p,
  .cta p {
    font-size: 1.04rem;
  }

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

  .button {
    width: 100%;
  }

  .steps article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "title"
      "body";
  }

  .steps span {
    margin-bottom: 0.75rem;
  }
}
