/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cult-black: #09090b;
  --cult-red: #dc2626;
  --cult-gray: #27272a;
  --cult-light: #f4f4f5;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cult-black);
  color: var(--cult-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cult-black);
}

::-webkit-scrollbar-thumb {
  background: var(--cult-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cult-red);
}

/* Typography */
.font-display {
  font-family: 'Oswald', sans-serif;
}

.text-cult-red {
  color: var(--cult-red);
}

.text-gray-500 {
  color: #71717a;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  transition: transform 0.3s;
}

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

.logo-icon-wrapper {
  position: relative;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--cult-red);
  transition: transform 0.3s;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: var(--cult-red);
  filter: blur(12px);
  opacity: 0.2;
  transition: opacity 0.3s;
}

.logo:hover .logo-glow {
  opacity: 0.4;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: white;
}

.logo-red {
  color: var(--cult-red);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--cult-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cult-red);
  transition: width 0.3s;
}

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

.nav-button {
  background: white;
  color: var(--cult-black);
  padding: 0.5rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nav-button:hover {
  background: var(--cult-red);
  color: white;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.menu-icon,
.close-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cult-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s, opacity 0.3s;
  opacity: 0;
}

.mobile-menu.open {
  display: block;
  max-height: 100vh;
  opacity: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  gap: 2rem;
  padding-bottom: 5rem;
}

.mobile-nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 1.875rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--cult-red);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cult-black);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--cult-black), rgba(9, 9, 11, 0.5), transparent);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
  color: var(--cult-red);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.05em;
  color: white;
  margin-bottom: 1.5rem;
  mix-blend-mode: screen;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 8rem;
  }
}

.hero-break {
  display: block;
}

@media (min-width: 768px) {
  .hero-break {
    display: none;
  }
}

.hero-title-gradient {
  background: linear-gradient(to right, white, #9ca3af, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-button-primary,
.hero-button-secondary {
  padding: 1rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-button-primary,
  .hero-button-secondary {
    width: auto;
  }
}

.hero-button-primary {
  background: var(--cult-red);
  color: white;
}

.hero-button-primary:hover {
  background: #b91c1c;
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.hero-button-secondary:hover {
  border-color: var(--cult-red);
  color: var(--cult-red);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--cult-red), transparent);
  opacity: 0.5;
}

/* Section Styles */
.section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 3rem;
  }
}

.section-content {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  color: var(--cult-red);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title-large {
  font-size: 2.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-title-large {
    font-size: 3.75rem;
  }
}

.section-text {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.section-text-light {
  color: #71717a;
  margin-bottom: 2rem;
}

/* About Section */
.section-about {
  background: var(--zinc-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  border-left: 1px solid var(--cult-red);
  padding-left: 1rem;
}

.stat-icon {
  color: white;
  margin-bottom: 0.5rem;
  width: 24px;
  height: 24px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #71717a;
  letter-spacing: 0.05em;
}

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(220, 38, 38, 0.2);
  filter: blur(32px);
  border-radius: 9999px;
  opacity: 0.2;
}

.about-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image:hover {
  filter: grayscale(0);
}

.about-image-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--cult-black);
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.about-image-badge span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* Services Section */
.section-services {
  background: var(--cult-black);
}

.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
  }
}

.services-description {
  color: #9ca3af;
  max-width: 28rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .services-description {
    margin-top: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.service-card {
  position: relative;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.3s;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  background: var(--zinc-900);
}

.service-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--cult-red);
}

.service-card:hover .service-arrow {
  opacity: 1;
}

.service-arrow svg {
  width: 20px;
  height: 20px;
}

.service-icon-wrapper {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--zinc-800);
  color: #9ca3af;
  transition: all 0.3s;
}

.service-card:hover .service-icon-wrapper {
  background: var(--cult-red);
  color: white;
}

.service-icon {
  width: 24px;
  height: 24px;
}

.service-title {
  font-size: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--cult-red);
}

.service-description {
  color: #9ca3af;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.service-price {
  font-size: 0.875rem;
  font-family: monospace;
  color: #71717a;
}

