.bts__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
/* ═══════════════════════════════════════════════
   PS WEBSITE — GLOBAL STYLES
   ════════════════════════════════════════════ */

/* ── Scroll Reveal Animations ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for grids / lists */
.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.22s; }
.reveal--delay-3 { transition-delay: 0.34s; }
.reveal--delay-4 { transition-delay: 0.46s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:         #417b3b;
  --green-light:   #5a9e52;
  --green-dark:    #2d5a2b;
  --green-bg:      #e8f1e6;
  --gold:          #f2bb3a;
  --gold-light:    #f5cc6a;
  --amber:         #f2bb3a;
  --amber-dark:    #d9a02e;
  --off-white:     #fdf6e6;
  --white:         #FFFFFF;
  --black:         #111111;
  --text-dark:     #1A1A1A;
  --text-mid:      #4A4A4A;
  --text-light:    #7A7A7A;
  --divider:       #417b3b;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  --radius:        4px;
  --transition:    0.25s ease;
  --container:     1200px;
}

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
  -webkit-user-scalable: no;
  user-scalable: no;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  touch-action: manipulation;
  -webkit-user-scalable: no;
  user-scalable: no;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}

button,
input,
textarea,
select {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

ul {
  list-style: none;
}

/* ── Container ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ── Divider Line ────────────────────────────── */
.divider-line {
  height: 3px;
  background-color: var(--green);
  width: 100%;
}

/* ── Placeholders ────────────────────────────── */
.img-placeholder {
  background-color: #c8e6c9;
  border: 2px dashed var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  min-height: 320px;
  width: 100%;
  border-radius: var(--radius);
  text-align: center;
  padding: 20px;
}

.img-placeholder--tall {
  min-height: 480px;
}

.video-placeholder {
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  width: 100%;
  border-radius: var(--radius);
}

.video-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.video-placeholder__icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}

.map-placeholder {
  background-color: #b2dfdb;
  border: 2px dashed var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  width: 100%;
  border-radius: var(--radius);
  color: var(--green-dark);
  font-size: 0.85rem;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.btn--green {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--green:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--outline:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.discover-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green);
  margin-top: 16px;
  transition: color var(--transition), letter-spacing var(--transition);
}

.discover-link:hover {
  color: var(--green-dark);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   BRAND BAR (top green header)
════════════════════════════════════════════ */
.brand-bar {
  background-color: var(--green);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.brand-bar__inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 40px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo--footer {
  justify-content: flex-start;
}

.brand-logo__img {
  height: 120px;
  width: auto;
  object-fit: contain;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-logo__fallback {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.brand-logo__icon {
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.brand-logo__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  text-align: left;
}

.brand-logo__name small {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  background-color: #407B30;
  border: 5px solid #FFF9E6;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  width: 100%;
  padding: 0;
  margin: 0;
}

.navbar__list {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  position: relative;
  z-index: 1000;
}

.navbar__item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  border-right: 10px solid #FFF9E6;
  box-sizing: border-box;
  z-index: 1001;
}

.navbar__item:last-child {
  border-right: none;
}

.navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 12px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFF9E6;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  gap: 6px;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--green);
  background-color: #FFF9E6;
}

.navbar__link--dropdown {
  position: relative;
}

.navbar__arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
  display: inline-block;
}

.navbar__item--dropdown.open .navbar__arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFF9E6;
  border: 1px solid #407B30;
  border-top: 3px solid var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 2000;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  box-sizing: border-box;
}

.navbar__item--dropdown.open .navbar__dropdown {
  display: block;
}

.navbar__dropdown-link {
  display: block;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: background-color var(--transition), color var(--transition);
  white-space: normal;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.navbar__dropdown-link:hover {
  background-color: #407B30;
  color: #FFF9E6;
}

/* ══════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero {
  width: 100%;
  overflow: hidden;
}

.hero__media {
  width: 100%;
  line-height: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  display: block;
}

.hero__placeholder {
  width: 100%;
  height: 580px;
  background: linear-gradient(135deg, #2D6A4F 0%, #52B788 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-family: var(--font-sans);
}

/* ══════════════════════════════════════════════
   INTRO / MAIN HEADING
════════════════════════════════════════════ */
.intro {
  padding: 72px 0 48px;
  text-align: center;
}

.intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro__subheading {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   FEATURE ROW (Image left + Text right)
════════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
}

.feature-row__image {
  width: 100%;
}

.feature-row__content {
  padding-left: 20px;
}

.feature-row__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.feature-row__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════
   PILLARS / THREE WORDS
════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 56px 40px;
  gap: 0;
}

.pillars__item {
  padding: 24px;
  border-right: 2px solid var(--green);
}

.pillars__item:last-child {
  border-right: none;
}

.pillars__word {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

/* OUR TEAM */
.team-hero {
  position: relative;
  margin-bottom: 40px;
}

.team-hero__img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 460px;
}

.team-hero__caption {
  width: 100%;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
  padding: 12px 0;
  font-weight: 600;
}

.team-title {
  text-align: center;
  margin-bottom: 22px;
}

.team-title h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.team-title .separator {
  width: 80px;
  height: 2px;
  background-color: var(--black);
  margin: 0 auto;
}

.team-members {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 60px;
}

