:root {
  --background: #f8f7f2;
  --text: #08294d;
  --muted: #687c94;
  --line: rgba(104, 124, 148, 0.46);
  --field: #ffffff;
  --measure: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: rgba(8, 41, 77, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.55rem 0.75rem;
  background: var(--text);
  color: var(--background);
  transform: translateY(-150%);
}

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

.site-header,
main {
  width: min(var(--measure), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.site-name,
.site-nav a {
  text-decoration: none;
}

.site-name {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.75rem);
  color: var(--muted);
  font-size: 13px;
}

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

.intro {
  max-width: 680px;
  min-height: calc(100vh - 116px);
  padding-top: clamp(86px, 14vh, 148px);
  padding-bottom: clamp(116px, 18vh, 190px);
}

.intro p {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

h1 {
  margin-bottom: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.7vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(1.5rem, 6vw, 4rem);
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

#holdings {
  scroll-margin-top: 42px;
  min-height: clamp(300px, 44vh, 430px);
  padding-bottom: clamp(104px, 17vh, 176px);
}

#contact {
  scroll-margin-top: 42px;
}

.contact {
  padding-bottom: clamp(76px, 12vh, 132px);
}

h2 {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.holdings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem clamp(1.5rem, 5vw, 4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.holdings-list a {
  font-size: 16px;
}

.contact-panel {
  max-width: 620px;
}

.contact-panel summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: rgba(8, 41, 77, 0.22);
  text-underline-offset: 0.22em;
}

.contact-panel summary::-webkit-details-marker {
  display: none;
}

.contact-panel summary:hover {
  color: var(--text);
}

.contact-panel summary span {
  font-size: 0.8em;
  transition: transform 140ms ease;
}

.contact-panel[open] summary span {
  transform: rotate(180deg);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--muted);
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--field);
  color: var(--text);
  font: inherit;
}

input {
  height: 42px;
  padding: 0 0.7rem;
}

textarea {
  min-height: 124px;
  resize: vertical;
  padding: 0.65rem 0.7rem;
}

button {
  justify-self: start;
  min-width: 92px;
  height: 40px;
  border: 1px solid var(--text);
  border-radius: 0;
  background: var(--text);
  color: var(--background);
  cursor: pointer;
  font: inherit;
}

button:hover {
  border-color: var(--muted);
  background: var(--muted);
  color: var(--background);
}

button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.4em;
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 13px;
}

.honey {
  position: absolute;
  left: -9999px;
}

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

@media (max-width: 760px) {
  .site-header,
  main {
    width: min(100% - 32px, var(--measure));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding-block: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .intro {
    min-height: 72vh;
    padding-block: 64px 120px;
  }

  #holdings {
    min-height: 42vh;
    padding-bottom: 92px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-block: 28px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }
}
