/* Lake City Creative — one stylesheet for the whole site. */

:root {
  --brand: #487295;
  --brand-deep: #365670;
  --brand-dark: #284054;
  --pale: #acd2e7;
  --pale-soft: #dceaf4;

  --paper: #ffffff;
  --paper-cool: #f2f7fa;
  --ink: #17303f;
  --ink-soft: #56717f;
  --line: #d6e3ec;

  --measure: 62ch;
  --shell: 1080px;
  --display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); }
a:hover { color: var(--brand-deep); }

.wrap {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 10;
  background: var(--paper);
  color: var(--brand-dark);
  padding: 10px 16px;
  border-radius: 6px;
}

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

/* ---------- the blue field: masthead + hero, one block ---------- */

.field {
  background: var(--brand);
  color: #fff;
  background-image: linear-gradient(180deg, #507ca1 0%, var(--brand) 46%, #3e6381 100%);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wordmark .mark { flex: none; }

.masthead a.plain {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
}
.masthead a.plain:hover { border-bottom-color: #fff; }

.hero { padding: clamp(52px, 10vw, 104px) 0 clamp(60px, 10vw, 110px); }

h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 6.4vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 17ch;
}
h1 em {
  font-style: normal;
  color: var(--pale);
}

.lede {
  margin: 26px 0 0;
  font-size: clamp(18px, 2.1vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 50ch;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-solid { background: #fff; color: var(--brand-dark); }
.btn-solid:hover { background: var(--pale); color: var(--brand-dark); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }

.based {
  margin: 30px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pale);
}

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

.contact {
  background: var(--paper-cool);
  padding: clamp(52px, 8vw, 88px) 0;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
}

.section-note {
  margin: 0 0 36px;
  color: var(--ink-soft);
  max-width: var(--measure);
}

.contact-layout {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) {
  .contact-layout { grid-template-columns: 0.8fr 1fr; gap: 64px; }
}

.direct {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.direct dt {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.direct dd { margin: 0; font-size: 17px; }
.direct dd a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1.5px solid var(--pale);
}
.direct dd a:hover { border-bottom-color: var(--brand); }

form { display: grid; gap: 18px; }

.field-row { display: grid; gap: 7px; }

label { font-size: 13.5px; font-weight: 600; }
label .opt { font-weight: 400; color: var(--ink-soft); }

input,
textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
}
input:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(72, 114, 149, 0.18);
  outline-offset: 0;
}
textarea { resize: vertical; min-height: 132px; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

form button {
  justify-self: start;
  font-family: var(--display);
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 4px;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
form button:hover { background: var(--brand-deep); }

.fineprint { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

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

.colophon {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
  font-size: 14px;
  color: var(--ink-soft);
}
.colophon .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
}
.colophon a { color: inherit; }

/* ---------- standalone note pages (thanks, errors) ---------- */

.page-narrow {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 24px;
  text-align: center;
  background: var(--brand);
  color: #fff;
}
.note { max-width: 46ch; }
.note h1 { font-size: clamp(30px, 5.5vw, 44px); max-width: none; }
.note p { color: rgba(255, 255, 255, 0.86); font-size: 17px; }
.note a { color: #fff; }
.note .back {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 15px;
}