.team-folder {
  border: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.folder-summary {
  display: block;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  position: relative;
  background-size: cover;
  background-position: center;
}

.folder-summary span {
  z-index: 1;
  position: relative;
}

.folder-summary::after {
  content: '▾';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-weight: 700;
  z-index: 1;
  transition: transform 0.25s ease;
}

.team-folder[open] .folder-summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.folder-content {
  display: none;
  padding: 16px 24px 30px;
}

.team-folder[open] .folder-content {
  display: block;
}

.folder-color-1 { background-color: #97d77b; }
.folder-color-2 { background-color: #53aa64; }
.folder-color-3 { background-color: #3b7a37; }
.folder-color-4 { background-color: #fff2dd; }
.folder-color-5 { background-color: #ffdfa3; }
.folder-color-6 { background-color: #f7c65f; }
/* folder-1..6 classes are no longer used; using inline styles on <summary> now */

.member-row--green,
.member-row--darkgreen,
.member-row--forest,
.member-row--light,
.member-row--gold,
.member-row--mustard {
  background: transparent;
  color: #111;
}

.member-row {
  padding: 0;
  margin: 0;
}

.team-folder {
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  margin-top: -30px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.team-folder:first-of-type {
  margin-top: 0;
}

.folder-summary {
  display: block;
  width: 100%;
  padding: 47px 80px 32px 48px;
  min-height: 100px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  user-select: none;
  margin: 0;
  text-align: right;
}

.folder-summary:hover {
  filter: brightness(0.95);
}

/* debug: ensure the folder area is visible and allows the background image */
.folder-summary {
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: center !important;
  background-clip: border-box !important;
  background-origin: border-box !important;
  z-index: 1;
}

.folder-summary::after {
  content: '▾';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-weight: 700;
  z-index: 1;
  transition: transform 0.25s ease;
}

.team-folder[open] .folder-summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.folder-content {
  display: none;
  padding: 48px 40px;
  padding-bottom: 60px;
  background: #fff6e8;
  margin-top: -4px;
}

.team-folder[open] .folder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: start;
}

.team-member-info {
  flex: 0 0 200px;
  margin-bottom: 0;
  text-align: left;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  border-left: 4px solid rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 100px;
}

.team-member-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #222;
}

.team-member-info strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 4px;
  font-weight: 700;
  margin-top: 12px;
}

.team-member-info strong:first-of-type {
  margin-top: 0;
}

.team-artwork-grid {
  flex: 0 0 auto;
  width: auto;
  max-width: 40%;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 35px);
  grid-auto-flow: row;
  grid-auto-rows: auto;
  gap: 6px;
  align-content: start;
}

/* ═══════════════════════════════════════
   PER-FOLDER ARTWORK LAYOUTS
═══════════════════════════════════════ */

/* ── Folder 1: big artwork left, 3 small stacked right ── */
.team-artwork-grid--folder-1 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-left: auto;
  align-items: flex-start;
}

.f1-main { flex: 0 0 130px; width: 130px; }
.f1-stack { flex: 0 0 65px; width: 65px; display: flex; flex-direction: column; gap: 6px; }

.f1-main .artwork-card img,
.f1-stack .artwork-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Folder 2: horizontal triptych — 3 equal frames side by side ── */
.team-artwork-grid--folder-2 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-left: auto;
  align-items: flex-start;
}

.team-artwork-grid--folder-2 .artwork-card {
  flex: 0 0 80px;
  width: 80px;
}

/* ── Folder 4: asymmetric 2-col — wider left, narrower right ── */
.team-artwork-grid--folder-4 {
  display: grid;
  grid-template-columns: 100px 60px;
  gap: 6px;
  margin-left: auto;
  align-items: start;
}

/* ── Folder 5: dense 4-column mosaic (8 artworks) ── */
.team-artwork-grid--folder-5 {
  display: grid;
  grid-template-columns: repeat(4, 50px);
  gap: 5px;
  margin-left: auto;
  align-items: start;
}

/* ── Folder 6: video hero full-width, 3 images below ── */
.team-artwork-grid--folder-6 {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 6px;
  margin-left: auto;
  align-items: start;
}

.team-artwork-grid--folder-6 .artwork-card:nth-child(1) {
  grid-column: 1 / -1;
}

.team-artwork-grid--folder-6 .artwork-card:nth-child(1) video {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Folder 3: two stacked carousel frames ── */
.team-artwork-grid--folder-3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: auto;
  align-items: flex-start;
}

.artwork-carousel {
  position: relative;
  width: 130px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.artwork-carousel .carousel__track {
  display: flex;
  gap: 0;
  will-change: transform;
}

.artwork-carousel .carousel__slide {
  min-width: 130px;
  width: 130px;
  flex-shrink: 0;
}

.artwork-carousel .carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.artwork-carousel .carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s;
}

.artwork-carousel:hover .carousel__btn {
  opacity: 1;
}

.artwork-carousel .carousel__btn--prev { left: 4px; }
.artwork-carousel .carousel__btn--next { right: 4px; }

.artwork-carousel .carousel__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px 0;
  background: rgba(0,0,0,0.05);
}

.artwork-carousel .carousel__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.artwork-carousel .carousel__dot.active {
  background: rgba(0,0,0,0.7);
}

.artwork-card {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.artwork-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.15);
}

