/* ==========================================================================
   DanHallMN.com — shared stylesheet
   Palette: deep navy (authority) + warm gold (calling) + cream (approachable)
   ========================================================================== */

:root {
  --ink:        #12203c;
  --ink-2:      #1c2f52;
  --ink-3:      #2b4272;
  --gold:       #b8873c;
  --gold-light: #dcae5e;
  --cream:      #faf7f1;
  --cream-2:    #f2ece0;
  --paper:      #ffffff;
  --body:       #333a4a;
  --muted:      #6b7386;
  --line:       #e2dbcd;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --shadow: 0 1px 2px rgba(18,32,60,.06), 0 8px 24px rgba(18,32,60,.08);
  --shadow-lg: 0 2px 4px rgba(18,32,60,.06), 0 18px 48px rgba(18,32,60,.14);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ink-3); text-decoration-color: rgba(184,135,60,.5); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.rule {
  width: 56px; height: 2px; border: 0;
  background: var(--gold);
  margin: 0 0 1.5rem;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .85em 1.7em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold   { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #a4762f; color: #fff; }

.btn--navy   { background: var(--ink); color: #fff; }
.btn--navy:hover { background: var(--ink-3); color: #fff; }

.btn--ghost  { background: transparent; color: var(--ink); border-color: rgba(18,32,60,.25); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--block { display: block; width: 100%; text-align: center; }

/* --- Site header -------------------------------------------------------- */
.site-header {
  background: var(--ink);
  color: #fff;
  position: relative;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { text-decoration: none; color: #fff; line-height: 1.1; }
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand__tag {
  display: block;
  font-size: .68rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 3px;
}
/* --- Navigation ---------------------------------------------------------
   Mobile first: the nav is a collapsible panel behind a Menu button.
   From 940px up it becomes a horizontal bar with a hover/focus dropdown.
   ------------------------------------------------------------------------ */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .6em .95em;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--gold-light); color: var(--gold-light); }
.nav-toggle__bars { display: grid; gap: 4px; width: 16px; }
.nav-toggle__bars i {
  display: block; height: 1.5px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-open .nav-toggle__bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header.is-open .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle__bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav { display: none; width: 100%; }
.site-header.is-open .nav { display: block; }

.nav__list, .nav__sub { list-style: none; margin: 0; padding: 0; }

.nav__list {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 14px;
  padding: 8px 0 14px;
}
.nav__list > li:not(.nav__cta) > a,
.nav__group-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: .72em 0;
  color: rgba(255,255,255,.88);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.nav__list > li:not(.nav__cta) > a:hover,
.nav__group-btn:hover { color: var(--gold-light); }
.nav__list a[aria-current="page"] { color: var(--gold-light); }

.nav__chev { width: 11px; height: 8px; transition: transform .2s ease; }
.nav__group-btn[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

.nav__sub { display: none; padding: 2px 0 10px 14px; }
.nav__group-btn[aria-expanded="true"] + .nav__sub { display: block; }
.nav__sub a {
  display: block;
  padding: .5em 0;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  text-decoration: none;
  border-left: 2px solid rgba(255,255,255,.14);
  padding-left: 14px;
}
.nav__sub a:hover { color: var(--gold-light); border-left-color: var(--gold); }

.nav__cta { margin-top: 12px; }
.nav__cta .btn { display: block; text-align: center; }

@media (max-width: 939px) {
  .site-header__inner { flex-wrap: wrap; min-height: 0; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand__tag { font-size: .6rem; letter-spacing: .11em; }
  .nav-toggle { flex: 0 0 auto; padding: .55em .8em; font-size: .78rem; }
}

@media (max-width: 400px) {
  .nav-toggle__text { display: none; }
  .nav-toggle { padding: .62em .75em; }
}

@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .nav { display: block; width: auto; }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 26px;
    border-top: 0;
    margin: 0;
    padding: 0;
  }
  .nav__list > li { position: relative; }
  .nav__list > li:not(.nav__cta) > a,
  .nav__group-btn {
    width: auto;
    padding: .35em 0;
    font-size: .9rem;
    color: rgba(255,255,255,.86);
  }

  /* Underline the section you're in */
  .nav__list a[aria-current="page"],
  .nav__group.is-current > .nav__group-btn {
    color: var(--gold-light);
    box-shadow: inset 0 -2px 0 0 var(--gold);
  }

  .nav__sub {
    display: block;
    position: absolute;
    top: calc(100% + 14px);
    left: -18px;
    min-width: 218px;
    padding: 8px;
    background: #16294a;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(8,14,26,.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .nav__group:hover > .nav__sub,
  .nav__group:focus-within > .nav__sub,
  .nav__group-btn[aria-expanded="true"] + .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* Bridge the gap so the pointer can travel into the dropdown */
  .nav__group::after {
    content: "";
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 16px;
  }
  .nav__sub a {
    border-left: 0;
    border-radius: 3px;
    padding: .55em 12px;
    color: rgba(255,255,255,.82);
  }
  .nav__sub a:hover { background: rgba(255,255,255,.07); color: var(--gold-light); }

  .nav__cta { margin: 0 0 0 6px; }
  .nav__cta .btn { font-size: .85rem; padding: .6em 1.35em; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(184,135,60,.20), transparent 60%),
    linear-gradient(160deg, #12203c 0%, #16294a 45%, #101b33 100%);
  color: #fff;
  padding: clamp(72px, 12vw, 132px) 0 clamp(72px, 12vw, 128px);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,135,60,0) 70%);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  margin-bottom: .3em;
}
.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,.82);
  max-width: 40ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .eyebrow { color: var(--gold-light); }

/* --- Sections ----------------------------------------------------------- */
.section { padding: clamp(56px, 9vw, 96px) 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--tint  { background: var(--cream-2); }
.section--navy  { background: var(--ink); color: rgba(255,255,255,.82); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--gold-light); }

.section__head { max-width: 62ch; margin-bottom: 2.5rem; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(1.85rem, 4vw, 2.6rem); }
.section__lead { font-size: 1.08rem; color: var(--muted); }
.section--navy .section__lead { color: rgba(255,255,255,.72); }

/* --- Audience cards ----------------------------------------------------- */
.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px)  { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold);
  margin-bottom: 18px;
}
.card__mark svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.45rem; margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .97rem; }
.card__cta { margin-top: auto; padding-top: 22px; }

/* --- Split (about / donate) --------------------------------------------- */
.split {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .split { grid-template-columns: 5fr 7fr; } }
@media (min-width: 860px) { .split--reverse > :first-child { order: 2; } }

.portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--cream-2), #e6dcc8);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
  font-size: .85rem;
  border: 1px solid var(--line);
}

