@import url("https://fonts.googleapis.com/css2?family=Hurricane&family=DM+Sans:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink: #18251b;
  --paper: #f1eadc;
  --vert: #526441;
  --accent: #d4af37;
  --line: rgba(241, 234, 220, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--vert);
  font-family: "Instrument Serif", sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 3vw;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  flex-direction: column;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 0.82;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-color: currentColor;
}

main {
  min-height: 0;
}

.hero {
  min-height: calc(100vh - 145px);
  padding: clamp(28px, 8vh, 80px) 3vw clamp(24px, 4vh, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  column-gap: clamp(32px, 5vw, 80px);
}

.eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  max-width: 750px;
}

.hero-description {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.8rem, 2.64vw, 2.4rem);
  line-height: 1.4;
}

.hero-description-intro {
  color: var(--paper);
}

.signature {
  margin: 18px 0 0;
  color: var(--accent);
  font-family: "Hurricane", cursive;
  font-size: clamp(1.50rem, 2.5vw, 2.5rem);
  line-height: 1;
  text-align: right;
}

.hero-map {
  min-width: 0;
  min-height: 0;
  grid-column: 2;
  grid-row: 1 / -1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-map img {
  width: 100%;
  height: 100%;
  max-height: 68vh;
  object-fit: contain;
  opacity: 0.9;
}

.titles {
  padding: clamp(48px, 8vw, 96px) 3vw;
  border-top: 1px solid var(--line);
}

.titles h2 {
  margin: 0 0 32px;
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
}

.titles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.titles li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 48px);
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.titles time {
  text-align: right;
  white-space: nowrap;
}

.titles li:last-child {
  border-bottom: 1px solid var(--line);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding: 22px 3vw;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: clamp(28px, 6vw, 48px);
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-map {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-map img {
    height: auto;
    max-height: 60vh;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 18px 20px;
  }

  nav {
    gap: 16px;
  }

  .hero {
    padding: clamp(24px, 7vh, 48px) 20px 28px;
  }

  .hero-map img {
    max-height: 50vh;
  }

  .titles {
    padding-right: 20px;
    padding-left: 20px;
  }

  footer {
    gap: 8px;
    grid-template-columns: 1fr auto;
    padding: 20px;
  }

  footer p:nth-child(2) {
    display: none;
  }
}
