:root {
  --green: #123d1d;
  --green-2: #214d2f;
  --gold: #c49a2f;
  --ink: #111827;
  --muted: #4b5563;
  --line: #d8dfd2;
  --soft: #f5f8f2;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
}

img,
svg,
canvas,
iframe,
video {
  max-width: 100%;
}

main,
section,
header,
footer {
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 20;
  max-width: none;
  margin: 0 auto;
  padding: .45rem max(1rem, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 0;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 24px rgba(18, 61, 29, .08);
  backdrop-filter: blur(14px);
}

.site-nav-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 3px solid var(--gold);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 24px rgba(18, 61, 29, .08);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, opacity .2s ease;
}

.site-nav-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.brand img {
  display: block;
  width: min(300px, 38vw);
  height: 78px;
  object-fit: cover;
  object-position: center 40%;
}

.brand picture,
.service-card picture {
  display: block;
}

.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: .35rem max(1rem, calc((100% - 1180px) / 2));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.75rem, 2.5vw, 2rem);
  align-items: center;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  padding: .35rem .1rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--gold);
}

.portal-link {
  font-size: inherit;
  color: var(--green-2);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.75rem, 4.5vw, 3.5rem) 1rem 1.5rem;
  background:
    linear-gradient(90deg, rgba(7, 31, 15, .78), rgba(7, 31, 15, .38)),
    url("assets/website/workshop/workshop-signage.jpg") center 42% / cover no-repeat;
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 31, 15, .08), rgba(7, 31, 15, .3));
  content: '';
  pointer-events: none;
}

.hero-inner {
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: transparent;
}

.hero-copy,
.quick-panel {
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: #fff;
}

.hero-copy {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  text-align: left;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--green);
  font-size: clamp(2.5rem, 5.1vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero .hero-copy h1,
.hero .hero-copy p {
  color: var(--ink);
}

.hero h1::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 1.1rem 0;
  background: var(--gold);
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: #1f2937;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.35rem;
  border-radius: 8px;
  border: 2px solid var(--green);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--green);
}

.button.compact {
  min-height: 42px;
  padding: .6rem .9rem;
  margin-top: .5rem;
}

.quick-panel {
  padding: 1rem 1.1rem;
}

.workshop-map-wrap {
  position: relative;
  margin: 0 0 .95rem;
  max-width: 100%;
  overflow: hidden;
}

.workshop-map {
  width: 100%;
  max-width: 100%;
  height: 210px;
  border: 1px solid var(--line);
  background: #e8eee4;
  overflow: hidden;
  isolation: isolate;
}

.workshop-map.leaflet-container {
  font: inherit;
}

.workshop-map .leaflet-control-container,
.workshop-map .leaflet-pane {
  max-width: 100%;
}

.workshop-map .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .16);
  margin-left: 8px;
  margin-top: 8px;
}

.workshop-map .leaflet-control-zoom a {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid rgba(18, 61, 29, .18);
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}

.workshop-map .leaflet-control-attribution {
  max-width: calc(100% - 16px);
  margin: 0;
  padding: 2px 5px;
  border-radius: 4px 0 0 0;
  background: rgba(255, 255, 255, .82);
  color: #374151;
  font-size: .58rem;
  line-height: 1.15;
  white-space: normal;
  box-shadow: none;
}

.workshop-map .leaflet-control-attribution a {
  color: var(--green);
}

.gmt-map-pin {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  border: 5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
}

.quick-panel h2 {
  margin: 0 0 .75rem;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1.1;
}

.quick-panel dl {
  margin: 0;
  display: grid;
  gap: .7rem;
}

.quick-panel dl > div {
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}

.quick-panel dl > div:last-child {
  border-bottom: 0;
}

