:root {
  --col-black: #1a1a1a;
  --col-dark-grey: #2d2d2d;
  --col-grey: #666666;
  --col-light-grey: #e5e5e5;
  --col-yellow: #ffb703;
  --col-white: #ffffff;
  --font-heading: "Arial Narrow", "Helvetica Neue", Helvetica, sans-serif;
  --font-body:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-accent: ui-serif, Georgia, serif;
  --radius-soft: 6px;
  --spacing-base: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--col-black);
  background: var(--col-white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: 0.5px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--col-black);
  color: var(--col-white);
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-base) var(--spacing-lg);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--col-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-logo svg {
  height: 32px;
  width: auto;
}

.main-nav,
.header-actions {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--col-white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.nav-list a:hover {
  color: var(--col-yellow);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--col-yellow);
  border: 2px solid var(--col-yellow);
  border-radius: var(--radius-soft);
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.cta-button:hover {
  background: var(--col-yellow);
  color: var(--col-black);
}

/* MOBILE DRAWER */
.mobile-toggle {
  display: block;
  background: transparent;
  border: none;
  color: var(--col-white);
  cursor: pointer;
  padding: 0.5rem 0;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--col-dark-grey);
  color: var(--col-white);
  z-index: 1001;
  padding: 2rem;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--col-white);
  cursor: pointer;
}

.drawer-close svg {
  width: 28px;
  height: 28px;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-list a {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--col-light-grey);
}

.drawer-list a:hover {
  color: var(--col-yellow);
}

.drawer-cta {
  margin-top: auto;
  text-align: center;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
  .main-nav,
  .header-actions {
    display: block;
  }
  .header-inner {
    justify-content: flex-end;
    gap: 2.5rem;
  }
  .brand-logo {
    margin-right: auto;
  }
}

/* FOOTER */
.site-footer {
  background: var(--col-black);
  color: var(--col-light-grey);
  padding: var(--spacing-xl) 0 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg) var(--spacing-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--col-yellow);
  text-transform: uppercase;
  font-weight: 700;
}

.tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--col-grey);
  margin: 0;
  font-size: 1.1rem;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--col-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-contact h4::after,
.footer-links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 40px;
  height: 2px;
  background: var(--col-yellow);
}

.footer-contact p {
  margin: 0.8rem 0;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--col-light-grey);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--col-yellow);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--col-yellow);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--col-light-grey);
}

.footer-bottom {
  background: #111111;
  text-align: center;
  padding: 1.5rem var(--spacing-lg);
  border-top: 1px solid var(--col-dark-grey);
}

.footer-bottom p {
  margin: 0;
  color: var(--col-grey);
  font-size: 0.9rem;
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}

.relative.workshop-image::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  border: 2px solid var(--col-yellow);
  border-radius: var(--radius-soft);
  transform: translate(1rem, 1rem);
  z-index: -1;
}

.bg-accent {
  background-color: var(--col-yellow);
}