.service-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
}

.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.6);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(220, 38, 38, 0.05), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

/* Gallery Section */
.section-gallery {
  background: var(--cult-black);
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-icon {
  color: var(--cult-red);
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}

.gallery-title {
  font-size: 2.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .gallery-title {
    font-size: 3.75rem;
  }
}

.gallery-title-gradient {
  background: linear-gradient(to bottom right, var(--cult-red), #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-subtitle {
  color: #9ca3af;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

@media (min-width: 768px) {
  .gallery-item-wide {
    grid-column: span 2;
  }
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s, filter 0.7s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  filter: grayscale(0);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  color: var(--cult-red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.gallery-item-title {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* AI Chat Section */
.section-ai {
  background: var(--zinc-900);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.ai-badge-icon {
  color: var(--cult-red);
  width: 1rem;
  height: 1rem;
}

.ai-badge span {
  color: var(--cult-red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ai-title {
  font-size: 1.875rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .ai-title {
    font-size: 3rem;
  }
}

.ai-description {
  color: #9ca3af;
}

.ai-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  backdrop-filter: blur(4px);
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.ai-screen-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
              linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  opacity: 0.2;
  z-index: 20;
  pointer-events: none;
}

.ai-content {
  padding: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .ai-content {
    padding: 2rem;
  }
}

.ai-form {
  position: relative;
}

.ai-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #71717a;
  margin-bottom: 0.5rem;
}

.ai-input-wrapper {
  position: relative;
}

.ai-textarea {
  width: 100%;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  color: white;
  font-family: 'Inter', sans-serif;
  min-height: 120px;
  resize: vertical;
  transition: all 0.3s;
}

.ai-textarea:focus {
  outline: none;
  border-color: var(--cult-red);
  box-shadow: 0 0 0 1px var(--cult-red);
}

.ai-textarea::placeholder {
  color: #71717a;
}

.ai-submit-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--cult-red);
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-submit-button:hover:not(:disabled) {
  background: #b91c1c;
}

.ai-submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ai-submit-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ai-loading-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ai-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #ef4444;
  font-size: 0.75rem;
}

.ai-error svg {
  width: 0.75rem;
  height: 0.75rem;
}

.ai-response {
  background: rgba(24, 24, 27, 0.5);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--cult-red);
}

.ai-response-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ai-response-icon {
  background: rgba(220, 38, 38, 0.2);
  padding: 0.5rem;
  border-radius: 9999px;
}

.ai-response-icon svg {
  color: var(--cult-red);
  width: 1.5rem;
  height: 1.5rem;
}

.ai-response-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.ai-response-text {
  font-family: monospace;
  color: #d1d5db;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.75;
}

.ai-response-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ai-reset-button {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.ai-reset-button:hover {
  color: white;
}

.ai-book-button {
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: auto;
  cursor: pointer;
}

.ai-book-button:hover {
  background: var(--cult-red);
  color: white;
}

/* Contact Section */
.section-contact {
  background: var(--zinc-950);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-title {
  font-size: 3rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--zinc-900);
  padding: 0.75rem;
  border-radius: 2px;
  color: var(--cult-red);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-title {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item-text {
  color: #9ca3af;
}

.contact-item-note {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 0.25rem;
}

.contact-hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.contact-form-wrapper {
  background: var(--zinc-900);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-title {
  font-size: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #71717a;
}

.contact-form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  color: white;
  transition: border-color 0.3s;
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--cult-red);
}

.contact-form-textarea {
  height: 8rem;
  resize: vertical;
}

.contact-form-button {
  width: 100%;
  background: var(--cult-red);
  color: white;
  padding: 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form-button:hover {
  background: white;
  color: var(--cult-black);
}

/* Footer */
.footer {
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
  }
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: white;
}

.footer-copyright {
  color: #71717a;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link {
  color: #71717a;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--cult-red);
  transform: translateY(-4px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
}

.footer-link {
  color: #71717a;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

/* Selection */
::selection {
  background: var(--cult-red);
  color: white;
}


