:root {
  --accent: #c8952a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  background-color: #faf6ee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: #0d2224;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.15;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms ease-in-out;
}
a:hover {
  color: #0d2224;
}

button, [type=button], [type=submit] {
  font-family: inherit;
  cursor: pointer;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

section {
  padding: 6rem 0;
}
@media (min-width: 640px) {
  section {
    padding: 4rem 0;
  }
}

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

.text-justify {
  text-align: justify;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #c8952a;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
  border-radius: 2px;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #0d2224;
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #0d3b3e;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
  border-radius: 2px;
}
.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-secondary:hover {
  background-color: #041314;
}
.btn-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
}
.btn-success:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-success:active {
  transform: translateY(0);
}
.btn-success:hover {
  background-color: #0c8a60;
}
.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  border-radius: 2px;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}
.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 200ms ease-in-out;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.card-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.card-body {
  padding: 1rem 0;
}
.card-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  margin-top: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-primary {
  background-color: #fdf6e8;
  color: #a97a1c;
}
.badge-success {
  background-color: #9ef7d9;
  color: #085b40;
}
.badge-warning {
  background-color: #fdeccf;
  color: #945f06;
}
.badge-danger {
  background-color: white;
  color: #bd1010;
}

.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}
.icon-lg {
  width: 3rem;
  height: 3rem;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}
.icon svg {
  width: 100%;
  height: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 2.25rem;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 2px;
  background: var(--accent);
}
.section-header p {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.flex {
  display: flex;
  gap: 1rem;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}

.bg-light {
  background-color: #f9fafb;
}

.bg-white {
  background-color: #ffffff;
}

.bg-primary {
  background: linear-gradient(135deg, #c8952a 0%, #a97a1c 100%);
  color: #ffffff;
}

.bg-secondary {
  background: linear-gradient(135deg, #0d3b3e 0%, #041314 100%);
  color: #ffffff;
}

.text-muted {
  color: #6b7280;
}

.text-primary {
  color: #c8952a;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-bold {
  font-weight: 700;
}

.fade-in {
  animation: fadeIn 300ms ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 300ms ease-in-out forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 300ms ease-in-out forwards;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

header {
  background: #0d2224;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1020;
  border-bottom: 2px solid var(--accent);
  transition: box-shadow 200ms ease-in-out;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}
header .logo img {
  height: 44px;
  width: auto;
  display: block;
}
header .nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
header .nav-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 11px;
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 150ms ease-in-out;
  position: relative;
}
header .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease-in-out;
}
header .nav-menu a:hover {
  color: #ffffff;
}
header .nav-menu a:hover::after {
  transform: scaleX(1);
}
header .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
header .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}
header .nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header .nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}
@media (max-width: 768px) {
  header .nav-toggle {
    display: flex;
  }
  header .nav-overlay.active {
    display: block;
  }
  header .nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #0d2224;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  }
  header .nav-menu.active {
    right: 0;
  }
  header .nav-menu a {
    width: 100%;
    padding: 14px 4px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  header .nav-menu a::after {
    display: none;
  }
}

.hero {
  background: #0d2224;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 34, 36, 0.55) 0%, rgba(13, 34, 36, 0.94) 100%);
  z-index: 0;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 3rem 1.5rem;
  animation: slideUp 0.8s ease-out both;
}
.hero .hero-content h1 {
  color: #ffffff;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  position: relative;
  padding-bottom: 1.5rem;
}
.hero .hero-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}
.hero .hero-content h2 {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 4rem;
}
.hero .hero-content .hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

main section:nth-child(odd) {
  background-color: #ffffff;
}
main section:nth-child(even) {
  background-color: #faf6ee;
}