/* --- Gallery ------------------------------------------------------------ */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px){ .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, var(--cream-2), #e8dfcd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* --- Posts -------------------------------------------------------------- */
.posts { display: grid; gap: 0; }
.post {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.post:last-child { border-bottom: 1px solid var(--line); }
.post__meta {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.post h3 { font-size: 1.3rem; margin-bottom: .35em; }
.post p { color: var(--muted); font-size: .97rem; margin-bottom: .6em; }
.post > a { font-size: .9rem; font-weight: 600; text-decoration: none; }

/* --- Form placeholder --------------------------------------------------- */
.form-slot {
  border: 1px dashed rgba(184,135,60,.6);
  background: rgba(184,135,60,.06);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}
.form-slot strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: .9rem; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: #0d1728;
  color: rgba(255,255,255,.62);
  padding: 56px 0 40px;
  font-size: .92rem;
}
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
}
@media (min-width: 620px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .footer-grid { grid-template-columns: 2.2fr 1fr 1.2fr 1.3fr; } }
.footer-brand p { max-width: 34ch; }
.footer-connect .footer-list { margin-top: 4px; }
.footer-phone {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.footer-phone a { color: var(--gold-light); text-decoration: none; }
.footer-phone a:hover { color: #fff; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* --- Preview banner (internal only) ------------------------------------- */
.preview-bar {
  background: #7a2f2f;
  color: #fff;
  font-size: .82rem;
  line-height: 1.5;
  padding: 10px 24px;
  text-align: center;
  position: relative;
  z-index: 30;
}
.preview-bar strong { letter-spacing: .06em; text-transform: uppercase; font-size: .74rem; }
.preview-bar a { color: #fff; }

/* --- Coming-soon page --------------------------------------------------- */
.soon {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(184,135,60,.22), transparent 62%),
    linear-gradient(165deg, #12203c 0%, #172b4c 50%, #0e1a31 100%);
  color: #fff;
}
.soon__main { flex: 1; display: flex; align-items: center; padding: 64px 0; }
.soon h1 {
  color: #fff;
  font-size: clamp(2.8rem, 9vw, 5rem);
  margin-bottom: .18em;
}
.soon__tag {
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 2rem;
}
.soon__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(255,255,255,.82);
  max-width: 46ch;
}
.soon__list {
  list-style: none;
  margin: 2rem 0 2.4rem;
  padding: 0;
  display: grid;
  gap: 10px;
}
.soon__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}
.soon__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}
.soon__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.soon__footer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.soon__footer a { color: rgba(255,255,255,.75); }

/* --- Utility ------------------------------------------------------------ */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

/* ==========================================================================
   Additions for the Jekyll build: interior pages, posts, prose, filters
   ========================================================================== */

/* --- Compact hero for interior pages ------------------------------------ */
.hero--compact { padding: clamp(48px, 7vw, 80px) 0 clamp(44px, 6vw, 68px); }
.hero--compact h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.hero--compact .hero__lead { margin-bottom: 0; }

/* --- Long-form body copy ------------------------------------------------ */
.prose { font-size: 1.06rem; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose blockquote {
  margin: 1.8em 0;
  padding: .2em 0 .2em 1.4em;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-2);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img { border-radius: var(--radius); margin: 1.8em 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose code {
  background: var(--cream-2);
  padding: .12em .4em;
  border-radius: 3px;
  font-size: .88em;
}
.prose .btn { text-decoration: none; }

/* --- Post ---------------------------------------------------------------- */
.post__byline {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}
.post__hero { width: 100%; margin: 0 0 2em; border-radius: var(--radius); }
.post h3 a { text-decoration: none; color: inherit; }
.post h3 a:hover { color: var(--gold); }

/* --- Category filter chips ---------------------------------------------- */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.chip {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .38em 1em;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip--on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip--on:hover { color: #fff; border-color: var(--ink); }

/* --- Empty states / notes ------------------------------------------------ */
.empty {
  color: var(--muted);
  font-style: italic;
  padding: 32px 0;
}
.feed-note { margin-top: 2rem; font-size: .88rem; color: var(--muted); }

/* --- Gallery with real photos ------------------------------------------- */
.gallery__item--filled {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--cream-2);
}
.gallery__item--filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery__item--filled:hover img { transform: scale(1.04); }
.gallery__item--filled figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(to top, rgba(13,23,40,.88), rgba(13,23,40,0));
  color: #fff;
  font-size: .8rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
}
.gallery__item--filled figcaption span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  margin-top: 2px;
}

/* --- Focus visibility (keyboard users) ---------------------------------- */
a:focus-visible, .btn:focus-visible, .chip:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Hosted signup call-to-action --------------------------------------- */
.signup-cta {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin: 2em 0;
}
.signup-cta .btn { text-decoration: none; }
.signup-cta__note {
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--muted);
}


/* --- Contact ------------------------------------------------------------- */
.contact-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  margin: 2em 0;
  overflow: hidden;
}
.contact-panel__item {
  display: grid;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.contact-panel__item:last-child { border-bottom: 0; }
.contact-panel__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-panel__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}
a.contact-panel__value:hover { color: var(--gold); }
.contact-panel__value--plain {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.6;
  color: var(--body);
}
@media (min-width: 720px) {
  .contact-panel { grid-template-columns: repeat(3, 1fr); }
  .contact-panel__item { border-bottom: 0; border-right: 1px solid var(--line); }
  .contact-panel__item:last-child { border-right: 0; }
}

.contact-form { margin: 2em 0; max-width: 34rem; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .7em .85em;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.contact-form .field-hidden {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