.team-artwork-grid img,
.team-artwork-grid video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .team-folder[open] .folder-content {
    gap: 36px;
    padding: 40px 30px 50px;
  }

  .team-member-info {
    flex: 0 0 180px;
  }

  .team-artwork-grid {
    flex: 0 0 auto;
    max-width: 38%;
    grid-template-columns: repeat(2, 60px);
  }
}

@media (max-width: 768px) {
  .team-folder[open] .folder-content {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .team-member-info {
    flex: none;
    width: 100%;
    position: static;
    top: auto;
    padding: 24px;
    border-left: none;
    border-top: 4px solid rgba(0, 0, 0, 0.15);
  }

  .team-artwork-grid {
    flex: none;
    max-width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .team-folder[open] .folder-content {
    padding: 24px 16px;
    gap: 16px;
  }

  .folder-summary {
    padding: 24px 16px !important;
    font-size: 1.3rem;
    min-height: auto;
  }

  .team-member-info {
    padding: 16px;
    font-size: 0.85rem;
  }

  .team-member-info p {
    font-size: 0.85rem;
  }

  .team-artwork-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 40px 72px;
}

.story-grid__item {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid #e5e5e5;
}

.story-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-grid__text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 10px;
  color: var(--green-dark);
}

.story-grid__text p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   STORY SECTIONS (Our Story Page)
════════════════════════════════════════════ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 380px;
  width: 100%;
}

.story-section__image {
  width: 100%;
  overflow: hidden;
}

.story-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-section__content {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--off-white);
}

.story-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.story-section__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Reverse layout - image on right */
.story-section--reverse {
  direction: rtl;
}

.story-section--reverse .story-section__image,
.story-section--reverse .story-section__content {
  direction: ltr;
}

/* Yellow background for certain sections */
.story-section--yellow .story-section__content {
  background-color: var(--gold-light);
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-section__content {
    padding: 40px;
  }
}

@media (max-width: 760px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-section__content {
    padding: 32px 24px;
  }

  .story-section__title {
    font-size: 1.6rem;
  }

  .story-section__text {
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════════════
   SPLIT CARD (Exhibition / Documentary)
════════════════════════════════════════════ */
.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
  background-color: #F0BF58;
  border-top: 1px solid #ececec;
}


.split-card--reverse {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.55) 60%,
      rgba(253,246,230,1) 100%
    ),
    url('../assets/images/documentary_bg.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-card--reverse .split-card__content {
  order: 1;
}

.split-card--reverse .split-card__label,
.split-card--reverse .split-card__title,
.split-card--reverse .split-card__text,
.split-card--reverse .discover-link {
  color: #ffffff;
}

.split-card--reverse .split-card__visual {
  order: 0;
}

.split-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.split-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.split-card__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════
   SECTION HEADING BLOCK
════════════════════════════════════════════ */
.section-heading {
  padding: 72px 40px 40px;
  text-align: center;
}

.section-heading__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-heading__sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   ALTERNATING ROWS
════════════════════════════════════════════ */
.alt-rows {
  padding: 0 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.alt-row--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  grid-auto-flow: dense;
}

.alt-row--reverse > .alt-row__image {
  grid-column: 1;
}
.alt-row--reverse > .alt-row__content {
  grid-column: 2;
}



.alt-row__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.alt-row__text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════
   GALLERY CARDS (Picture + Caption + Hover)
════════════════════════════════════════════ */
.card-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 40px 80px;
}

.gallery-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-card__img {
  border-radius: var(--radius);
  transition: transform 0.4s ease;
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.03);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__hover-text {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 0.02em;
}

.gallery-card__caption {
  padding: 14px 8px 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
}

/* ══════════════════════════════════════════════
   LOCATION — Text + Map
════════════════════════════════════════════ */
.location {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  padding: 80px 40px;
}

.location__content {
  display: flex;
  flex-direction: column;
}

.location__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.location__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.location__address {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.location__map {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════════
   FULL-WIDTH IMAGE STRIP
════════════════════════════════════════════ */
.full-image-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.full-image-strip img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background-color: var(--green);
  color: var(--white);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}

/* Brand side */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-logo__fallback--footer {
  color: var(--gold) !important;
}

.footer__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  max-width: 320px;
}

/* Nav columns */
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  margin-bottom: 14px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Social links */
.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color var(--transition), border-color var(--transition);
}

.footer__social-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Social list in footer */
.footer__social-list .footer__social-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-icon {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Footer bottom strip */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 18px 40px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer__policy-link {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.footer__policy-link:hover {
  color: var(--white);
}

/* ══════════════════════════════════════════════
   STORE PAGE
════════════════════════════════════════════ */
.store-hero {
  padding: 96px 0 52px;
  text-align: center;
  border-top: 4px solid var(--green);
}

.store-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.store-hero h1 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 14px;
}

.store-hero__sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-mid);
}

.store-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 60px 0;
}

.store-preview__item {
  background: var(--white);
  box-shadow: 0 10px 18px rgba(34, 52, 35, 0.12);
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  display: grid;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
}

.store-preview-item.hover {
  background-color: var(--green);
  color: var(--white);
  border: 2px solid var(--white);
}

.store-message {
  background-color: var(--green-bg);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 34px 0;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--green-dark);
  margin: 0;
  padding: 0 50px;
  display: inline-block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.featured-merch {
  padding-bottom: 80px;
}

