/* Palette taken from the logo: warm cream, sand, bronze-brown lettering and a gold rim. */
:root {
  --ink: #5a3d22;
  --muted: #8a6f55;
  --gold: #b8936b;
  --sand: #e9dcc9;
  --cream: #f6efe5;
  --serif: "Optima", "Candara", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  /* Keep the footer at the bottom of the viewport when the page is short. */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.brand img { width: 3rem; height: 3rem; border-radius: 50%; }

nav { display: flex; gap: 1.5rem; }
nav a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}
nav a:hover { color: var(--ink); }

main { flex: 1 0 auto; width: 100%; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 3.5rem 0; }

h1, h2, h3 { font-family: var(--serif); font-weight: normal; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); margin: 0.25rem 0 1rem; max-width: 18ch; }
h2 { font-size: 2rem; margin-top: 0; letter-spacing: 0.02em; }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
}
.hero-logo {
  width: 100%;
  max-width: 24rem;
  justify-self: center;
  border-radius: 50%;
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(90, 61, 34, 0.35);
}
.hero-center { display: block; text-align: center; }
.hero-center h1, .hero-center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.button:hover { background: #7a5634; }

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.instagram:hover { background: var(--sand); }

.contact { border-top: 1px solid var(--sand); }
.contact .lead { margin: 0 0 0.5rem; }

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 2rem 1.5rem 3rem;
}

@media (max-width: 44rem) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding-top: 1.5rem; }
  .hero-logo { max-width: 16rem; grid-row: 1; }
}