.quick-panel dt {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-panel dd {
  margin: .12rem 0 0;
  color: #1f2937;
  font-weight: 800;
  line-height: 1.25;
}

.quick-panel > a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin-top: .95rem;
  padding: .55rem .9rem;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.section-heading h2,
.about-band h2,
.contact-card h2 {
  margin: 0 0 .55rem;
  color: var(--green);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.section-heading p,
.about-band p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

.services-carousel {
  max-width: 100%;
}

.service-card {
  position: relative;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 61, 29, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  border: 1px solid var(--line);
  background: var(--white);
  min-width: 0;
  overflow-wrap: anywhere;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(196, 154, 47, .72);
  box-shadow: 0 18px 34px rgba(18, 61, 29, .14);
}

.service-card img {
  width: 100%;
  height: 150px;
  aspect-ratio: auto;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  filter: saturate(.92) contrast(1.04);
  transition: transform .35s ease, filter .35s ease;
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.06);
}

.service-card h3 {
  margin: 1rem 1rem .35rem;
  color: var(--green);
  font-size: 1.25rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  padding: 0 1rem 1.15rem;
  color: #1f2937;
}

.workshop-section {
  max-width: 1180px;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.workshop-photo {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 61, 29, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.workshop-photo-feature {
  grid-column: span 6;
}

.workshop-photo:hover,
.workshop-photo:focus-within {
  transform: translateY(-5px);
  border-color: rgba(196, 154, 47, .72);
  box-shadow: 0 18px 34px rgba(18, 61, 29, .14);
}

.workshop-photo img {
  display: block;
  width: 100%;
  height: 160px;
  aspect-ratio: auto;
  object-fit: cover;
  background: var(--soft);
  filter: saturate(.94) contrast(1.03);
  transition: transform .35s ease, filter .35s ease;
}

.workshop-photo:hover img,
.workshop-photo:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.05);
}

.workshop-photo figcaption {
  display: grid;
  gap: .18rem;
  padding: .85rem 1rem 1rem;
}

.workshop-photo figcaption strong {
  color: var(--green);
  font-size: 1.05rem;
}

.workshop-photo figcaption span {
  color: var(--muted);
  font-size: .94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.workshop-motion {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem) max(1rem, calc((100% - 1120px) / 2));
  overflow: hidden;
  background: var(--green);
  color: #fff;
}

.workshop-motion::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 31, 15, .84), rgba(7, 31, 15, .34));
  content: '';
}

.workshop-motion-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.05);
}

.workshop-motion-content {
  width: 100%;
}

.workshop-motion h2 {
  max-width: 620px;
  margin: 0 0 .7rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
}

.workshop-motion p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
}

.workshop-enquiry-card {
  width: 100%;
  padding: 1.1rem 1.2rem;
  text-align: left;
}

.workshop-enquiry-card .eyebrow {
  margin: 0 0 .35rem;
  color: var(--green-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workshop-enquiry-card h3 {
  margin: 0 0 .55rem;
  color: var(--green);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.05;
}

.workshop-enquiry-form {
  gap: .35rem;
}

.workshop-enquiry-form label {
  margin-top: .2rem;
  font-size: .82rem;
}

.workshop-enquiry-form input:not([type="hidden"]),
.workshop-enquiry-form textarea {
  padding: .55rem .65rem;
  font-size: .9rem;
}

.workshop-enquiry-form textarea {
  min-height: 68px;
}

.workshop-enquiry-form .button {
  min-height: 42px;
  margin-top: .35rem;
  padding: .6rem .9rem;
}

.workshop-enquiry-form .form-status {
  font-size: .78rem;
}

.content-carousel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.content-carousel-panel {
  max-width: none;
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  padding-block: clamp(1.5rem, 3.4vw, 2.5rem);
}

.content-carousel .section-heading {
  margin-bottom: 1rem;
}

.content-carousel .service-card img,
.content-carousel .workshop-photo img {
  height: 120px;
}

.content-carousel-panel[aria-hidden="true"] {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.content-carousel-panel.is-active {
  visibility: visible;
  pointer-events: auto;
}

.content-carousel-controls {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .35rem 1rem 1.25rem;
}

.content-carousel-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font: inherit;
  font-size: 1.9rem;
  line-height: 1;
  padding: 0 0 .16rem;
}

.content-carousel-button:hover,
.content-carousel-button:focus-visible {
  background: var(--green);
  color: #fff;
}

.content-carousel-status {
  min-width: 92px;
  color: var(--green);
  font-size: .9rem;
  font-weight: 900;
  text-align: center;
}

.service-carousel-controls {
  display: none;
}

.about-band {
  --team-image: url("assets/website/workshop/joe-workshop.jpg");
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 62vw, 720px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 31, 15, .9) 0%, rgba(7, 31, 15, .56) 44%, rgba(7, 31, 15, .24) 100%),
    var(--team-image) center 36% / cover no-repeat;
  color: #fff;
  padding: clamp(1.5rem, 4vw, 3rem) max(1rem, calc((100% - 1180px) / 2));
}