.featured-merch h2 {
  font-family: var(--font-serif);
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.featured-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 1020px) {
  .store-preview,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .store-preview,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .navbar__list {
    flex-wrap: wrap;
  }

  .navbar__item {
    flex: 100%;
  }
}

/* ══════════════════════════════════════════════
   OUR TEAM
════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 32px 40px 48px;
}

.team-member,
.team-member-collapse {
  border: 1px solid #d7e7d7;
  background-color: #ffffff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(15, 60, 30, 0.12);
}

.team-member h2,
.team-member-collapse summary {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
}

.team-member p,
.team-member-collapse p {
  color: var(--text-mid);
  margin: 10px 0 16px;
  line-height: 1.6;
}

.team-artwork {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.artwork-tile {
  min-height: 120px;
  background-color: #f7f5eb;
  border: 1px dashed var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 600;
  padding: 12px;
  text-align: center;
}

.team-member-collapse summary::-webkit-details-marker,
.team-member-collapse summary::-moz-list-marker {
  display: none;
}

.team-member-collapse summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.team-member-collapse details[open] summary {
  color: var(--green);
}

@media (max-width: 1024px) {
  .team-artwork {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .team-artwork {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   EDUCATION PAGE
════════════════════════════════════════════ */

.edu-hero {
  padding: 0 40px 0;
}

.edu-hero__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.edu-hero__placeholder {
  width: 100%;
  min-height: 420px;
  background-color: #c8d8c8;
  border: 2px dashed var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.edu-desc {
  padding: 40px 40px 32px;
  text-align: center;
}

.edu-desc__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* What We Offer */
.edu-offer {
  padding: 56px 40px 72px;
}

.edu-offer__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.edu-offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.edu-card {
  background-color: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.edu-card:hover {
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.16);
  transform: translateY(-3px);
}

.edu-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--green);
}

.edu-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.edu-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Feature row — image left, text right */
.edu-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
  background-color: var(--white);
  border-top: 1px solid #ececec;
}

.edu-feature__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.edu-feature__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Amber CTA strip */
.edu-cta {
  background-color: var(--amber);
  padding: 72px 40px;
  text-align: center;
}

.edu-cta__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.edu-cta__sub {
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.75;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .edu-feature {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 24px;
  }
}

@media (max-width: 700px) {
  .edu-offer__grid {
    grid-template-columns: 1fr;
  }

  .edu-hero,
  .edu-desc,
  .edu-offer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .edu-cta {
    padding: 52px 24px;
  }
}

/* ══════════════════════════════════════════════
   EDUCATION PAGE
════════════════════════════════════════════ */

/* Hero */
.edu-hero {
  width: 100%;
}

.edu-hero__img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.edu-hero__placeholder {
  width: 100%;
  min-height: 480px;
  background-color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-hero__label {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* Visual Art heading */
.edu-visual {
  padding: 64px 40px 32px;
  text-align: center;
}

.edu-visual__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.edu-visual__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   CAROUSEL
════════════════════════════════════════════ */
.carousel-section {
  padding: 0 0 56px;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  user-select: none;
}

/* Hide overflow so only ~3 slides show */
.carousel__viewport {
  overflow: hidden;
  padding: 0 40px;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__slide {
  flex: 0 0 calc((100% - 48px) / 3); /* show ~3 slides */
  min-width: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--green);
  box-sizing: border-box;
}

.carousel__placeholder {
  min-height: 260px;
  border-radius: var(--radius);
}

.carousel__slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* Caption overlay */
.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 28px 16px 14px;
  color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}

.carousel__caption strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.carousel__caption p {
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

/* Prev / Next arrow buttons */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--white);
  border: 2px solid var(--green);
  color: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), color var(--transition);
  margin-top: -20px; /* offset for caption */
}

.carousel__btn:hover {
  background-color: var(--green);
  color: var(--white);
}

.carousel__btn--prev { left: 8px; }
.carousel__btn--next { right: 8px; }

/* Dot indicators */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  padding: 0;
}

.carousel__dot.active {
  background-color: var(--green);
  transform: scale(1.25);
}

/* ══════════════════════════════════════════════
   LEARNING OUTCOME
════════════════════════════════════════════ */
.edu-outcome {
  padding: 72px 40px 96px;
  text-align: center;
}

.edu-outcome__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.edu-outcome__sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 48px;
}

.edu-outcome__box {
  border: 2px solid var(--green);
  border-radius: var(--radius);
  text-align: left;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.edu-outcome__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 36px;
  border-bottom: 1px solid #d8e8d8;
}

.edu-outcome__row--last {
  border-bottom: none;
}

.edu-outcome__term {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.edu-outcome__def {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .carousel__slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .carousel__slide {
    flex: 0 0 85%;
  }

  .carousel__viewport {
    padding: 0 24px;
  }

  .edu-visual,
  .edu-outcome {
    padding-left: 24px;
    padding-right: 24px;
  }

  .edu-outcome__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 20px;
  }
}

/* ══════════════════════════════════════════════
   EXHIBITION PAGE
════════════════════════════════════════════ */

/* Hero image */
.exh-hero {
  padding: 0 40px 0;
}

