:root {
  --accent: #c2410c;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #16110f;
  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: color-mix(in srgb, var(--accent) 75%, black);
}

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: #c2410c;
  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: 0.25rem;
}
.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: color-mix(in srgb, var(--accent) 82%, black);
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #0f172a;
  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: 0.25rem;
}
.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: #020204;
}
.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;
  border-radius: 0.25rem;
}
.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: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background-color: var(--accent);
  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 #e7ddd4;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.card-body {
  padding: 1rem 0;
}
.card-footer {
  border-top: 1px solid #e7ddd4;
  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: color-mix(in srgb, var(--accent) 14%, white);
  color: color-mix(in srgb, var(--accent) 80%, black);
}
.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;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--accent);
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  color: #564943;
  max-width: 600px;
  margin: 0 auto;
}
.section-header.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.section-header.align-left p {
  margin-left: 0;
}

.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: #faf7f5;
}

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

.bg-primary {
  background-color: var(--accent);
  color: #ffffff;
}

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

.text-muted {
  color: #78685e;
}

.text-primary {
  color: var(--accent);
}

.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);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 17, 15, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.375rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  transition: background 200ms ease-in-out, color 200ms ease-in-out;
}
.lightbox-close svg, .lightbox-nav svg {
  width: 22px;
  height: 22px;
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--accent);
}
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}
.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 640px) {
  .lightbox-close {
    top: 2rem;
    right: 2rem;
  }
  .lightbox-prev {
    left: 2rem;
  }
  .lightbox-next {
    right: 2rem;
  }
}

header {
  background: #16110f;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1020;
  border-bottom: 3px solid var(--accent);
}
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: 2rem;
  align-items: center;
}
header .nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s ease;
}
header .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
header .nav-menu a:hover {
  color: #ffffff;
}
header .nav-menu a:hover::after {
  width: 100%;
}
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;
  border-radius: 2px;
  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.5);
  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: #16110f;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 1.5rem;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
  }
  header .nav-menu.active {
    right: 0;
  }
  header .nav-menu a {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
  }
}

.hero {
  position: relative;
  background: #16110f;
}
.hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  .hero .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem;
  color: #ffffff;
  order: 2;
}
@media (min-width: 1024px) {
  .hero .hero-content {
    order: 1;
    padding: 6rem 4rem;
  }
}
.hero .hero-content .hero-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.hero .hero-content h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero .hero-content h2 {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 3rem;
}
.hero .hero-content .hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero .hero-content .hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.hero .hero-content .hero-actions .btn-outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #16110f;
}
.hero .hero-media {
  position: relative;
  order: 1;
  min-height: 45vh;
  background-color: #241d1a;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease;
}
@media (min-width: 1024px) {
  .hero .hero-media {
    order: 2;
    min-height: auto;
  }
}
.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 45%);
}

main section:where(:nth-of-type(odd)) {
  background-color: #ffffff;
}
main section:where(:nth-of-type(even)) {
  background-color: #faf7f5;
}

.about-section .principles-list {
  border-top: 1px solid #e7ddd4;
}
.about-section .principle-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid #e7ddd4;
  align-items: start;
}
@media (min-width: 768px) {
  .about-section .principle-row {
    grid-template-columns: 120px 1fr;
  }
}
.about-section .principle-index {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.55;
}
.about-section .principle-body h3 {
  margin-bottom: 0.5rem;
}
.about-section .principle-body p {
  color: #564943;
  margin-bottom: 0;
}

.mv-section {
  padding: 0;
}
.mv-section .mv-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mv-section .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.mv-section .mv-panel {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .mv-section .mv-panel {
    padding: 6rem 4rem;
  }
}
.mv-section .mv-panel .mv-label {
  display: block;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.mv-section .mv-panel p {
  margin-bottom: 0;
  max-width: 46ch;
}
.mv-section .mv-panel-accent {
  background: var(--accent);
  color: #ffffff;
}
.mv-section .mv-panel-accent .mv-label {
  color: #ffffff;
}
.mv-section .mv-panel-accent p {
  color: rgba(255, 255, 255, 0.9);
}
.mv-section .mv-panel-dark {
  background: #16110f;
  color: #ffffff;
}
.mv-section .mv-panel-dark .mv-label {
  color: #ffffff;
}
.mv-section .mv-panel-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.services-section .services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section .service-card {
  background: #ffffff;
  border: 1px solid #e7ddd4;
  border-radius: 0.5rem;
  padding: 3rem;
  transition: all 200ms ease-in-out;
}
.services-section .service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .services-section .service-card--wide {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .services-section .service-card--wide {
    grid-column: span 1;
  }
}
.services-section .service-card .service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 0.375rem;
  color: var(--accent);
}
.services-section .service-card .service-icon svg {
  width: 28px;
  height: 28px;
}
.services-section .service-card h4 {
  margin-bottom: 1rem;
}
.services-section .service-card p {
  color: #564943;
  margin-bottom: 0;
}

.portfolio-section .portfolio-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.portfolio-section .portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-section .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.portfolio-section .portfolio-item .portfolio-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: #ffffff;
  font-size: 1.125rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.portfolio-section .portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent) 75%, black 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.portfolio-section .portfolio-item .overlay:hover {
  opacity: 1;
}
.portfolio-section .portfolio-item .overlay:hover img {
  transform: scale(1.05);
}
.portfolio-section .portfolio-item .overlay a {
  color: #ffffff;
  font-size: 1.5rem;
}

.contact-section {
  background: #16110f;
  color: #ffffff;
}
.contact-section .section-header .eyebrow {
  color: var(--accent);
  border-color: var(--accent);
}
.contact-section .section-header h2 {
  color: #ffffff;
}
.contact-section .contact-cards {
  display: grid;
  gap: 2rem;
}
@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 {
  padding: 3rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  text-align: center;
  transition: border-color 200ms ease-in-out;
}
.contact-section .contact-card:hover {
  border-color: var(--accent);
}
.contact-section .contact-card .contact-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.contact-section .contact-card .contact-icon svg {
  width: 40px;
  height: 40px;
  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.7);
  margin-bottom: 0;
}
.contact-section .contact-card p a {
  color: #ffffff;
  font-weight: 600;
}
.contact-section .contact-card p a:hover {
  color: var(--accent);
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  border-radius: 0.375rem;
  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 {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}

.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: 2px;
}
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #16110f;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.social-sidebar a:hover {
  transform: translateX(-8px);
  background-color: var(--accent);
}
.social-sidebar a svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@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;
  }
}
@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;
  }
}
@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, footer, .back-to-top, .social-sidebar {
    display: none;
  }

  a {
    text-decoration: underline;
  }
}
