:root {
  --cream: #ddd0be;
  --paper: #f7f1e7;
  --wine: #6b1f2a;
  --wine-dark: #4f1520;
  --line: rgba(107, 31, 42, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--wine);
  background: var(--cream);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.site {
  width: min(760px, 100%);
  margin-inline: auto;
  padding: 2rem 1rem 2.25rem;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo {
  width: clamp(92px, 18vw, 170px);
  height: auto;
}

h1 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
}

.subline {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  font-weight: 600;
  color: var(--wine-dark);
}

.summary {
  margin: 0;
  font-size: 0.98rem;
  color: var(--wine-dark);
}

.socials {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--wine);
  text-decoration: none;
  font-size: 0.95rem;
}

.social svg {
  width: 1.08rem;
  height: 1.08rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.social svg .fill {
  fill: currentColor;
  stroke: none;
}

.location {
  margin-top: 1.2rem;
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.location h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.coords {
  margin: 0.45rem 0 0.8rem;
  font-style: normal;
  line-height: 1.45;
  font-size: 0.94rem;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.9rem;
  color: #fffaf5;
  background: var(--wine);
}

.map-link:hover {
  background: var(--wine-dark);
}

.map-embed {
  margin-top: 0.85rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(230px, 38vw, 320px);
  border: 0;
}

@media (max-width: 680px) {
  .lockup {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site {
    padding: 1.1rem 0.9rem 1.4rem;
  }

  .social,
  .map-link {
    width: 100%;
    justify-content: center;
  }
}