.exh-hero__img {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exh-hero__img img {
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.exh-hero__placeholder {
  width: 100%;
  min-height: 420px;
  background-color: #c8d8c8;
  border: 2px dashed var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* Description */
.exh-desc {
  padding: 40px 40px 32px;
  text-align: center;
}

.exh-desc__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* Thin horizontal rule */
.exh-rule {
  height: 1px;
  background-color: #ccc;
  margin: 0 40px 0;
}

/* Upcoming Events heading */
.upcoming {
  padding: 56px 40px 80px;
}

.upcoming__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

/* Event cards grid */
.upcoming__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Individual event card */
.event-card {
  border: 2px solid var(--green);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--off-white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.event-card:hover {
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.18);
  transform: translateY(-3px);
}

.event-card__image {
  width: 100%;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.04);
}

.event-card__img-placeholder {
  min-height: 280px;
  border: none;
  border-radius: 0;
  background-color: #d0d8d0;
}

/* Card text body */
.event-card__body {
  padding: 24px 24px 20px;
  flex: 1;
}

.event-card__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Card meta — amber footer strip */
.event-card__meta {
  background-color: var(--amber);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.event-card__meta-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .upcoming__grid {
    grid-template-columns: 1fr;
  }

  .exh-hero,
  .exh-desc,
  .exh-rule,
  .upcoming {
    padding-left: 24px;
    padding-right: 24px;
  }

  .exh-rule {
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* ══════════════════════════════════════════════
   PAGE HEADER  ("PROJECT ——— DOCUMENTARY")
════════════════════════════════════════════ */
.page-header {
  padding: 52px 0 36px;
  background-color: var(--off-white);
}

.page-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.page-header__pre {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  white-space: nowrap;
}

.page-header__line {
  flex: 1;
  height: 3px;
  background-color: var(--text-dark);
}

.page-header__title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   DOCUMENTARY VIDEO SECTION
════════════════════════════════════════════ */
.doc-video {
  padding: 0 40px 40px;
}

.doc-video__embed {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.doc-video__placeholder {
  background-color: #d6d0c8;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius);
  position: relative;
}

.doc-video__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), transform var(--transition);
}

.doc-video__play:hover {
  background-color: var(--white);
  transform: scale(1.1);
}

.doc-video__play-icon {
  font-size: 1.4rem;
  margin-left: 4px;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
   DOC INFO — Watch Here / Title / Desc
════════════════════════════════════════════ */
.doc-info {
  padding: 32px 40px 64px;
  text-align: center;
}

.doc-info__watch-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: underline;
  color: var(--text-dark);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.doc-info__watch-link:hover {
  color: var(--green);
}

.doc-info__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.doc-info__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   BEHIND THE SCENE — amber section
════════════════════════════════════════════ */
.bts {
  background-color: var(--amber);
  padding: 72px 0 80px;
}

.bts__heading {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}

.bts__sub {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
  opacity: 0.75;
}

.bts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bts__img-placeholder {
  background-color: rgba(255,255,255,0.35);
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.4);
  min-height: 260px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-row,
  .split-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 24px;
  }

  .feature-row__content {
    padding-left: 0;
  }

  .alt-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 24px;
  }

  .alt-row--reverse {
    direction: ltr;
  }

  .alt-row--reverse > .alt-row__content,
  .alt-row--reverse > .alt-row__image {
    grid-column: auto;
  }

  .split-card--reverse .split-card__content,
  .split-card--reverse .split-card__visual {
    order: unset;
  }

  .split-card--reverse {
    background-image: none;
    background-color: #F0BF58;
  }

  .split-card--reverse .split-card__label,
  .split-card--reverse .split-card__title,
  .split-card--reverse .split-card__text,
  .split-card--reverse .discover-link {
    color: var(--text-dark);
  }

  .card-gallery {
    grid-template-columns: 1fr;
    padding: 0 24px 52px;
  }

  .pillars {
    padding: 40px 24px;
  }

  .story-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-section__content {
    padding: 40px;
  }

  .bts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alt-row__text {
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — LARGE TABLET (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro {
    padding: 52px 20px 40px;
  }

  .intro__heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }

  .intro__subheading {
    font-size: 0.95rem;
  }

  .feature-row {
    padding: 48px 20px;
    gap: 28px;
  }

  .feature-row__title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }

  .split-card {
    padding: 48px 20px;
    gap: 28px;
  }

  .split-card__title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  }

  .location {
    padding: 48px 20px;
    gap: 28px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .location__title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  }

  .location__address {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .location__map {
    min-height: 350px;
  }

  .map-placeholder {
    min-height: 350px;
  }

  .map-placeholder iframe {
    min-height: 350px;
  }

  .section-heading {
    padding: 48px 20px 32px;
  }

  .section-heading__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }

  .alt-rows {
    padding: 0 20px 56px;
    gap: 48px;
  }

  .alt-row {
    gap: 24px;
  }

  .alt-row__title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }

  .card-gallery {
    padding: 0 20px 56px;
    gap: 24px;
  }

  .gallery-card__img {
    height: 320px;
  }

  .page-header__inner {
    padding: 40px 20px;
  }

  .bts {
    padding: 48px 0 56px;
  }

  .bts__heading {
    padding: 0 20px;
    margin-bottom: 16px;
  }

  .bts__sub {
    padding: 0 20px;
  }

  .bts__grid {
    padding: 0 20px;
    gap: 20px;
  }

  .brand-bar {
    padding: 16px 20px;
  }

  .brand-logo__img {
    height: 90px;
  }

  .footer__quote {
    max-width: 100%;
  }

  .navbar__link {
    padding: 14px 10px;
    font-size: 0.85rem;
  }

  .navbar__item {
    flex: 1 1 50%;
  }

  .story-section__content {
    padding: 40px 24px;
  }

  .story-section__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }
}

