@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Epilogue";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Epilogue-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Epilogue";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Epilogue/Epilogue-Italic-VariableFont_wght.ttf") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.woff2") format("woff2");
}
:root {
  --text-color: #181818;
  --text-color-on-dark: #e6e6e6;
  --background-color: #dfdfdf;
  --background-color-card-and-elements: #da5a3b;
  --background-color-secondary-section: #4d4946;
  --gradient-primary-start: #ddb11f;
  --gradient-primary-end: #da5a3b;
  --gradient-primary-signature: linear-gradient(135deg, #ddb11f 0%, #da5a3b 75%);
  --color-outline-variant: rgba(24, 24, 24, 0.15);
  --color-shadow: rgba(24, 24, 24, 0.06);
}

:root {
  --font-headline: Manrope, sans-serif;
  --font-text: Epilogue, sans-serif;
  --font-utility: Inter, sans-serif;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #da5a3b;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.15s ease, background-color 0.2s ease;
  transform: translate(-50%, -50%);
}
#custom-cursor.active {
  background-color: #da5a3b;
  transform: translate(-50%, -50%) scale(1.2);
}
#custom-cursor.active .cursor-label {
  opacity: 1;
  transform: scale(1);
}
#custom-cursor .cursor-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #da5a3b;
  color: #e6e6e6;
  padding: 4px 10px;
  border-radius: 4px 10px 10px 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.project-item, .btn-primary, header a, html, body {
  cursor: none !important;
}

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

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: #dfdfdf;
  color: #181818;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-size: 2.75rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}
h1 {
  font-weight: 900;
  line-height: 1.1;
  color: #181818;
  letter-spacing: 0rem;
  word-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3.5rem;
  }
}
h2 {
  font-weight: 900;
  line-height: 1.1;
  color: #181818;
  letter-spacing: 0rem;
  word-wrap: break-word;
}

h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}
h3 {
  font-weight: 700;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
}

h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
}

h5 {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
}

h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #181818;
  letter-spacing: 0rem;
}

p {
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
}

a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #181818;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0.25rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.75rem - 2px) 2.5rem;
  background: transparent;
  color: #da5a3b;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: 2px solid #da5a3b;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(200px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), #da5a3b, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #da5a3b;
  background-color: rgba(218, 90, 59, 0.05);
  box-shadow: 0 5px 20px rgba(218, 90, 59, 0.2);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
  opacity: 1;
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  font-family: "Epilogue", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
  font-weight: 700;
  color: #da5a3b;
  text-decoration: none;
  border-bottom: 2px solid #da5a3b;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.btn-editorial:hover {
  color: #da5a3b;
  opacity: 0.8;
}

.project-item {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
}

.card-portfolio {
  background-color: transparent;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: none;
}
.card-portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(400px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), #da5a3b, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card-portfolio {
  transition: box-shadow 0.3s ease;
}
.card-portfolio__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 0;
  filter: grayscale(0%);
  transition: filter 0.4s ease;
  aspect-ratio: 6/4 !important;
}
.card-portfolio__body {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 0;
  background-color: transparent;
  opacity: 1;
  z-index: 1;
}
.card-portfolio__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #181818;
  letter-spacing: 0rem;
  margin-bottom: 0.5rem;
  color: #181818;
}
.card-portfolio__description {
  font-family: "Epilogue", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #181818;
  text-align: left;
  margin-bottom: 1.4rem;
  color: #181818;
}
.card-portfolio .chip {
  background-color: #da5a3b;
  color: #181818;
  align-self: flex-start;
}

.project-item:hover .card-portfolio {
  box-shadow: 0px 20px 40px rgba(24, 24, 24, 0.06);
}
.project-item:hover .card-portfolio::before {
  opacity: 1;
}
.project-item:hover .card-portfolio__image {
  filter: grayscale(0%);
}

.list-editorial {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-editorial li {
  margin-bottom: 1.4rem;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
  padding-inline: 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
.list-editorial li:hover {
  background-color: rgba(218, 90, 59, 0.5);
}

.input-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.input-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(24, 24, 24, 0.15);
  border-radius: 0;
  padding: 0.75rem 0;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #181818;
  text-align: left;
  color: #181818;
  outline: none;
  transition: border-color 0.25s ease, border-width 0.25s ease;
}
.input-field::-moz-placeholder {
  color: #181818;
  opacity: 0.4;
}
.input-field::placeholder {
  color: #181818;
  opacity: 0.4;
}
.input-field:focus {
  border-bottom: 2px solid #181818;
}

.chip {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #da5a3b;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  color: #e6e6e6;
  cursor: default;
  transition: background-color 0.2s ease;
}
.chip:hover {
  background-color: #da5a3b;
}
.chip--active {
  background-color: #181818;
  color: #e6e6e6;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(223, 223, 223, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
}
.nav-bar__logo {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #181818;
  text-decoration: none;
}
.nav-bar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-bar__links a {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  font-weight: 500;
  color: #181818;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-bar__links a:hover, .nav-bar__links a.is-active {
  color: #181818;
}

.surface-base {
  background-color: #dfdfdf;
}

.surface-low {
  background-color: #4d4946;
}

.surface-card {
  background-color: #da5a3b;
}

.section-break {
  padding-block: 7rem;
}
.section-break--large {
  padding-block: 8.5rem;
}

.layout-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .layout-editorial {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}
.layout-editorial__body {
  padding-top: 0;
}
@media (min-width: 768px) {
  .layout-editorial__body {
    padding-top: 2rem;
  }
}/*# sourceMappingURL=design-system.css.map */