.about-section .container {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .about-section .container {
    grid-template-columns: 0.85fr 1fr;
    align-items: start;
  }
}
.about-section .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.about-section .section-header h2::after {
  left: 0;
  transform: none;
}
.about-section > .container > .section-header {
  grid-column: 1;
}
.about-section #acercaDeNosotros {
  font-size: 1.125rem;
  color: #4b5563;
}
.about-section .about-cols {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-section .about-col {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
}
.about-section .about-col .icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 149, 42, 0.1);
  color: var(--accent);
  border-radius: 0.25rem;
}
.about-section .about-col .icon svg {
  width: 22px;
  height: 22px;
}
.about-section .about-col h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.about-section .about-col p {
  color: #4b5563;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.grid-2 .card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 200ms ease-in-out;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
}
.grid-2 .card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.grid-2 .card:hover {
  transform: none;
  box-shadow: none;
}
.grid-2 .card .icon {
  color: var(--accent);
}
.grid-2 .card .title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-style: italic;
}

.services-section .services-grid {
  display: flex;
  flex-direction: column;
}
.services-section .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  text-align: left;
}
.services-section .service-card .service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid #e5e7eb;
  background: #ffffff;
}
.services-section .service-card .service-icon svg {
  width: 26px;
  height: 26px;
}
.services-section .service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.services-section .service-card p {
  color: #4b5563;
  margin-bottom: 0;
  max-width: 60ch;
}
.services-section .service-card:nth-child(even) .service-icon {
  background: rgba(200, 149, 42, 0.06);
}

.portfolio-section .portfolio-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.portfolio-section .portfolio-grid::-webkit-scrollbar {
  height: 6px;
}
.portfolio-section .portfolio-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
}
.portfolio-section .portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: none;
  width: 280px;
  aspect-ratio: 4/5;
  scroll-snap-align: start;
}
.portfolio-section .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.portfolio-section .portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 34, 36, 0) 40%, rgba(13, 34, 36, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.portfolio-section .portfolio-item .overlay a {
  color: #ffffff;
}
.portfolio-section .portfolio-item:hover .overlay {
  opacity: 1;
}
.portfolio-section .portfolio-item:hover img {
  transform: scale(1.04);
}

.contact-section {
  background-color: #0d2224 !important;
  color: rgba(255, 255, 255, 0.85);
}
.contact-section .section-header h2 {
  color: #ffffff;
}
.contact-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}
.contact-section .contact-cards {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-section .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-section .contact-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-section .contact-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-section .contact-card .contact-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.contact-section .contact-card .contact-icon svg {
  width: 36px;
  height: 36px;
  margin: 0 auto;
}
.contact-section .contact-card h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.contact-section .contact-card p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}
.contact-section .contact-card p a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in-out;
  z-index: 1030;
  cursor: pointer;
  border: none;
}
.back-to-top.active, .back-to-top[style*=block] {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #0d2224;
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1030;
}
.social-sidebar .social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #0d2224;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.social-sidebar a:hover {
  transform: translateX(-6px);
  background-color: var(--accent);
}
.social-sidebar a svg {
  width: 20px;
  height: 20px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 30, 0.92);
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox .lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox .lightbox-close,
.lightbox .lightbox-nav {
  position: absolute;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: color 200ms ease-in-out;
}
.lightbox .lightbox-close:hover,
.lightbox .lightbox-nav:hover {
  color: var(--accent);
}
.lightbox .lightbox-close {
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  line-height: 1;
}
.lightbox .lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox .lightbox-nav svg {
  width: 36px;
  height: 36px;
}
.lightbox .lightbox-prev {
  left: 24px;
}
.lightbox .lightbox-next {
  right: 24px;
}

@media (min-width: 640px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .hero .hero-content h1 {
    font-size: 1.875rem;
  }
  .hero .hero-content h2 {
    font-size: 1.125rem;
  }

  .about-section .about-col {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .contact-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero .hero-content h2 {
    font-size: 1.25rem;
  }

  .portfolio-item {
    width: 320px;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

  .contact-cards {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .hero .hero-content h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 320px) {
  .show-xs {
    display: block !important;
  }

  .hide-xs {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .show-sm {
    display: block !important;
  }

  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-md {
    display: block !important;
  }

  .hide-md {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .show-lg {
    display: block !important;
  }

  .hide-lg {
    display: none !important;
  }
}
@media print {
  body {
    background: #ffffff;
  }

  header, .back-to-top, .social-sidebar {
    display: none;
  }

  a {
    text-decoration: underline;
  }
}