/* ══════════════════════════════════════════════
   ABOUT US PAGE
════════════════════════════════════════════ */

/* Hero Section */
.about-hero {
  padding: 0 40px;
  margin-bottom: 64px;
}

.about-hero__img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: var(--off-white);
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
  text-align: center;
}

/* Intro Section */
.about-intro {
  text-align: center;
  padding: 64px 40px;
  margin-bottom: 48px;
}

.about-intro__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-intro .separator {
  margin: 32px auto;
}

.about-intro__main {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.75;
  max-width: 700px;
  margin: 32px auto;
}

.about-intro__tagline {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-top: 24px;
  font-weight: 500;
}

/* Our Story Section */
.about-story {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.about-story__content {
  flex: 1;
}

.about-story__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-story__desc {
  font-size: 1rem;
  color: var(--text-mid);
}

.about-story__arrow {
  font-size: 2rem;
  color: var(--green);
  text-decoration: none;
  transition: transform var(--transition);
  cursor: pointer;
  margin-left: 32px;
  display: inline-block;
}

.about-story__arrow:hover {
  transform: translateX(8px);
}

/* Our Team Section */
.about-team {
  background-color: var(--gold-light);
  padding: 64px 40px;
  margin-bottom: 0;
}

.about-team__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-team__content {
  flex: 1;
}

.about-team__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-team__desc {
  font-size: 1rem;
  color: var(--text-mid);
}

.about-team__arrow {
  font-size: 2rem;
  color: var(--green);
  text-decoration: none;
  transition: transform var(--transition);
  cursor: pointer;
  margin-left: 32px;
  display: inline-block;
}

.about-team__arrow:hover {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-story,
  .about-team__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-story__arrow,
  .about-team__arrow {
    margin-left: 0;
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .about-hero__title {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .about-intro {
    padding: 40px 24px;
    margin-bottom: 32px;
  }

  .about-intro__text {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .about-intro__main {
    font-size: 1rem;
    margin: 24px auto;
  }

  .about-story {
    padding: 40px 24px;
    margin-bottom: 24px;
  }

  .about-story__title,
  .about-team__title {
    font-size: 1.8rem;
  }

  .about-team {
    padding: 40px 24px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600px)
════════════════════════════════════════════ */
@media (max-width: 600px) {

  .navbar__list {
    flex-wrap: wrap;
  }

  .navbar__item {
    flex: 1 1 50%;
  }

  .navbar {
    border-width: 3px;
    padding: 0;
  }

  .navbar {
    border-width: 3px;
    padding: 0;
    width: 100%;
  }

  .navbar__list {
    width: 100%;
    padding: 0;
  }

  .navbar__item {
    flex: 1;
    border-right-width: 6px;
    box-sizing: border-box;
  }

  .navbar__link {
    padding: 12px 4px;
    font-size: 0.8rem;
    min-height: 48px;
  }

  .brand-bar {
    padding: 16px 0;
    width: 100%;
  }

  .brand-logo__img {
    height: 80px;
  }

  .brand-logo__name {
    font-size: 1rem;
  }

  .brand-logo__name small {
    font-size: 0.55rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 24px;
  }

  .pillars__item {
    border-right: none;
    border-bottom: 2px solid var(--green);
    padding: 16px;
  }

  .pillars__item:last-child {
    border-bottom: none;
  }

  .pillars__word {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }

  .footer {
    padding-top: 40px;
  }

  .footer__inner {
    padding-bottom: 32px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__nav-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__social {
    flex-direction: column;
    gap: 12px;
  }

  .footer__bottom {
    padding: 12px 24px;
    font-size: 0.7rem;
  }

  .section-heading,
  .alt-rows {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-heading {
    padding: 48px 24px 32px;
  }

  .section-heading__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .hero__placeholder {
    height: 300px;
    font-size: 0.8rem;
  }

  .intro {
    padding: 48px 24px 32px;
  }

  .intro__heading {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .intro__subheading {
    font-size: 0.95rem;
  }

  .location {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px;
  }

  .feature-row {
    padding: 48px 24px;
    gap: 24px;
  }

  .feature-row__title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }

  .feature-row__content {
    padding-left: 0;
  }

  .split-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px;
  }

  .split-card__title {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
  }

  .alt-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .alt-row__title {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  }

  .card-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 24px 48px;
  }

  .gallery-card__img {
    height: 280px;
  }

  .full-image-strip img {
    max-height: 300px;
  }

  .page-header__inner {
    gap: 12px;
    padding: 32px 24px;
    flex-wrap: wrap;
  }

  .page-header__pre,
  .page-header__title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }

  .page-header__line {
    flex: 1;
    min-width: 100%;
    order: 3;
    margin-top: 12px;
  }

  /* Story grid responsive */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 24px 48px;
  }

  /* Team responsive */
  .team-hero__img {
    max-height: 300px;
  }

  .folder-summary {
    padding: 32px 20px;
    font-size: 1.4rem;
  }

  .team-artwork-grid {
    grid-template-columns: 1fr;
  }

  .bts__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 24px;
  }

  .bts {
    padding: 48px 0 56px;
  }

  .bts__heading {
    padding: 0 24px;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro {
    padding: 40px 16px 28px;
  }

  .intro__heading {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  }

  .intro__subheading {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .feature-row {
    padding: 40px 16px;
    gap: 20px;
  }

  .feature-row__title {
    font-size: 1.2rem;
  }

  .feature-row__text {
    font-size: 0.9rem;
  }

  .split-card {
    padding: 40px 16px;
    gap: 20px;
  }

  .split-card__title {
    font-size: 1.2rem;
  }

  .split-card__text {
    font-size: 0.9rem;
  }

  .location {
    padding: 40px 16px;
    gap: 20px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .location__title {
    font-size: 1.2rem;
  }

  .location__text,
  .location__address {
    font-size: 0.88rem;
  }

  .location__map {
    min-height: 280px;
  }

  .map-placeholder {
    min-height: 280px;
  }

  .map-placeholder iframe {
    min-height: 280px;
  }
  }

  .section-heading {
    padding: 40px 16px 28px;
  }

  .section-heading__title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  }

  .section-heading__sub {
    font-size: 0.9rem;
  }

  .alt-rows {
    padding: 0 16px 40px;
    gap: 32px;
  }

  .alt-row {
    gap: 16px;
  }

  .alt-row__title {
    font-size: 1.1rem;
  }

  .alt-row__text {
    font-size: 0.88rem;
  }

  .card-gallery {
    padding: 0 16px 40px;
    gap: 16px;
  }

  .gallery-card__img {
    height: 240px;
  }

  .gallery-card__hover-text {
    font-size: 1rem;
  }

  .page-header__inner {
    padding: 28px 16px;
    gap: 8px;
  }

  .page-header__pre,
  .page-header__title {
    font-size: 1.2rem;
  }

  .bts {
    padding: 40px 0 48px;
  }

  .bts__heading {
    padding: 0 16px;
    font-size: 1.3rem;
  }

  .bts__sub {
    padding: 0 16px;
    font-size: 0.85rem;
  }

  .bts__grid {
    padding: 0 16px;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .brand-bar {
    padding: 12px 0;
    width: 100%;
  }

  .brand-logo__img {
    height: 70px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand-logo__name {
    font-size: 0.85rem;
  }

  .brand-logo__name small {
    font-size: 0.5rem;
  }

  .brand-logo__icon {
    font-size: 1.8rem;
  }

  .navbar {
    border-width: 2px;
    padding: 0;
    width: 100%;
  }

  .navbar__list {
    width: 100%;
    padding: 0;
  }

  .navbar__item {
    flex: 1;
    border-right-width: 2px;
    box-sizing: border-box;
  }

  .navbar__link {
    padding: 10px 2px;
    font-size: 0.65rem;
    gap: 1px;
    min-height: 44px;
  }

  .navbar__arrow {
    font-size: 0.55rem;
  }

  .navbar__dropdown {
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  }

  .navbar__dropdown-link {
    padding: 10px 12px;
    font-size: 0.65rem;
    width: 100%;
    box-sizing: border-box;
  }

  .footer {
    padding-top: 28px;
  }

  .footer__inner {
    gap: 16px;
    padding-bottom: 16px;
  }

  .footer__nav-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .footer__col-title {
    font-size: 0.6rem;
    margin-bottom: 10px;
  }

  .footer__nav-list {
    gap: 6px;
  }

  .footer__nav-link {
    font-size: 0.8rem;
  }

  .footer__social {
    gap: 8px;
  }

  .footer__social-link {
    font-size: 0.75rem;
  }

  .footer__bottom {
    padding: 8px 16px;
    font-size: 0.6rem;
  }

  .footer__policy-link {
    font-size: 0.65rem;
  }

  .divider-line {
    height: 2px;
  }

  .pillars {
    padding: 20px 16px;
  }

  .pillars__item {
    padding: 12px;
  }

  .pillars__word {
    font-size: clamp(1rem, 2vw, 1.4rem);
  }

  .full-image-strip img {
    max-height: 180px;
  }

  .hero__placeholder {
    height: 180px;
    font-size: 0.7rem;
  }

  .story-grid {
    padding: 0 16px 40px;
    gap: 6px;
  }

  .story-grid__item {
    min-height: 180px;
    padding: 12px;
  }

  .story-grid__text h3 {
    font-size: 1.1rem;
  }

  .story-grid__text p {
    font-size: 0.8rem;
  }

  .story-section {
    min-height: auto;
  }

  .story-section__content {
    padding: 24px 16px;
  }

  .story-section__title {
    font-size: 1.3rem;
  }

  .story-section__text {
    font-size: 0.85rem;
  }

  .team-hero__img {
    max-height: 200px;
  }

  .folder-summary {
    padding: 24px 16px;
    font-size: 1.2rem;
  }

  .team-artwork-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .discover-link {
    font-size: 0.8rem;
    margin-top: 10px;
  }

  /* About page mobile */
  .about-hero {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .about-hero__title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .about-intro {
    padding: 32px 16px;
    margin-bottom: 24px;
  }

  .about-intro__text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .about-intro__main {
    font-size: 0.95rem;
    margin: 20px auto;
  }

  .about-intro__tagline {
    font-size: 1rem;
    margin-top: 16px;
  }

  .about-story {
    padding: 32px 16px;
    margin-bottom: 20px;
  }

  .about-story__title,
  .about-team__title {
    font-size: 1.5rem;
  }

  .about-story__arrow,
  .about-team__arrow {
    font-size: 1.5rem;
    margin-top: 12px;
  }

  .about-team {
    padding: 32px 16px;
  }

/* ══════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL MOBILE  (≤ 360px)
════════════════════════════════════════════ */
@media (max-width: 360px) {
  .intro__heading {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }

  .feature-row__title,
  .split-card__title {
    font-size: 1.1rem;
  }

  .navbar {
    padding: 0;
    width: 100%;
  }

  .navbar__list {
    width: 100%;
    padding: 0;
  }

  .navbar__item {
    flex: 1;
    box-sizing: border-box;
  }

  .navbar__link {
    padding: 8px 2px;
    font-size: 0.6rem;
    min-height: 40px;
  }

  .navbar__dropdown {
    width: 100%;
    box-sizing: border-box;
  }

  .navbar__dropdown-link {
    padding: 8px 10px;
    font-size: 0.55rem;
    width: 100%;
    box-sizing: border-box;
  }

  .brand-logo__name {
    font-size: 0.75rem;
  }

  .section-heading__title {
    font-size: 1.2rem;
  }

  .alt-row__title {
    font-size: 1rem;
  }

  .pillars__word {
    font-size: 1.1rem;
  }

  .page-header__pre,
  .page-header__title {
    font-size: 1rem;
  }

  .bts__heading {
    font-size: 1.1rem;
  }

  .story-grid__text h3 {
    font-size: 1rem;
  }

  .story-section__title {
    font-size: 1.2rem;
  }

  .about-hero__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }

  .about-story__title,
  .about-team__title {
    font-size: 1.3rem;
  }
}

/* Footer Responsive Styles */

/* Tablet & Small Screens (≤ 768px) */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    padding: 32px 20px;
  }

  .footer__quote {
    font-size: 1rem;
    max-width: 100%;
  }

  .footer__nav-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__col-title {
    font-size: 0.65rem;
  }

  .footer__col a,
  .footer__nav-link {
    font-size: 0.8rem;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .footer__brand {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    order: -1;
  }

  .brand-logo--footer {
    width: 100%;
    justify-content: center;
  }

  .brand-logo__img {
    height: 48px !important;
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
  }

  .brand-logo__fallback--footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer__brand img {
    height: 48px;
    margin-bottom: 8px;
  }

  .footer__brand-quote {
    font-size: 0.7rem;
    line-height: 1.3;
    max-width: 100%;
  }

  .footer__right {
    width: 100%;
  }

  .footer__nav-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__col {
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer__col:last-child {
    border-bottom: none;
  }

  .footer__col-title,
  .footer__col h3,
  .footer__col h4 {
    font-size: 0.7rem;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .footer__nav-link,
  .footer__col a {
    font-size: 0.65rem;
    line-height: 1.6;
    display: block;
  }

  .footer__socials {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .footer__social-link {
    width: auto;
    height: auto;
    font-size: 0.65rem;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer__inner {
    gap: 20px;
    padding: 20px 10px;
  }

  .footer__brand {
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
  }

  .brand-logo--footer {
    width: 100%;
    justify-content: center;
  }

  .brand-logo__img {
    height: 40px !important;
    padding: 8px 0 !important;
  }

  .brand-logo__fallback--footer {
    flex-direction: column;
    align-items: center;
  }

  .footer__brand img {
    height: 40px;
    margin-bottom: 6px;
  }

  .footer__brand-quote {
    font-size: 0.65rem;
    line-height: 1.25;
  }

  .footer__nav-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .footer__col-title,
  .footer__col h3,
  .footer__col h4 {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }

  .footer__nav-link,
  .footer__col a {
    font-size: 0.6rem;
    line-height: 1.5;
  }

  .footer__col {
    padding-bottom: 0;
  }

  .footer__socials {
    margin-top: 0;
    padding-top: 0;
  }

  .footer__social-link {
    width: auto;
    height: auto;
    font-size: 0.6rem;
  }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
  .footer__inner {
    gap: 16px;
    padding: 14px 8px;
  }

  .footer__brand {
    margin-bottom: 14px;
    padding-bottom: 0;
    align-items: center;
    justify-content: center;
  }

  .brand-logo--footer {
    width: 100%;
    justify-content: center;
  }

  .brand-logo__img {
    height: 32px !important;
    padding: 6px 0 !important;
  }

  .brand-logo__fallback--footer {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .footer__brand img {
    height: 32px;
    margin-bottom: 4px;
  }

  .footer__brand-quote {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-top: 4px;
  }

  .footer__nav-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .footer__col-title,
  .footer__col h3,
  .footer__col h4 {
    font-size: 0.6rem;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
  }

  .footer__nav-link,
  .footer__col a {
    font-size: 0.55rem;
    line-height: 1.4;
  }

  .footer__col {
    padding-bottom: 0;
  }

  .footer__socials {
    margin-top: 0;
    padding-top: 0;
  }

  .footer__social-link {
    width: auto;
    height: auto;
    font-size: 0.55rem;
  }
}
