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

body {
  background: #f6ead7;
  color: #4a2e1c;
  font-family: Nunito, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

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

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

.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: 3.1rem;
  font-weight: 700;
  color: #5c3317;
  margin-bottom: 0.45em;
}

.tagline {
  font-size: 1.15rem;
  color: #6b3e26;
  max-width: 28em;
  margin: 0 auto;
}

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

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

.photo-a { background: #d4a574; }
.photo-b { background: #c4785c; color: #f6ead7; }
.photo-c { background: #e8c9a0; }

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

.about h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1.6em 0 0.5em;
  color: #5c3317;
}

.about p {
  color: #5a3a24;
  font-size: 1.05rem;
}

.cta {
  margin-top: 1.8em;
}

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

.cta a:hover {
  background: #5c3317;
}

footer {
  background: #ead5b7;
  text-align: center;
  padding: 2em 1.5em 2.5em;
  color: #6b3e26;
  font-size: 0.95rem;
}

footer a {
  color: #5c3317;
  font-weight: 600;
}

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