


strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Teko', 'Roboto Condensed', 'Oswald', sans-serif;
  background-color: #1a1a1a;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}


h1, h2, h3, h4 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #ff6b35;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}


:root {
  --charcoal-dark: #0d0d0d;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --rust-orange: #c2410c;
  --rust-bright: #ea580c;
  --rust-light: #f97316;
  --metal-gray: #4b5563;
  --steel: #71717a;
  --off-white: #e8e8e8;
  --pure-white: #ffffff;
  --accent-green: #22c55e;
}


.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13,13,13,0.85) 0%, rgba(26,26,26,0.7) 50%, rgba(13,13,13,0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--steel);
  max-width: 600px;
}


.hero-section-inner {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
}

.hero-section-inner .hero-overlay {
  background: linear-gradient(180deg, rgba(13,13,13,0.9) 0%, rgba(26,26,26,0.8) 100%);
}

.hero-section-inner .hero-title {
  font-size: 3.5rem;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--rust-orange) 0%, var(--rust-bright) 100%);
  color: var(--pure-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
  box-shadow: 0 4px 15px rgba(194, 65, 12, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rust-bright) 0%, var(--rust-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 65, 12, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--rust-orange);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--rust-orange);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
}

.btn-secondary:hover {
  background: var(--rust-orange);
  color: var(--pure-white);
}


.glass-card {
  background: rgba(45, 45, 45, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--rust-orange);
  box-shadow: 0 10px 30px rgba(194, 65, 12, 0.2);
}

.service-card {
  background: var(--charcoal-light);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--rust-orange);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--rust-orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--rust-orange);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.service-price {
  font-size: 2rem;
  color: var(--rust-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--steel);
  margin-bottom: 1.5rem;
}


.section-dark {
  background: var(--charcoal);
  padding: 5rem 0;
}

.section-darker {
  background: var(--charcoal-dark);
  padding: 5rem 0;
}

.section-accent {
  background: linear-gradient(135deg, var(--rust-orange) 0%, var(--rust-bright) 100%);
  padding: 5rem 0;
}

.section-light {
  background: var(--charcoal-light);
  padding: 5rem 0;
}

.section-pattern {
  background-color: var(--charcoal);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 107, 53, 0.03) 10px,
    rgba(255, 107, 53, 0.03) 20px
  );
  padding: 5rem 0;
}


.main-header {
  background: var(--charcoal-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--rust-orange);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  font-size: 2.5rem;
  color: var(--rust-orange);
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 0.85rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--off-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rust-orange);
  background: rgba(194, 65, 12, 0.1);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: var(--pure-white);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}


.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(45, 45, 45, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(45, 45, 45, 0.8);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--rust-orange);
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-content p {
  color: var(--steel);
  font-size: 0.95rem;
  margin: 0;
}


.testimonial-card {
  background: var(--charcoal-light);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--rust-orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--off-white);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rust-orange);
}

.author-info h5 {
  color: var(--pure-white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--steel);
  font-size: 0.85rem;
  margin: 0;
}

.star-rating {
  color: var(--rust-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}


.team-card {
  background: var(--charcoal-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--rust-orange);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--steel);
  font-size: 0.9rem;
}


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

.form-label {
  display: block;
  color: var(--pure-white);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--charcoal-light);
  border: 2px solid transparent;
  border-radius: 6px;
  color: var(--pure-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--rust-orange);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--steel);
}

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


.main-footer {
  background: var(--charcoal-dark);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--rust-orange);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--steel);
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--rust-orange);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--steel);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--rust-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--steel);
}

.footer-contact-icon {
  font-size: 1.25rem;
  color: var(--rust-orange);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--steel);
  font-size: 0.9rem;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--charcoal-light);
  border: 1px solid var(--rust-orange);
  border-radius: 12px;
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.cookie-title {
  color: var(--pure-white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-text {
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--rust-orange) 0%, var(--rust-bright) 100%);
  color: var(--pure-white);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, var(--rust-bright) 0%, var(--rust-light) 100%);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--steel);
}

.cookie-btn-decline:hover {
  border-color: var(--pure-white);
  background: rgba(255, 255, 255, 0.1);
}


@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.is-active {
    transform: translateY(0);
  }

  .navbar-brand, .navbar-tabs {
    justify-content: space-between;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
  }

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

  .hero-section-inner .hero-title {
    font-size: 2.5rem;
  }

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

  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

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

@media screen and (min-width: 1025px) {
  .hero-title {
    font-size: 4.5rem;
  }
}


.text-rust {
  color: var(--rust-orange);
}

.text-white {
  color: var(--pure-white);
}

.text-gray {
  color: var(--steel);
}

.bg-dark {
  background-color: var(--charcoal-dark);
}

.bg-charcoal {
  background-color: var(--charcoal);
}

.bg-charcoal-light {
  background-color: var(--charcoal-light);
}

.has-text-centered {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }


.section-spacing {
  padding: 5rem 0;
}

@media screen and (max-width: 768px) {
  .section-spacing {
    padding: 3rem 0;
  }
}


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

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

.img-rounded {
  border-radius: 8px;
}


.faq-item {
  background: var(--charcoal-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--rust-orange);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--rust-orange);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--rust-orange);
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--steel);
  line-height: 1.7;
}

.faq-item.is-active .faq-answer {
  max-height: 500px;
}


.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal-light);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0) 100%);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  color: var(--pure-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-category {
  color: var(--rust-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.contact-info-card {
  background: var(--charcoal-light);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-info-card:hover {
  border-color: var(--rust-orange);
  transform: translateY(-5px);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--rust-orange) 0%, var(--rust-bright) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  font-size: 1.75rem;
  color: var(--pure-white);
}

.contact-details h4 {
  color: var(--pure-white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--steel);
  font-size: 0.95rem;
  margin: 0;
}

.contact-details a {
  color: var(--rust-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--rust-light);
}


.blog-article {
  background: var(--charcoal-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--steel);
}

.blog-category {
  color: var(--rust-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--steel);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}


.pricing-card {
  background: var(--charcoal-light);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--rust-orange);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust-orange);
  color: var(--pure-white);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.pricing-title {
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  color: var(--rust-orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--steel);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
}


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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}


.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--charcoal-light);
  border-top-color: var(--rust-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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


.is-hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .is-hidden-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .is-hidden-desktop {
    display: none !important;
  }
}


.navbar {
  background: transparent;
  min-height: auto;
  box-shadow: none;
}

.navbar-item {
  color: var(--off-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-item:hover {
  background: rgba(194, 65, 12, 0.1);
  color: var(--rust-orange);
}

.hero {
  background: transparent;
}

.button.is-primary {
  background: linear-gradient(135deg, var(--rust-orange) 0%, var(--rust-bright) 100%);
  color: var(--pure-white);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--rust-bright) 0%, var(--rust-light) 100%);
}

.card {
  background: var(--charcoal-light);
  border-radius: 8px;
  box-shadow: none;
}

.content h1, .content h2, .content h3, .content h4 {
  color: var(--pure-white);
}

.content p {
  color: var(--steel);
}

.tag.is-primary {
  background: var(--rust-orange);
  color: var(--pure-white);
}

