.site-lockup-mark, .mark { width: 44px; height: 44px; display: block; flex: none; }

:root {
  --bark: #3C2E22;
  --lumbre: #C4622A;
  --ivory: #F7F3EC;
  --cream: #EDE8DF;
  --stone: #6B6560;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
}
body.inner { margin: 0; background: var(--ivory); color: var(--bark); }
.site-header, .site-footer { font-family: var(--sans); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  background: var(--ivory);
}
.site-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-lockup-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.site-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--lumbre);
  letter-spacing: 0.01em;
}
.site-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.15;
  color: var(--bark);
  letter-spacing: 0.02em;
  text-transform: none;
}
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--bark);
  text-decoration: none;
}
.site-nav a:hover { color: var(--lumbre); }
.site-footer {
  margin-top: auto;
  padding: 20px 40px 24px;
  color: var(--stone);
  font-size: 14px;
  line-height: 22px;
  background: var(--ivory);
}
.site-footer p { margin: 0 0 4px; }
.site-footer a { color: var(--stone); text-decoration: none; }
.site-footer a:hover { color: var(--bark); }
.inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  color: var(--bark);
}
.inner-main { max-width: 720px; margin: 0 auto; padding: 24px 40px 8px; width: 100%; box-sizing: border-box; flex: 1; }
.inner-main h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 45px;
  margin: 0 0 20px;
}
.inner-main .lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 33px;
  margin: 0 0 16px;
}
.inner-main p { font-family: var(--sans); font-size: 15px; line-height: 24px; margin: 0 0 16px; max-width: 65ch; }
.inner-main h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 28px 0 8px;
}
.inner-main a { color: var(--bark); }

.contact-form {
  display: grid;
  max-width: 440px;
  margin: 8px 0 28px;
  row-gap: 10px;
}
.contact-form label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--bark);
}
.contact-form .optional {
  color: var(--stone);
  font-size: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--bark);
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 2px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--bark);
  outline-offset: 2px;
}
.contact-form button {
  justify-self: start;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ivory);
  background: var(--lumbre);
  border: none;
  border-radius: 2px;
  padding: 12px 22px;
}
.contact-form button:disabled { opacity: 0.65; cursor: default; }
.contact-form .home-error { margin: 0; }
.contact-ok {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 30px;
  color: var(--bark);
  margin: 8px 0 28px;
}
.contact-legal {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 24px;
  color: var(--bark);
  margin: 0 0 12px;
  max-width: 65ch;
}
.lost {
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--ivory);
  color: var(--bark);
}
.lost-hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.lost-forest { position: absolute; inset: 0; overflow: hidden; }
.lost-forest__still {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lost-veil {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100%;
  background: rgba(247, 243, 236, 0.55);
  display: flex;
  flex-direction: column;
}
.lost-main {
  flex: 1 1 auto;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px 16px;
  box-sizing: border-box;
}
.lost-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 45px;
  color: var(--bark);
  margin: 0 0 20px;
  max-width: 18ch;
}
.lost-main a { color: var(--bark); font-family: var(--sans); font-size: 15px; }
.lost .site-footer {
  margin-top: 0;
  padding: 12px 40px 16px;
  background: var(--ivory);
}
@media (max-width: 639px) {
  .lost-main { padding: 24px 24px 12px; }
  .lost-line { font-size: 32px; line-height: 38px; }
  .lost .site-footer { padding: 10px 24px 12px; }
}
