/* Bantry Bayworks — simple one-pager
   Brand colours pulled from the logo. Mobile-first, no JavaScript. */

:root {
  --green: #6cbf4b;
  --teal:  #3f9a9a;
  --ink:   #262626;
  --muted: #5a6468;
  --line:  #e6e9ea;
  --bg:    #ffffff;
  --soft:  #f5f8f7;
  --maxw:  1000px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); }

h1, h2, h3 { line-height: 1.25; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 20px;
}
.logo img { width: 200px; height: auto; }
.header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-weight: 600;
}
.header-contact a { text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}
.hero-text {
  padding: 26px 20px 30px;
  text-align: center;
}
.hero-text h1 { margin: 0 0 8px; font-size: 1.7rem; }
.hero-text p { margin: 0 0 18px; color: var(--muted); }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
}
.btn:hover { background: #5cae3d; }

/* ---------- Blocks ---------- */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.block { padding: 30px 0; }
.block h2 {
  font-size: 1.35rem;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.block p { margin: 0 0 14px; }

/* ---------- Location ---------- */
.location { display: grid; gap: 18px; }
address { font-style: normal; line-height: 1.7; }
.hours { color: var(--muted); }

/* ---------- Features ---------- */
.features {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
}
.features li {
  position: relative;
  padding-left: 24px;
}
.features li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }
.gallery img { border-radius: 8px; width: 100%; height: 220px; object-fit: cover; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr; gap: 16px; }
.plan {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}
.plan h3 { margin: 0 0 6px; color: var(--teal); }
.price { font-size: 1.5rem; font-weight: 700; margin: 0 0 10px; color: var(--ink); }
.price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.plan p:last-child { margin-bottom: 0; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: 12px 0;
}
.contact-list span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-list a { font-weight: 600; text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 30px 20px 40px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer img { width: 150px; margin: 0 auto 12px; opacity: 0.9; }
.site-footer p { margin: 4px 0; }

/* ---------- Larger screens ---------- */
@media (min-width: 640px) {
  .site-header { padding-bottom: 36px; }
  .hero-img { height: 380px; }
  .hero-text h1 { font-size: 2.1rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .location { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .site-header { flex-direction: row; justify-content: space-between; text-align: left; }
  .features { grid-template-columns: 1fr 1fr 1fr; }
}
