:root {
  /* Colors */
  --color-bg: #050505; /* Slightly darker */
  --color-surface: #121212;
  --color-surface-hover: #1e1e1e;
  --color-text: #ffffff;
  --color-text-muted: #a3a3a3;
  --color-primary: #ff6600; /* Strat Orange */
  --color-primary-hover: #e65c00;
  --color-secondary: #ffffff;
  --color-secondary-hover: #e5e5e5;
  --color-border: #262626;
  --color-accent-gradient: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 5rem;
  --spacing-xl: 10rem;

  /* Layout */
  --container-width: 1280px;
  --header-height: 70px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 70%);
  min-height: 100vh;
  scroll-padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  opacity: 0; /* Start hidden */
}

.animate-slide-in {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  opacity: 0;
}

.animate-blur-in {
  animation: blurIn 1s ease-out both;
  opacity: 0;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 0; /* Sharp corners */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-sans);
  border: none;
  font-size: 1rem;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  gap: 8px; /* Space between icon and text */
}

.btn iconify-icon {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

/* Border Beam Animation for Main Button */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: rotate(45deg) translate(100%, 100%);
  transition: transform 0.6s ease;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary); /* Highlight border on hover */
  color: white;
  transform: translateY(-2px);
}

.btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-disabled {
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  cursor: not-allowed;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

/* Navigation */
.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-img {
  height: 28px;
  transition: transform 0.3s ease;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    rgba(255, 102, 0, 0.5)
  );
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8533 100%);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 0; /* Sharp corners */
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 102, 0, 0.4);
  background: linear-gradient(135deg, #ff8533 0%, var(--color-primary) 100%);
  color: white !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0; /* Sharp corners */
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    transform 0.2s ease;
  position: relative;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-toggle.open {
  background-color: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 0; /* Sharp corners */
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

body.nav-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 6rem);
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("/images/workshop-la.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.85) 0%,
    rgba(5, 5, 5, 0.7) 50%,
    rgba(5, 5, 5, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 4.5rem; /* Larger */
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-value-prop {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Abstract Shape (Placeholder) */
.abstract-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* Why Strat */
.why-strat .text-block {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.feature-list {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-weight: 500;
}

.feature-list li::before {
  display: none;
}

.highlight-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 3rem;
  text-align: center;
  line-height: 1.4;
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  background: linear-gradient(
    90deg,
    rgba(255, 102, 0, 0.1) 0%,
    transparent 100%
  );
  padding: 2rem;
  border-radius: 0; /* Sharp corners */
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: 0; /* Sharp corners */
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.problem-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 1.1rem;
  font-weight: 500;
}

.closing-line {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 4rem;
  color: var(--color-text-muted);
}

.closing-line strong {
  color: var(--color-text);
  display: block;
  margin-top: 0.5rem;
}

/* Solutions */
.offering-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0; /* Sharp corners */
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.offering-card.highlight {
  border-color: var(--color-primary);
  background: linear-gradient(
    180deg,
    rgba(255, 102, 0, 0.05) 0%,
    var(--color-surface) 100%
  );
}

.offering-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  background-color: rgba(255, 102, 0, 0.2);
  color: #ff9933;
  padding: 0.4rem 0.8rem;
  border-radius: 0; /* Sharp corners */
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offering-card h3 {
  font-size: 2rem;
  margin: 0;
}

.offering-details p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.offering-details strong {
  color: var(--color-text);
}

.offering-details ul {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.offering-details li {
  list-style-type: none;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
}

.offering-details li::before {
  display: none;
}

.outcome {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 0; /* Sharp corners */
  margin: 2rem 0;
  border-left: 2px solid var(--color-primary);
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.role-card {
  padding: 2rem;
  background-color: var(--color-surface);
  border-radius: 0; /* Sharp corners */
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.role-card:hover {
  background-color: var(--color-surface-hover);
}

.role-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.role-card p {
  color: var(--color-text-muted);
}

/* Method Steps */
.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.step {
  background-color: var(--color-surface);
  padding: 2.5rem;
  border-radius: 0; /* Sharp corners */
  position: relative;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.step-number {
  font-size: 5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 0;
}

.step h3,
.step p {
  position: relative;
  z-index: 1;
}

/* Proof */
.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.trust-list li {
  background-color: var(--color-surface);
  padding: 1.5rem;
  border-radius: 0; /* Sharp corners */
  text-align: center;
  border: 1px solid var(--color-border);
  font-weight: 500;
}

/* CTA Grid */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.cta-card {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 0; /* Sharp corners */
  text-align: center;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card h3 iconify-icon {
  flex-shrink: 0;
}

.cta-card p {
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

.cta-details {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 0; /* Sharp corners */
  margin: 1.5rem 0;
  border-left: 2px solid var(--color-primary);
}

.cta-details p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cta-details p:last-child {
  margin-bottom: 0;
}

.cta-details strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 6rem 0;
  border-top: 1px solid var(--color-border);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --spacing-xl: 6rem;
    --spacing-lg: 3.5rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero {
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: 3.3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .offering-card,
  .cta-card,
  .role-card,
  .problem-card,
  .step {
    padding: 2.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 2.5rem;
  }

  .navbar .container {
    gap: 1rem;
    padding: 0 var(--spacing-sm);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem var(--spacing-md) 2rem;
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}


/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.modal-content {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  animation: slideUp 0.3s ease forwards;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-text);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

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

.waitlist-form .btn {
  width: 100%;
}

.privacy-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* Form States */
.form-state {
  display: none;
}

.form-state.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.success-content,
.error-content {
  text-align: center;
  padding: 1rem 0;
}

.success-icon,
.error-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-icon {
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.error-icon {
  background-color: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  border: 2px solid #ff3b30;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee */

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.marquee-content {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-content img {
  width: 112px;
  height: 54px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.marquee-content img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem; /* Smaller font for mobile */
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .marquee-content {
    gap: 2rem;
  }

  .marquee-content img {
    width: 80px;
    height: 39px;
    object-fit: contain;
  }
  
  .btn {
    width: 100%; /* Full width buttons on mobile */
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Image Grids */
.image-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.image-grid-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.image-grid-2x2 img,
.image-grid-masonry img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-grid-2x2 img:hover,
.image-grid-masonry img:hover {
  transform: scale(1.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  z-index: 1;
}

/* Workshop Gallery Styling */
.workshop-gallery,
.workshop-showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.workshop-gallery .section-title,
.workshop-showcase .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.workshop-gallery .gallery-grid {
  margin-top: 2rem;
}

.workshop-showcase .image-grid-2x2 img:hover {
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

@media (max-width: 768px) {
  .image-grid-2x2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .workshop-gallery,
  .workshop-showcase {
    padding: 3rem 0;
  }
}


