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

:root {
  --black: #111;
  --white: #fff;
  --off-white: #f5f5f5;
  --mid-gray: #666;
  --border: #ddd;
  --accent: #1a1a1a;
  --green: #2d6a2d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  background: var(--black);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .logo img { height: 36px; }
nav .nav-links { display: flex; gap: 2rem; list-style: none; }
nav .nav-links a { color: var(--white); font-size: 14px; letter-spacing: 0.03em; }
nav .nav-links a:hover { text-decoration: none; opacity: 0.75; }
nav .nav-links a.active { border-bottom: 2px solid var(--white); padding-bottom: 2px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; background: var(--black); padding: 1rem 2rem 1.5rem; }
.mobile-menu a { display: block; color: var(--white); padding: 0.6rem 0; border-bottom: 1px solid #333; font-size: 15px; }
.mobile-menu.open { display: block; }

/* HERO */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45;
}
.hero-content { position: relative; z-index: 1; color: var(--white); padding: 3rem 1.5rem; }
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.hero-content p { font-size: 1.2rem; margin-top: 0.75rem; opacity: 0.85; }

/* SECTIONS */
.section { padding: 4rem 1.5rem; max-width: 900px; margin: 0 auto; }
.section-wide { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 1rem; }
.section h3, .section-wide h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; margin-top: 2rem; }
.section p, .section-wide p { color: #333; margin-bottom: 1rem; }

/* ACCORDION */
.accordion { border-top: 1px solid var(--border); margin-top: 2rem; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.accordion-btn .icon { font-size: 1.4rem; color: var(--mid-gray); transition: transform 0.2s; }
.accordion-btn[aria-expanded="true"] .icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 1.2rem; color: #444; line-height: 1.7; }
.accordion-body.open { display: block; }

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
}
.package-card.featured { border: 2px solid var(--black); }
.package-card h3 { margin-top: 0; font-size: 1.1rem; }
.package-card .price { font-size: 2rem; font-weight: 700; margin: 0.75rem 0; }
.package-card p { font-size: 0.9rem; color: var(--mid-gray); flex: 1; }
.btn {
  display: inline-block; margin-top: 1.25rem;
  background: var(--black); color: var(--white);
  padding: 0.65rem 1.4rem; border-radius: 4px; font-size: 0.9rem;
  text-align: center; transition: opacity 0.2s;
}
.btn:hover { opacity: 0.8; text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ARCHIVE TABLE */
.archive-list { margin-top: 2rem; }
.archive-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--border); gap: 1rem;
  flex-wrap: wrap;
}
.archive-item .match-date { font-size: 0.85rem; color: var(--mid-gray); min-width: 100px; }
.archive-item .match-name { font-weight: 500; flex: 1; }

/* PHOTO GRID */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.photo-card { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.photo-card img { width: 100%; height: 200px; object-fit: cover; }
.photo-card .photo-info { padding: 1rem; }
.photo-card h3 { font-size: 0.95rem; margin-top: 0; margin-bottom: 0.5rem; }

/* PAGE HERO (non-home) */
.page-hero {
  background: var(--black);
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero img.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3;
}
.page-hero h1 { position: relative; z-index: 1; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }

/* CONTACT FORM */
.contact-form { margin-top: 2rem; }
.contact-form label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 1rem; font-family: inherit; margin-bottom: 1.25rem;
  background: var(--white); color: var(--black);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--black); border-color: transparent;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  background: var(--black); color: var(--white);
  border: none; padding: 0.75rem 2rem;
  font-size: 1rem; border-radius: 4px; cursor: pointer;
}
.contact-form button:hover { opacity: 0.8; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2rem; }
.about-grid img { border-radius: 6px; width: 100%; object-fit: cover; max-height: 420px; }

/* BAND */
.band { background: var(--off-white); padding: 3rem 1.5rem; }
.band-inner { max-width: 900px; margin: 0 auto; }

/* FOOTER */
footer {
  background: var(--black); color: var(--white);
  padding: 2.5rem 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.9rem;
}
footer .footer-brand { font-weight: 600; font-size: 1rem; }
footer a { color: var(--white); opacity: 0.8; }
footer a:hover { opacity: 1; }
footer .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* NOTICE BOX */
.notice {
  background: #f0f7f0; border-left: 3px solid var(--green);
  padding: 1rem 1.25rem; border-radius: 0 4px 4px 0;
  font-size: 0.95rem; color: #2a4a2a; margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
}
