* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #2c2416;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.6;
}

.sample-bar {
  background: #2c2416;
  color: #f7f1e8;
  text-align: center;
  padding: 0.55em 1em;
  font-size: 0.85em;
  letter-spacing: 0.04em;
}

.sample-bar a {
  color: #f7f1e8;
  text-decoration: none;
}

.sample-bar a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 4.5em 1.5em 3em;
  background: #fff;
}

.eyebrow {
  font-size: 0.8em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7360;
  margin-bottom: 0.8em;
}

.hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #2c2416;
  margin-bottom: 0.5em;
}

.tagline {
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #5c4a38;
  max-width: 28em;
  margin: 0 auto;
}

.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5em 3em;
}

.photo {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c4a38;
  font-size: 0.95em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-a { background: #ead7bf; }
.photo-b { background: #d4b48a; }
.photo-c { background: #f0e4d4; }

.about {
  max-width: 36em;
  margin: 0 auto;
  padding: 0 1.5em 3.5em;
  text-align: center;
}

.about h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 1.6em 0 0.5em;
  color: #2c2416;
}

.about p {
  color: #4a3d2e;
  font-size: 1.05rem;
}

.cta {
  margin-top: 1.8em;
}

.cta a {
  display: inline-block;
  background: #2c2416;
  color: #fff;
  text-decoration: none;
  padding: 0.75em 1.6em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cta a:hover {
  background: #4a3d2e;
}

footer {
  border-top: 1px solid #ead7bf;
  text-align: center;
  padding: 2em 1.5em 2.5em;
  color: #6b5a48;
  font-size: 0.95rem;
}

footer a {
  color: #2c2416;
}

@media (max-width: 640px) {
  .hero {
    padding: 3em 1.2em 2em;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .tagline {
    font-size: 1.05rem;
  }
  .photos {
    grid-template-columns: 1fr;
    padding-bottom: 2em;
  }
  .photo {
    min-height: 140px;
  }
}