.about-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 31, 15, .92), transparent 54%);
  content: '';
}

.team-showcase-label {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  right: max(1rem, calc((100% - 1180px) / 2));
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.team-showcase-current {
  position: absolute;
  left: max(1rem, calc((100% - 1180px) / 2));
  bottom: clamp(5.5rem, 9vw, 7rem);
  z-index: 1;
  width: min(470px, 42vw);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .28);
}

.team-showcase-current .eyebrow {
  margin: 0 0 .65rem;
  color: var(--gold);
}

.team-showcase-current h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: .92;
}

.team-showcase-current .team-role {
  margin: .65rem 0 .75rem;
  color: var(--gold);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 950;
}

.team-showcase-bio {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.95rem, 1.45vw, 1.15rem);
}

.team-context {
  position: absolute;
  right: max(1rem, calc((100% - 1180px) / 2));
  bottom: clamp(5.5rem, 9vw, 7rem);
  z-index: 1;
  width: min(440px, 38vw);
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(7, 31, 15, .62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.team-context {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.team-context h3,
.team-context p {
  color: #fff;
}

.team-context h3 {
  margin: 0 0 .45rem;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.team-context p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  line-height: 1.45;
}

.team-context ul {
  margin: 0;
  padding: .75rem 0 0 1.1rem;
  display: grid;
  gap: .3rem;
  color: #fff;
  font-size: .86rem;
  font-weight: 850;
}

.team-next-preview {
  position: absolute;
  right: max(1rem, calc((100% - 1180px) / 2));
  bottom: 1.35rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: .7rem;
  width: min(270px, 42vw);
  padding: .45rem .65rem .45rem .45rem;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  background: rgba(7, 31, 15, .72);
  color: #fff;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}

.team-next-preview:hover,
.team-next-preview:focus-visible {
  transform: translateY(-3px);
  background: rgba(7, 31, 15, .9);
}

.team-next-preview img {
  width: 58px;
  height: 58px;
  border-radius: 9px;
  object-fit: cover;
}

.team-next-label,
.team-next-preview small {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-next-preview strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.team-next-preview small {
  color: var(--gold);
  font-size: .72rem;
}

.team-progress {
  position: absolute;
  right: max(1rem, calc((100% - 1180px) / 2));
  bottom: .7rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  width: min(270px, 42vw);
}

.team-progress-bar {
  display: block;
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
}

.team-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.team-progress-text {
  min-width: 52px;
  color: rgba(255, 255, 255, .85);
  font-size: .72rem;
  font-weight: 800;
  text-align: right;
}

.team-context li::marker {
  color: var(--gold);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 3px solid var(--gold);
  padding-top: 1.5rem;
}

.contact-card > div {
  padding: 0 1rem 0 0;
  border-right: 1px solid var(--line);
}

.contact-card > div:last-child {
  border-right: 0;
}

.contact-card a:not(.button) {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.link-panel {
  display: grid;
  gap: .75rem;
  align-content: start;
}

.bpma-link {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: .7rem;
  align-items: center;
}

.bpma-link img {
  width: 86px;
  height: auto;
  display: block;
}

.site-footer {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: .9rem 1rem calc(.9rem + env(safe-area-inset-bottom));
}

.site-footer p {
  margin: 0;
  font-size: .92rem;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 25, 13, .58);
  backdrop-filter: blur(9px);
}

.contact-dialog {
  position: relative;
  width: min(100%, 540px);
  max-height: min(720px, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid rgba(196, 154, 47, .48);
  border-top: 5px solid var(--gold);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.contact-dialog h2 {
  margin: 0 2rem .35rem 0;
  color: var(--green);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.05;
}

.contact-dialog .eyebrow {
  margin: 0 0 .45rem;
  color: var(--green-2);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.contact-close {
  position: absolute;
  top: .75rem;
  right: .8rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: .55rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form label {
  margin-top: .35rem;
  color: var(--green);
  font-weight: 850;
}

.contact-form input:not([type="hidden"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid #b7c6b5;
  border-radius: 9px;
  padding: .75rem .8rem;
  color: var(--ink);
  background: #fbfdf9;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-close:focus-visible {
  outline: 3px solid rgba(196, 154, 47, .45);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  margin-top: .65rem;
}

.form-status {
  min-height: 1.5em;
  margin: .2rem 0 0;
  color: var(--green-2);
  font-size: .92rem;
  font-weight: 750;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: .75rem;
    display: grid;
    justify-items: center;
    gap: .9rem;
  }

  .brand img {
    width: min(470px, 84vw);
    height: 104px;
    object-position: center 40%;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: .35rem;
    font-size: clamp(.62rem, 2.9vw, .9rem);
    letter-spacing: .02em;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero-inner,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    padding-inline: .75rem;
  }

  .about-band h2 {
    font-size: 1.2rem;
  }

  .about-band p,
  .about-band li {
    font-size: .86rem;
  }

  .about-band ul {
    padding-left: 1rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero h1::after {
    margin-inline: auto;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .workshop-map {
    height: 300px;
  }

  .workshop-map .leaflet-control-zoom {
    margin-left: 7px;
    margin-top: 7px;
  }

  .workshop-map .leaflet-control-zoom a {
    width: 28px;
    height: 28px;
    line-height: 26px;
    font-size: 16px;
  }

  .workshop-map .leaflet-control-attribution {
    max-width: min(78%, 260px);
    font-size: .52rem;
  }

  .services-carousel {
    overflow: hidden;
    position: relative;
  }

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

  .service-card {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .service-card img {
    height: 105px;
    aspect-ratio: auto;
  }

  .workshop-photo,
  .workshop-photo-feature {
    grid-column: span 6;
  }

  .workshop-photo img {
    height: 105px;
  }

  .workshop-motion {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem .85rem;
  }

  .service-carousel-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .65rem;
    margin-top: .8rem;
  }

  .service-carousel-button {
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green);
    border-radius: 999px;
    background: #fff;
    color: var(--green);
    font: inherit;
    font-weight: 900;
    font-size: 1.9rem;
    line-height: 1;
    padding: 0 0 .16rem;
  }

  .service-dots {
    display: flex;
    justify-content: center;
    gap: .35rem;
    min-width: 0;
  }

  .service-dot {
    width: 10px;
    height: 10px;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: #fff;
  }

  .service-dot.is-active {
    background: var(--green);
  }

  .contact-card > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1rem;
  }

  .contact-card > div:last-child {
    border-bottom: 0;
  }
}

.workshop-enquiry-form {
  max-height: 34rem;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .42s ease, opacity .25s ease, transform .42s ease;
}

.workshop-enquiry-form.is-submitted {
  max-height: 0;
  margin-block: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.workshop-enquiry-card p.workshop-enquiry-status {
  min-height: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--green-2);
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height .35s ease, margin .35s ease, opacity .25s ease, transform .35s ease;
}

.workshop-enquiry-card p.workshop-enquiry-status.is-visible {
  max-height: 4rem;
  margin-top: .75rem;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .workshop-enquiry-form,
  .workshop-enquiry-status {
    transition: none;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(360px, 88vw);
    height: 94px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .workshop-photo,
  .workshop-photo-feature {
    grid-column: span 6;
  }

  .workshop-photo img {
    height: 100px;
  }

  .quick-panel {
    text-align: left;
  }

  .about-band {
    gap: .55rem;
    padding-inline: .6rem;
  }

  .about-band h2 {
    font-size: 1rem;
  }

  .about-band p,
  .about-band li,
  .team-profile p:last-child {
    font-size: .74rem;
    line-height: 1.35;
  }

  .about-band ul {
    padding-left: .8rem;
  }

  .team-panel .eyebrow {
    font-size: .62rem;
  }

  .team-profile {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .team-profile img,
  .team-initials {
    grid-row: auto;
    width: 100%;
    height: 72px;
  }
}

@media (min-width: 821px) and (max-width: 900px) {
  .workshop-map {
    height: 280px;
  }

  .services-carousel {
    overflow: hidden;
    position: relative;
  }

  .content-carousel .service-grid {
    --service-index: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    transform: none;
  }

  .service-carousel-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .65rem;
    margin-top: .8rem;
  }

  .service-carousel-button {
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green);
    border-radius: 999px;
    background: #fff;
    color: var(--green);
    font: inherit;
    font-weight: 900;
    font-size: 1.9rem;
    line-height: 1;
    padding: 0 0 .16rem;
  }
}

@media (max-width: 820px) and (orientation: landscape) {
  .hero {
    padding-top: 1rem;
  }

  .workshop-map {
    height: 240px;
  }
}

@media (min-width: 821px) and (max-width: 900px) and (orientation: landscape) {
  .workshop-map {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .service-grid {
    transition: none;
  }

  .reveal,
  .reveal.is-visible,
  .workshop-photo,
  .workshop-photo img {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .workshop-motion {
    background: var(--green);
  }
}

@media (max-width: 820px) {
  .about-band.team-showcase {
    min-height: 700px;
    padding: 1.25rem .85rem;
    background-position: 58% center;
  }

  .team-showcase-label {
    top: 1.25rem;
    right: .85rem;
    font-size: .68rem;
  }

  .team-showcase-current {
    left: .85rem;
    right: .85rem;
    bottom: auto;
    top: 4.75rem;
    width: auto;
  }

  .team-showcase-current h2 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .team-context {
    left: .85rem;
    right: .85rem;
    bottom: 5.75rem;
    width: auto;
    padding: .9rem 1rem;
    top: 4.75rem;
    bottom: auto;
    transform: none;
  }

  .team-context p,
  .team-context ul {
    font-size: .8rem;
  }

  .team-next-preview,
  .team-progress {
    right: .85rem;
    width: min(270px, calc(100% - 1.7rem));
  }

  .team-next-preview {
    bottom: 1.3rem;
  }

  .team-progress {
    bottom: .65rem;
  }
}

/* Final team-showcase positioning and hover behavior. */
.team-next-preview {
  visibility: hidden;
  opacity: 0;
}

.team-progress:hover ~ .team-next-preview {
  visibility: visible;
  opacity: 1;
}

.team-context {
  right: max(1rem, calc((100% - 1180px) / 2));
  width: min(390px, 32vw);
  padding: .85rem .95rem;
}

.about-band.team-showcase .team-showcase-bio {
  color: rgba(255, 255, 255, .9);
}

.about-band.team-showcase .team-context {
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .team-context {
    right: .85rem;
    width: auto;
    padding: .75rem .85rem;
    top: auto;
    bottom: 4.25rem;
    transform: none;
  }

  .about-band.team-showcase .team-context {
    transform: none;
  }

}

/* Use the active team member's photo as a full-width, softly blurred backdrop. */
.about-band.team-showcase {
  background: var(--green);
}

.about-band.team-showcase::before {
  position: absolute;
  inset: -18px;
  z-index: -2;
  background: var(--team-image) center 42% / cover no-repeat;
  content: '';
  filter: blur(8px);
  opacity: .78;
  transform: scale(1.04);
}

.about-band.team-showcase::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 31, 15, .84), rgba(7, 31, 15, .46) 52%, rgba(7, 31, 15, .76)),
      linear-gradient(0deg, rgba(7, 31, 15, .9), rgba(7, 31, 15, .18) 62%);
}

.team-showcase-portrait {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.team-showcase-portrait img {
  width: min(43vw, 560px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: .78;
}

/* Keep the contact band useful without making it a second full section. */
.contact-section {
  padding-block: clamp(.8rem, 1.5vw, 1.25rem);
}

.contact-card {
  gap: .75rem;
  border-top-width: 2px;
  padding-top: .75rem;
}

.contact-card > div {
  padding-right: .75rem;
}

.contact-card h2 {
  margin-bottom: .25rem;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.contact-card p {
  font-size: .88rem;
  line-height: 1.3;
}

.link-panel {
  gap: .45rem;
}

.bpma-link {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: .5rem;
}

.bpma-link img {
  width: 58px;
}

@media (max-width: 820px) {
  .contact-section {
    padding-block: .75rem;
  }

  .contact-card {
    padding-top: .6rem;
  }

  .contact-card > div {
    padding-bottom: .55rem;
  }
}

/* The timeline spans the showcase; the upcoming profile is an on-demand peek. */
.about-band.team-showcase {
  background-position: center 8%;
}

.team-progress {
  left: max(1rem, calc((100% - 1180px) / 2));
  right: max(1rem, calc((100% - 1180px) / 2));
  bottom: .7rem;
  width: auto;
  z-index: 3;
  gap: .65rem;
}

.team-next-preview {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: auto;
  min-width: 0;
  max-width: min(270px, 42vw);
  padding: .35rem .55rem .35rem .45rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.team-progress:hover ~ .team-next-preview,
.team-next-preview:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.team-next-preview img {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-position: center 18%;
}

.team-next-label,
.team-next-preview strong,
.team-next-preview small {
  display: inline;
}

.team-next-label {
  flex: 0 0 auto;
  font-size: .62rem;
}

.team-next-preview > span:last-child {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  min-width: 0;
  white-space: nowrap;
}

.team-next-preview strong {
  font-size: .92rem;
}

.team-next-preview small {
  font-size: .62rem;
}

@media (max-width: 820px) {
  .team-progress {
    left: .85rem;
    right: .85rem;
    width: auto;
  }

  .team-next-preview {
    right: .85rem;
    bottom: 1.3rem;
    max-width: calc(100% - 1.7rem);
  }
}

/* Keep the full portrait legible on wide screens instead of enlarging it to fill the banner. */
.about-band.team-showcase {
  min-height: clamp(560px, 48vw, 660px);
  background-position: 28% center;
  background-size: auto 100%;
  background-color: var(--green);
}

.team-context {
  right: max(1rem, calc((100% - 1180px) / 2));
  width: min(410px, 34vw);
  border: 0;
}

.workshop-motion {
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) max(1rem, calc((100% - 1120px) / 2));
}

.workshop-motion-content {
  width: 100%;
  padding: 0;
}

.workshop-enquiry-card {
  width: 100%;
  padding: 1.1rem 1.2rem;
}

.workshop-enquiry-card .eyebrow {
  margin: 0 0 .35rem;
  color: var(--green-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workshop-enquiry-card h3 {
  margin: 0 0 .55rem;
  color: var(--green);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.05;
}

.workshop-enquiry-form {
  gap: .35rem;
}

.workshop-enquiry-form label {
  margin-top: .2rem;
  font-size: .82rem;
}

.workshop-enquiry-form input:not([type="hidden"]),
.workshop-enquiry-form textarea {
  padding: .55rem .65rem;
  font-size: .9rem;
}

.workshop-enquiry-form textarea {
  min-height: 68px;
}

.workshop-enquiry-form .button {
  min-height: 42px;
  margin-top: .35rem;
  padding: .6rem .9rem;
}

.workshop-enquiry-form .form-status {
  font-size: .78rem;
}

@media (max-width: 820px) {
  .about-band.team-showcase {
    min-height: 760px;
    background-position: 18% center;
    background-size: auto 100%;
  }

  .team-showcase-portrait img {
    width: min(100vw, 430px);
    opacity: .68;
  }

  .team-context {
    right: .85rem;
    width: auto;
  }

  .workshop-motion {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem .85rem;
  }

  .workshop-motion-content {
    padding: 0;
  }
}

/* Keep the active portrait behind the copy on desktop and below it on mobile. */
.team-showcase-portrait {
  justify-content: flex-start;
  padding-inline-start: max(1rem, calc((100% - 1180px) / 2));
}

.team-showcase-portrait img {
  object-position: left bottom;
}

/* The preview is a child of the line so it remains reachable after hover. */
.team-progress {
  position: absolute;
  display: flex;
  align-items: center;
}

.team-progress-toggle {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(7, 31, 15, .64);
  color: #fff;
  font: inherit;
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.team-progress-toggle:hover,
.team-progress-toggle:focus-visible {
  background: rgba(7, 31, 15, .92);
}

.team-progress-toggle:disabled {
  cursor: default;
  opacity: .65;
}

.team-progress .team-next-preview {
  right: 0;
  bottom: 1.15rem;
  pointer-events: none;
}

.team-progress:hover .team-next-preview,
.team-progress .team-next-preview:hover,
.team-progress .team-next-preview:focus-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.team-context-toggle {
  display: none;
}

.contact-address {
  display: inline-block;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.3;
  text-decoration: none;
}

.contact-address:hover,
.contact-address:focus-visible {
  color: var(--green) !important;
  text-decoration: underline;
}

.workshop-enquiry-toggle {
  display: none;
}

@media (max-width: 820px) {
  /* Make both primary hero cards visible together on a phone. */
  .hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  .hero-copy,
  .quick-panel {
    min-width: 0;
    padding: .75rem;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 5.3vw, 2.15rem);
    line-height: 1.02;
  }

  .hero .hero-copy p {
    font-size: .74rem;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    gap: .35rem;
  }

  .hero-actions .button {
    min-height: 34px;
    padding: .45rem .35rem;
    font-size: .72rem;
  }

  .quick-panel h2 {
    font-size: .95rem;
  }

  .quick-panel dl {
    gap: .35rem;
  }

  .quick-panel dl > div {
    padding-bottom: .35rem;
  }

  .quick-panel dt {
    font-size: .58rem;
  }

  .quick-panel dd {
    font-size: .68rem;
  }

  .workshop-map {
    height: 145px;
  }

  .quick-panel > a {
    min-height: 34px;
    margin-top: .5rem;
    padding: .4rem .35rem;
    font-size: .7rem;
  }

  .team-showcase-current {
    top: 2.25rem;
  }

  .team-showcase-portrait {
    inset: 13rem 0 0;
    padding-inline: 0;
    justify-content: center;
  }

  .team-showcase-portrait img {
    object-position: center bottom;
  }

  .team-context {
    padding-right: 2.6rem;
  }

  .team-context-toggle {
    position: absolute;
    top: .45rem;
    right: .45rem;
    width: 28px;
    height: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 999px;
    background: rgba(7, 31, 15, .55);
    color: #fff;
    font: inherit;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
  }

  .team-context-toggle:hover,
  .team-context-toggle:focus-visible {
    background: rgba(7, 31, 15, .9);
  }

  .team-context.is-collapsed {
    left: auto;
    right: .85rem;
    width: 28px;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: hidden;
  }

  .team-context.is-collapsed > :not(.team-context-toggle) {
    visibility: hidden;
  }

  .team-context.is-collapsed .team-context-toggle {
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    min-height: 28px;
    border: 0;
    background: var(--green);
  }

  .workshop-enquiry-toggle {
    width: 100%;
    display: block;
    min-height: 38px;
    margin: .25rem 0 .1rem;
    padding: .55rem .7rem;
    border: 2px solid var(--green);
    border-radius: 9px;
    background: #fff;
    color: var(--green);
    font: inherit;
    font-size: .82rem;
    font-weight: 850;
    cursor: pointer;
  }

  .workshop-enquiry-toggle:hover,
  .workshop-enquiry-toggle:focus-visible {
    background: var(--soft);
  }

  .workshop-enquiry-form {
    max-height: 0;
    margin-block: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .workshop-enquiry-card.is-expanded .workshop-enquiry-form {
    max-height: 34rem;
    margin-block: initial;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .contact-card > div,
  .contact-card > div:last-child {
    min-width: 0;
    padding: 0 .45rem 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .contact-card > div:last-child {
    border-right: 0;
  }

  .contact-card h2 {
    font-size: .92rem;
  }

  .contact-card p,
  .contact-card a:not(.button) {
    font-size: .68rem;
    overflow-wrap: anywhere;
  }

  .contact-card p {
    margin-block: .2rem;
  }

  .link-panel {
    gap: .35rem;
  }

  .bpma-link {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .bpma-link img {
    width: 42px;
  }
}

/* Use the partner and social marks as the only industry-link labels. */
.industry-logo-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
}

.industry-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 54px;
  border-radius: 8px;
  transition: opacity .2s ease, transform .2s ease;
}

.industry-logo-link:hover,
.industry-logo-link:focus-visible {
  opacity: .78;
  transform: translateY(-2px);
}

.industry-logo-link img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.facebook-logo-link img {
  width: 42px;
  height: 42px;
}

@media (max-width: 820px) {
  .industry-logo-links {
    gap: .3rem;
  }

  .industry-logo-link {
    width: 42px;
    height: 38px;
  }

  .facebook-logo-link img {
    width: 30px;
    height: 30px;
  }
}

/* Give the hero copy room to stand over the workshop image. */
.hero .hero-inner {
  display: block;
}

.hero .hero-inner > .hero-copy {
  max-width: 760px;
  border: 0;
  border-top: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .38);
}

.hero .hero-inner > .hero-copy h1,
.hero .hero-inner > .hero-copy p {
  color: #fff;
}

.hero .hero-inner > .hero-copy h1::after {
  box-shadow: 0 2px 12px rgba(0, 0, 0, .28);
}

/* The workshop location now has its own landscape section between hero and motion. */
.workshop-details-section {
  padding-block: clamp(1.25rem, 3vw, 2.5rem);
}

.workshop-details-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(.85rem, 2vw, 1.25rem);
}

.workshop-details-panel .workshop-map-wrap {
  margin: 0;
}

.workshop-details-panel .workshop-map {
  height: 235px;
}

.workshop-details-copy {
  min-width: 0;
}

.workshop-details-copy h2 {
  margin: 0 0 .75rem;
}

.workshop-details-copy dl {
  gap: .55rem;
}

.workshop-details-copy dl > div {
  padding-bottom: .55rem;
}

.workshop-details-copy > a {
  margin-top: .8rem;
}

@media (max-width: 820px) {
  .hero .hero-inner > .hero-copy {
    max-width: none;
  }

  .workshop-details-panel {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .workshop-details-panel .workshop-map {
    height: 185px;
  }
}

/* Keep the merged services and workshop cards aligned across each grid row. */
.content-carousel .service-grid {
  align-items: stretch;
}

.content-carousel .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-carousel .service-card p {
  flex: 1;
}
