@charset "UTF-8";
/* CSS Document */
/* ===== Base ===== */

* {
  box-sizing: border-box;
}

:root {
  --hgc-green: #0b6b3c;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for sticky nav height */
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #0b0b0b;
  line-height: 1.5;
}

/* Global links – neutral by default, green on hover/focus */

a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: transparent;
  transition:
    color 0.16s ease,
    text-decoration-color 0.16s ease,
    background-color 0.16s ease;
}

a:hover,
a:focus-visible {
  color: var(--hgc-green);
  text-decoration: underline;
  text-decoration-color: var(--hgc-green);
}

/* Generic focus outline for keyboard users */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--hgc-green);
  outline-offset: 2px;
}

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

/* ===== Header / Navigation ===== */

.site-header {
  border-bottom: 1px solid #dddddd;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.0rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: 72px;
  height: auto;
}

.site-header nav {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* nav links inherit the global link behaviour,
   plus a subtle underline "bar" on hover/active */

.site-header nav a {
  margin-left: 1.3rem;
  position: relative;
  padding-bottom: 0.15rem;
}

/* bar underline - slightly bolder */
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--hgc-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.16s ease;
  box-shadow: 0 1px 3px rgba(11, 107, 60, 0.08);
}

/* remove text underline on nav hovers – use the bar instead */
.site-header nav a:hover,
.site-header nav a:focus-visible {
  text-decoration: none;
}

/* show the bar on hover/focus */
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

/* optional "current page" state – just add class="nav-link--active" in HTML */
.nav-link--active {
  color: var(--hgc-green);
}

.nav-link--active::after {
  transform: scaleX(1);
}

/* ===== Main content wrapper ===== */

.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem 1.5rem;
}

.page-title {
  font-size: 2.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 90px;
  height: 3px;
  background: var(--hgc-green);
  margin-bottom: 1.8rem;
  box-shadow: 0 1px 4px rgba(11, 107, 60, 0.12);
}

.intro-text {
  font-size: 0.95rem;
  opacity: 0.86;
  max-width: 650px;
  margin-bottom: 2.2rem;
}

.section-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.75;
  margin: 2.5rem 0 1.0rem 0;
}

/* ===== Hero layouts (non-home pages that use image + copy) ===== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
}

.hero-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-text p {
  margin: 0 0 0.75rem 0;
}

.hero-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

/* ===== Generic grids & cards ===== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card-meta {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.card-body {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

/* ===== Albums (music page) ===== */

.albums-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.album-card {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  background: #f7f7f7;
}

.album-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.album-meta {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.album-description {
  font-size: 0.86rem;
  opacity: 0.9;
  margin-bottom: 0.7rem;
  flex-grow: 1;
}

/* ===== Products / shop ===== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.product-card {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  background: #f7f7f7;
}

.product-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.product-meta {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.button-row {
  margin-top: 0.25rem;
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  padding: 0.42rem 1.0rem;
  border-radius: 999px;
  border: 1px solid var(--hgc-green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--hgc-green);
  color: #ffffff;
}

.btn-primary:hover {
  background: #094f2c;
  border-color: #094f2c;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--hgc-green);
}

.btn-ghost:hover {
  background: #f0f7f3;
  text-decoration: none;
}

/* Image-based buttons (Spotify / RedBubble) */
.spotify-button,
.redbubble-button {
  height: 32px;
  width: auto;
  display: inline-block;
}

/* ===== Photo strip (music, gallery, etc.) ===== */

.photo-strip {
  margin-top: 3rem;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.strip-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #e1e1e1;
}

.strip-caption {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 0.35rem;
}

/* ===== People / Portraits / Weddings / Collabs ===== */

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
  margin-top: 2.25rem;
}

.people-card {
  max-width: 640px;
  margin: 0 auto;
}

.artwork-image {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 18px 40px rgba(11, 107, 60, 0.10);
  background: #ffffff;
}

.artwork-caption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.8;
}

/* If you tag tall images with class="artwork-image portrait",
   this keeps them visually in check. */
.artwork-image.portrait {
  max-height: 520px;
  width: auto;
  margin: 0 auto;
}

/* ===== Updates page ===== */

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.update {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 2rem;
}

.update:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.update-title {
  font-size: 1.35rem;
  margin: 0 0 0.25rem 0;
}

.update-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.update-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 0.9rem;
  border: 1px solid #e0e0e0;
}

.update-body {
  font-size: 0.94rem;
  opacity: 0.9;
  margin: 0 0 0.4rem 0;
}

.update-note {
  font-size: 0.82rem;
  opacity: 0.7;
  margin: 0.2rem 0 0 0;
}

/* ===== Writing page: WIP block / excerpts ===== */

.wip-block {
  border-left: 4px solid var(--hgc-green);
  padding-left: 1rem;
  margin-bottom: 2rem;
  background: #f8faf9;
  padding: 1rem 1.2rem;
  border-radius: 4px;
}

.wip-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
}

.excerpt {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid #dddddd;
}

/* ===== Contact page ===== */

.contact-text {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 700px;
}

.contact-section {
  margin-bottom: 2rem;
}

.contact-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-address {
  font-size: 0.9rem;
  line-height: 1.6;
}

.mailing-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mailing-form input {
  padding: 0.5rem 0.6rem;
  border: 1px solid #cccccc;
  border-radius: 2px;
  font: inherit;
}

/* ===== Series (They Came etc.) – grid of works page ===== */

.series-page {
  /* hook for future tweaks – main handles centring */
}

.series-header {
  max-width: 800px;
  margin: 0 0 2.5rem 0;
}

.series-header h1 {
  font-size: 2.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.series-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.series-header p {
  margin: 0 0 0.9rem;
}

.series-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* grid of works */

.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.series-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.series-thumb-wrap {
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 107, 60, 0.08);
  transform: translateY(0);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  filter: grayscale(0.35) contrast(0.97);
}

.series-thumb-wrap img {
  width: 100%;
  display: block;
}

.series-item:hover .series-thumb-wrap,
.series-item:focus-visible .series-thumb-wrap {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 107, 60, 0.10);
  filter: grayscale(0) contrast(1.02);
}

.series-item-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 0.65rem;
  margin-bottom: 0.2rem;
}

.series-item-meta {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.35rem;
}

.series-item-text {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== Footer (shared across pages that use it) ===== */

.site-footer {
  border-top: 1px solid #dddddd;
  padding: 1rem 1.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links a {
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-center {
  text-align: center;
}

.footer-center a {
  display: inline-block;
}

.icon {
  width: 16px;
  height: 16px;
}

/* ===== Responsive tweaks ===== */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .albums-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  nav {
    font-size: 0.8rem;
    letter-spacing: 0.10em;
  }

  nav a {
    margin-left: 0.9rem;
  }

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

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

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

  .photo-strip-grid {
    grid-template-columns: 1fr;
  }

  .series-grid {
    gap: 1.25rem;
  }
}

/* ===== Global Image Hover Effects ===== */
/* Subtle green-tinted shadows on hover for images */

.thumbnail-nav a:hover img,
.series-grid a:hover img,
.albums-grid .album-card img:hover,
.products-grid a:hover img {
  box-shadow: 0 4px 12px rgba(11, 107, 60, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* ===== Hamburger Menu for Mobile/Tablet ===== */

/* Hide hamburger by default (desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--hgc-green);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when menu is open */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .site-header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 2rem;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }

  .site-header nav.mobile-menu-open {
    transform: translateX(0);
  }

  .site-header nav a {
    margin: 0;
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  /* Ensure logo and hamburger are always visible */
  .header-inner {
    position: relative;
    z-index: 1001;
  }
}
