/* Light palette from app/client/src/palette.css; brand gold is decorative or on deep green. */
:root {
  color-scheme: light;
  --bg: #efece3;
  --panel: #fbfaf6;
  --rail: #e7e3d8;
  --text: #1f3738;
  --muted: #4d5c59;
  --line: #cfd3d0;
  --accent: #685730;
  --gold: #b6a47a;
  --on-dark: #f1eee5;
  --on-dark-muted: #aeb4ae;
  font:
    16px/1.6 'Segoe UI',
    system-ui,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
.button {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--gold);
  color: var(--text);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
h3 {
  font-weight: 600;
}
em {
  font-weight: 400;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 10;
  padding: 12px 20px;
  background: var(--panel);
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -1.4px;
  text-decoration: none;
}
.wordmark span {
  color: var(--accent);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}
.tour-link {
  text-decoration: none;
}
.tour-link:hover,
.site-footer a:hover {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--text);
  border-radius: 6px;
  background: var(--text);
  color: var(--panel);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 120ms,
    color 120ms;
}
.button:hover {
  background: var(--muted);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  padding-block: 88px 84px;
}
.hero .eyebrow {
  color: var(--accent);
  margin-bottom: 24px;
}
h1 {
  font-size: clamp(64px, 6.5vw, 92px);
  line-height: 1.06;
  letter-spacing: -4px;
}
h1 em {
  color: var(--accent);
}
.intro {
  max-width: 460px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
}
.text-link {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link span {
  margin-left: 12px;
}
.hero-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.hero-brand {
  padding: 18px 0 12px;
}
.hero-brand img {
  width: 100%;
  mix-blend-mode: darken;
}
.workspace {
  scroll-margin-top: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
}
h2 {
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.6px;
}
.section-heading > p {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
}
.approach {
  padding-block: 96px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 46px;
}
.benefits article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.benefit-number {
  color: var(--accent);
  font-size: 12px;
}
.benefits h3 {
  margin-top: 28px;
  font-size: 19px;
  letter-spacing: -0.3px;
}
.benefits p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.contact {
  background: var(--text);
  color: var(--on-dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 96px;
  align-items: center;
  padding-block: 76px;
}
.contact .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}
.contact h2 {
  font-size: clamp(38px, 4vw, 56px);
}
.contact h2 em {
  color: var(--gold);
}
.contact-copy p {
  max-width: 340px;
  font-size: 16px;
}
.button-gold {
  margin-top: 28px;
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
  min-width: 180px;
}
.button-gold:hover {
  background: var(--on-dark);
  border-color: var(--on-dark);
}
.email {
  display: block;
  width: fit-content;
  margin-top: 16px;
  color: var(--on-dark-muted);
  font-size: 13px;
}
.contact :focus-visible {
  outline-color: var(--gold);
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px;
}
.site-footer .wordmark {
  font-size: 23px;
}
.site-footer p {
  color: var(--muted);
  font-size: 12px;
}
.site-footer > a:last-child {
  font-size: 13px;
  text-decoration: none;
}
