/* ============================================
   GOOD COOK — WEBSITE STYLES
   Colors: Tan #C8B99A | Charcoal #2B2B2B | Cream #F5F0E0 | Black #1A1A1A | White #FFF
   Fonts: Bebas Neue (headings) | Inter (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tan: #C8B99A;
  --charcoal: #2B2B2B;
  --cream: #F5F0E0;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --tan-dim: #a89a7a;
  --charcoal-light: #3a3a3a;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--charcoal);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--cream);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--tan);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--tan);
}

.subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--cream);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--tan);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--tan);
  color: var(--black);
  border-color: var(--tan);
}

.btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--tan);
  border-color: var(--tan);
}

.btn-outline:hover {
  background: var(--tan);
  color: var(--black);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tan);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--tan);
  color: var(--black) !important;
  padding: 8px 20px;
  border: 2px solid var(--tan);
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.4) 0%,
    rgba(26, 26, 26, 0.2) 40%,
    rgba(26, 26, 26, 0.6) 80%,
    rgba(43, 43, 43, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-wordmark {
  max-width: 600px;
  width: 80vw;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 40px;
  opacity: 0.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--tan);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--tan);
  border-radius: 2px;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black);
}

/* ========== ABOUT ========== */
.about-hero {
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: 2px;
}

.about-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 20%;
}

.about-bio {
  max-width: 720px;
  margin-bottom: 64px;
}

.about-bio.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-bio.centered .read-more-btn {
  margin-left: auto;
  margin-right: auto;
}

.bio-short {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 16px;
}

.bio-long {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.bio-long.expanded {
  max-height: 400px;
}

.bio-long p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 224, 0.8);
  margin-bottom: 16px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--tan);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 1px solid var(--tan);
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* Members */
.members-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 36px;
  color: var(--cream);
}

.collaborators-heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  text-transform: uppercase;
  margin-top: 64px;
  margin-bottom: 28px;
  color: var(--tan-dim);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.member-card {
  background: var(--black);
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-4px);
}

.member-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 16px;
}

.member-name {
  font-size: 1.3rem;
  color: var(--tan);
  margin-bottom: 4px;
}

.member-role {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 240, 224, 0.6);
}

.member-bio {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 224, 0.55);
  margin-top: 8px;
}

/* Collaborators */
.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
  gap: 20px;
}

.collaborator-card {
  background: var(--charcoal-light);
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.collaborator-card:hover {
  transform: translateY(-4px);
}

.collaborator-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.collaborator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collaborator-card:hover .collaborator-photo img {
  transform: scale(1.05);
}

.collaborator-info {
  padding: 14px;
}

.collaborator-name {
  font-size: 1.1rem;
  color: var(--tan);
  margin-bottom: 2px;
}

.collaborator-role {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 240, 224, 0.5);
}

.collaborator-bio {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 224, 0.45);
  margin-top: 8px;
}

/* ========== MUSIC ========== */
.music-content {
  display: grid;
  gap: 48px;
}

.video-featured {
  position: relative;
}

.video-placeholder {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.6);
}

.video-overlay-text p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--tan);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--black);
  cursor: pointer;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-embed .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.video-embed:hover .video-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(245, 240, 224, 0.5);
  font-weight: 300;
}

.music-note {
  color: rgba(245, 240, 224, 0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}

.music-note a {
  border-bottom: 1px solid var(--tan);
}

.streaming-links {
  max-width: 600px;
}

/* ========== SHOWS ========== */
.shows-content {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

.show-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.no-shows-message {
  padding: 32px;
  border: 1px dashed rgba(200, 185, 154, 0.3);
  border-radius: 2px;
  text-align: center;
  color: rgba(245, 240, 224, 0.6);
}

.no-shows-message a {
  border-bottom: 1px solid var(--tan);
}

.show-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.show-card:hover {
  transform: translateX(4px);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.show-month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--tan);
}

.show-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--cream);
  line-height: 1;
}

.show-details {
  flex: 1;
}

.show-venue {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.show-location {
  font-size: 0.9rem;
  color: rgba(245, 240, 224, 0.6);
}

.show-time {
  font-size: 0.85rem;
  color: rgba(245, 240, 224, 0.5);
}

.past-show-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.past-show {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 185, 154, 0.1);
  color: rgba(245, 240, 224, 0.5);
  font-size: 0.95rem;
}

.past-show-date {
  min-width: 120px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--tan-dim);
  white-space: nowrap;
}

.shows-hero {
  border-radius: 2px;
  overflow: hidden;
}

.shows-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(26, 26, 26, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-tall img {
  aspect-ratio: 3 / 4;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-wide img {
  aspect-ratio: 16 / 9;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--tan);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  z-index: 2001;
  transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--tan);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

/* ========== MERCH STORE ========== */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.merch-item {
  background: var(--black);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.merch-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.merch-item:hover {
  transform: translateY(-4px);
}

.merch-hat-preview {
  background: var(--charcoal);
  padding: 20px;
}

.merch-hat-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.merch-product-img {
  background: var(--charcoal);
}

.merch-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--charcoal-light);
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.merch-item:hover .merch-image img {
  transform: scale(1.05);
}

.merch-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(200, 185, 154, 0.3);
}

.merch-placeholder-img span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.merch-info {
  padding: 16px;
}

.merch-name {
  font-size: 1.2rem;
  color: var(--tan);
  margin-bottom: 4px;
}

.merch-price {
  font-size: 0.9rem;
  color: rgba(245, 240, 224, 0.5);
  font-weight: 300;
}

.merch-btn {
  display: inline-block;
  margin-top: 12px;
}

.merch-cta {
  text-align: center;
  padding: 32px;
  border: 1px dashed rgba(200, 185, 154, 0.3);
  border-radius: 2px;
}

.merch-cta p {
  color: rgba(245, 240, 224, 0.6);
  font-size: 1rem;
}

.merch-cta a {
  border-bottom: 1px solid var(--tan);
}

/* ========== SIGNUP SECTION ========== */
.signup-section {
  background: var(--tan);
  color: var(--black);
}

.signup-section .section-title {
  color: var(--black);
}

.signup-section .section-title::after {
  background: var(--black);
}

.signup-content {
  max-width: 600px;
}

.signup-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--charcoal);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.signup-form input {
  flex: 1;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 2px;
  color: var(--black);
  transition: border-color 0.3s ease;
}

.signup-form input::placeholder {
  color: #999;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--black);
}

.sms-consent {
  align-items: flex-start;
}

.sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.7);
}

.sms-consent-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--black);
  cursor: pointer;
  padding: 0;
}

.sms-consent-text {
  flex: 1;
}

.signup-section .btn-primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
  margin-top: 4px;
}

.signup-section .btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: rgba(43, 43, 43, 0.6);
  text-align: center;
  margin-top: 4px;
}

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--charcoal);
  border: 1px solid rgba(200, 185, 154, 0.2);
  border-radius: 2px;
  color: var(--cream);
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 224, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tan);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8B99A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-social h3,
.contact-tip h3 {
  font-size: 1.3rem;
  color: var(--tan);
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--cream);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--tan);
}

.contact-tip p {
  color: rgba(245, 240, 224, 0.7);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(200, 185, 154, 0.1);
  background: var(--black);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(245, 240, 224, 0.5);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--tan);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 224, 0.3);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-wide img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 24px;
    transition: right 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 14px 32px;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .collaborators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .form-row {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .members-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .logo-img {
    height: 40px;
  }

  .hero-wordmark {
    max-width: 300px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 12px;
  }
}
