* {
  box-sizing: border-box;
}

body {
  margin: 40px auto;
  max-width: 850px;
  line-height: 1.6;
  font-size: 18px;
  color: #111;
  background-color: #fffff8;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

header {
  margin-bottom: 40px;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}

header h1 {
  margin: 0 0 15px 0;
  font-size: 28px;
  text-align: center;
}

header h1 a {
  text-decoration: none;
  color: #111;
  display: inline-block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  background: #eee;
  color: #111;
}

main {
  padding-top: 20px;
}

section {
  margin-bottom: 60px;
  padding-top: 20px;
}

h2 {
  font-size: 24px;
  margin-top: 0;
  color: #333;
}

h3 {
  font-size: 18px;
  margin-top: 15px;
  color: #444;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
}

.right {
  float: right;
  margin-left: 20px;
  max-width: 300px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

address {
  margin: 20px 0;
}

address p {
  margin: 5px 0;
}

a {
  color: #0066cc;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0066cc;
  color: white;
  padding: 8px 12px;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #0066cc;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}

.button:hover {
  background: #0055aa;
  text-decoration: none;
}

.honey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.honey-grid article {
  padding: 0;
}

.honey-grid article img {
  width: 100%;
  height: auto;
}

.honey-grid article h3 {
  margin: 10px 0 5px 0;
}

.honey-grid article ul {
  margin: 5px 0 0 0;
  padding-left: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

iframe {
  margin-top: 20px;
  border-radius: 4px;
}

footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 2px solid #eee;
  text-align: center;
  font-size: 14px;
  color: #666;
}

footer p {
  margin: 0;
}

footer a {
  color: #666;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    margin: 20px auto;
    padding: 0 15px;
  }

  header h1 {
    font-size: 24px;
  }

  nav {
    flex-direction: column;
    gap: 8px;
  }

  nav a {
    padding: 8px 12px;
  }

  .right {
    float: none;
    max-width: 100%;
    margin: 15px 0;
  }

  .honey-grid {
    grid-template-columns: 1fr;
  }
}
